-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdqn_agent.json
52 lines (46 loc) · 1.01 KB
/
dqn_agent.json
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
48
49
50
51
52
{
"type": "dqn_agent",
"update_mode": {
"unit": "timesteps",
"batch_size": 64,
"frequency": 4
},
"memory": {
"type": "replay",
"capacity": 10000,
"include_next_states": true
},
"optimizer": {
"type": "clipped_step",
"clipping_value": 0.1,
"optimizer": {
"type": "adam",
"learning_rate": 1e-3
}
},
"discount": 0.99,
"entropy_regularization": null,
"double_q_model": true,
"target_sync_frequency": 1000,
"target_update_weight": 1.0,
"actions_exploration": {
"type": "epsilon_anneal",
"initial_epsilon": 0.5,
"final_epsilon": 0.0,
"timesteps": 10000
},
"saver": {
"directory": null,
"seconds": 600
},
"summarizer": {
"directory": null,
"labels": [],
"seconds": 120
},
"execution": {
"type": "single",
"session_config": null,
"distributed_spec": null
}
}