Noah Farr

Results 6 issues of Noah Farr

## Problem Description I would like to implement the CrossQ algorithm as proposed in https://openreview.net/pdf?id=PczQtTsTIX. I already did some testing and it looks like its not that much effort to...

## Description Implementing #463 ## Types of changes - [ ] Bug fix - [ ] New feature - [x] New algorithm - [ ] Documentation ## Checklist: - [x]...

## Description TD3 and SAC currently doesnt support running multiple environments. Its easy to add by adding a num_envs param and passing it to the env creation and replay buffer...

In pytorch, the following is easily possible: ```python logits = ... probs = Categorical(logits=logits) log_prob = probs.log_prob(value) entropy = probs.entropy() ``` but when I want to achieve something similar in...

enhancement
low priority

## Description The noise_clip parameter is not used in DDPG so we can remove it. ## Types of changes - [x] Bug fix - [ ] New feature - [...