Add testing for ddpg model

This commit is contained in:
DongshengYang
2019-10-07 19:43:10 -04:00
committed by Dana Van Aken
parent 876d975713
commit f08204b9d6
3 changed files with 45 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ ACTOR_LEARNING_RATE = 0.001
CRITIC_LEARNING_RATE = 0.001
# The impact of future reward on the decision
GAMMA = 0.1
GAMMA = 0.9
# The changing rate of the target network
TAU = 0.002