-
### ❓ Question
```
import gym
from stable_baselines3.common.callbacks import BaseCallback
class NeuroRL4(gym.Env):
metadata={ 'render.modes':['human','rgb_array'], 'video.frames_per_second'…
-
### 🚀 Feature
A clear and concise description of the feature proposal.
At present the `predict` method in the `BasePolicy` class contains quite a lot of logic that could be reused to provide sim…
-
### Question
Is there a reason why the device default is `"auto"` everywhere except in the buffers?
### Additional context
#### DDPG
https://github.com/DLR-RM/stable-baselines3/blob/a6f504…
-
hi mate. hope you are doing well.
i couldn't find DDPG version you've used in paper implementation. would you please direct me to DDPG implementation
best regards!
-
Hi,
I have segmentation fault error when running amc_search
after debugging with faulthandler. It seems that the error is caused by scipy
```
Traceback (most recent call last):
File "to…
twmht updated
2 years ago
-
I have a custom env and it is made for a single agent below is small snippet:
### 🤖 Custom Gym Environment
```
def step(self,action):
k=self.rad_curvature
u1=self.insertion_depth
#un normalis…
-
### Question
The Atari breakout platform doesn't move and just sticks to right side.
### Additional context
I was working on my atari breakout model and the project is finally completed but…
-
### 🤖 Custom Gym Environment
```python
import gym
import numpy as np
from gym.spaces import Box
class TestEnv(gym.Env):
metadata = {"render.modes": ["console"]}
def __init__(self,…
-
https://mp.weixin.qq.com/s/DAPirChUTKZ9yLExJw86Tg
-
I'm trying to modify your code in the `core` script of ddpg in PyTorch agents to build a model with convolutional layers to be used. It is pretty straight forward for the actor model. However, for the…