Skip to content

Commit c27ed37

Browse files
committedApr 15, 2017
edit
1 parent 2c407db commit c27ed37

File tree

1 file changed

+4
-4
lines changed
  • Reinforcement_learning_TUT/experiments/Solve_BipedalWalker

1 file changed

+4
-4
lines changed
 

‎Reinforcement_learning_TUT/experiments/Solve_BipedalWalker/A3C.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
N_WORKERS = multiprocessing.cpu_count()
2626
MAX_GLOBAL_EP = 8000
2727
GLOBAL_NET_SCOPE = 'Global_Net'
28-
UPDATE_GLOBAL_ITER = 5
29-
GAMMA = 0.99
28+
UPDATE_GLOBAL_ITER = 10
29+
GAMMA = 0.999
3030
ENTROPY_BETA = 0.005
31-
LR_A = 0.0001 # learning rate for actor
32-
LR_C = 0.001 # learning rate for critic
31+
LR_A = 0.00002 # learning rate for actor
32+
LR_C = 0.0001 # learning rate for critic
3333
GLOBAL_RUNNING_R = []
3434
GLOBAL_EP = 0
3535

0 commit comments

Comments
 (0)
Please sign in to comment.