Deep-Reinforcement-Learning-Algorithms-with-PyTorch icon indicating copy to clipboard operation
Deep-Reinforcement-Learning-Algorithms-with-PyTorch copied to clipboard

PyTorch implementations of deep reinforcement learning algorithms and environments

Results 47 Deep-Reinforcement-Learning-Algorithms-with-PyTorch issues
Sort by recently updated
recently updated
newest added
trafficstars

Dear Petros, Thank you very much for the implementations and it is very useful. I was able to successfully execute the code in the file Cart_Pole.py. I am now am...

Hi ! When I run PPO, I got the error "RuntimeError: cuda runtime error (801) : operation not supported at ..\torch/csrc/generic/StorageSharing.cpp:247". I set config.use_GPU = True . So, how can...

I was following the setup instructions with Miniconda on a fresh Ubuntu 20.04 install, and I was getting the following error: ``` $ pip3 install -r requirements.txt ERROR: Could not...

I run the Cart_Pole.py with A3C&A2C on linux and got the error. Traceback (most recent call last): File "/usr/local/lib/python3.6/multiprocessing/process.py", line 258, in _bootstrap self.run() File "/usr/local/lib/python3.6/multiprocessing/process.py", line 93, in run...

Hello, I am new in this field, and my question is: where I can find your structure of your Neural Network in your code about the algorithm Dueling DQN? Thanks...

Currently, I am trying to merge models for SAC discrete and continous version into just 1 model. According to SAC discrete critic_model, it only need input state and output action...

This might be a minor issue, but I think there is a conflict between the fact that the first global episode is regarded as an evaluation episode, and `min_steps_before_learning` in...

Hello! I am wondering where i should put env.render() to visualize the environment?Thank you!

In your paper https://arxiv.org/pdf/1910.07207.pdf, the hyperparameter section states that you have used He weight initialization for the networks, but you seem to be using Xavier initialization for the Actor Critic...

I've launched ```python3 results/Cart_Pole.py``` And during training A2C got the error: ``` AGENT NAME: A2C 7.1: A2C TITLE CartPole {'learning_rate': 0.005, 'linear_hidden_units': [20, 10], 'final_layer_activation': ['SOFTMAX', None], 'gradient_clipping_norm': 5.0, 'discount_rate':...