add config.json
Browse files- config.json +25 -0
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"game": "othello",
|
3 |
+
"simulations": 100,
|
4 |
+
"compute_time": null,
|
5 |
+
"dirichlet_alpha": 0.03,
|
6 |
+
"dirichlet_epsilon": 0.25,
|
7 |
+
"temp_scheduler_type": "linear",
|
8 |
+
"temp_max_step": 4,
|
9 |
+
"temp_min_step": 4,
|
10 |
+
"iterations": 10,
|
11 |
+
"episodes": 200,
|
12 |
+
"epochs": 10,
|
13 |
+
"batch_size": 64,
|
14 |
+
"learning_rate": 0.01,
|
15 |
+
"data_augmentation": true,
|
16 |
+
"device": "cpu",
|
17 |
+
"eval_opponent": "mcts",
|
18 |
+
"eval_episodes": 40,
|
19 |
+
"do_eval": true,
|
20 |
+
"save": true,
|
21 |
+
"push": false,
|
22 |
+
"save_checkpoints": true,
|
23 |
+
"push_checkpoints": false,
|
24 |
+
"board_size": 6
|
25 |
+
}
|