deep-rl-tensorflow
deep-rl-tensorflow copied to clipboard
TensorFlow implementation of Deep Reinforcement Learning papers
Can't train the DQN!, I have installed gym[all] and tensorflow 1.9.0 with python 3.6.8, any idea? `$ python main.py --network_header_type=nature --env_name=Breakout-v0 Traceback (most recent call last): File "main.py", line 10,...
Seeing agents/statistic.py line 20: self.writer = tf.summary.FileWriter('./logs/%s' % self.model_dir, self.sess.graph) It tries to use self.model_dir to create file but it raises error : "tensorflow.python.framework.errors_impl.NotFoundError: Failed to create a directory:" How...
I'm training the DQN for Enduro-v0.It performs well but how can I see the average reward and loss on tensorboard?
add total parameter in tqdm
This problem is in utils.py, line 12, and i am use python2.7, tensorflow 1.4.0 and gym 0.7
When I train the DQN,it just stop suddenly and says /t_train_max=50000000/unrolled_lstm=False/use_cumulated_reward=False/ 0%| | 0/50000000 [00:00
I got the following bug. Could you please help? Thank you! $python main.py --network_header_type=nips --env_name=Breakout-v0 --use_gpu=False Traceback (most recent call last): File "main.py", line 173, in tf.app.run() File "/Documents/openai_gym/openai_gym/lib/python3.6/site-packages/tensorflow/python/platform/app.py", line...
Thanks for sharing this repo! I wish to try changing the rendering of display, and noticed the render() function is not explictly implemented in both AtariEnvironment and ToyEnvironment. Do you...
After I read your code carefully, I cannot figure out how you define your action space. For example , how many actions you define and how to represent each action?...
Hello. I am running your code in the atari game Breakout-v0. the settings are simple DQN(nips), DQN(nature), DDQN, dueling DQN, dueling DDQN. now, each processes are running almost 6M(6,000,000) frames....