forked from tensorforce/tensorforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvpg.json
More file actions
executable file
·47 lines (42 loc) · 873 Bytes
/
vpg.json
File metadata and controls
executable file
·47 lines (42 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"type": "vpg_agent",
"update_mode": {
"unit": "episodes",
"batch_size": 20,
"frequency": 20
},
"memory": {
"type": "latest",
"include_next_states": false,
"capacity": 5000
},
"optimizer": {
"type": "adam",
"learning_rate": 2e-2
},
"discount": 0.99,
"entropy_regularization": null,
"gae_lambda": null,
"baseline_mode": "states",
"baseline": {
"type": "mlp",
"sizes": [32, 32]
},
"baseline_optimizer": {
"type": "multi_step",
"optimizer": {
"type": "adam",
"learning_rate": 1e-3
},
"num_steps": 5
},
"saver": {
"directory": null,
"seconds": 600
},
"summarizer": {
"directory": null,
"labels": [],
"seconds": 120
}
}