DDPG
DDPG copied to clipboard
Reimplementation of DDPG(Continuous Control with Deep Reinforcement Learning) based on OpenAI Gym + Tensorflow
File "gym_ddpg.py", line 28 total_reward = 0
when I call upon the load_network and save_network, the error pops up. AttributeError: 'ActorNetwork' object has no attribute 'save_network' I am trying to fix this error but until now it...
This gradient for actor needs to be normalized over batch_size? https://github.com/floodsung/DDPG/blob/18825eed85f877b23cf9b531a8c5821d9f956eb2/actor_network_bn.py#L37
Hello, I meet some problem, when my action dimension equal to one, the result is good, but when my action dimension is two (the activation function is tanh and sigmoid),...
``` Traceback (most recent call last): File "gym_ddpg.py", line 43, in main() File "gym_ddpg.py", line 13, in main env.monitor.start('experiments/' + ENV_NAME,force=True) AttributeError: 'FilteredEnv' object has no attribute 'monitor' ``` ```...
mjmodel.h: no such file or directory
Hi, Thanks for your code. I tried to use it for training TORCS, however, my result are not good and to be specific after a few steps, actions generated by...
Thanks for your work! Is your input a image or just a vector? and what is the dimension of your output action?