File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
rl4j-examples/src/main/java/org/deeplearning4j/examples/rl4j Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ public class A3CCartpole {
42
42
200 , //Max step By epoch
43
43
500000 , //Max step
44
44
16 , //Number of threads
45
- 5 , //t_max
45
+ 10 , //t_max
46
46
10 , //num step noop warmup
47
- 0.01 , //reward scaling
47
+ 0.1 , //reward scaling
48
48
0.99 , //gamma
49
- 10 .0 //td-error clipping
49
+ 1 .0 //td-error clipping
50
50
);
51
51
52
52
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ public class AsyncNStepCartpole {
41
41
200 , //Max step By epoch
42
42
300000 , //Max step
43
43
16 , //Number of threads
44
- 5 , //t_max
44
+ 10 , //t_max
45
45
100 , //target update (hard)
46
46
10 , //num step noop warmup
47
- 0.01 , //reward scaling
47
+ 0.1 , //reward scaling
48
48
0.99 , //gamma
49
- 100 .0 , //td-error clipping
49
+ 1 .0 , //td-error clipping
50
50
0.1f , //min epsilon
51
51
9000 //num step for eps greedy anneal
52
52
);
You can’t perform that action at this time.
0 commit comments