t0m1ab commited on
Commit
23253d9
1 Parent(s): 314798f

add config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -0
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "game": "tictactoe",
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": 2,
9
+ "temp_min_step": 2,
10
+ "iterations": 30,
11
+ "episodes": 100,
12
+ "epochs": 10,
13
+ "batch_size": 64,
14
+ "learning_rate": 0.001,
15
+ "data_augmentation": true,
16
+ "device": "cpu",
17
+ "eval_opponent": "mcts",
18
+ "eval_episodes": 100,
19
+ "do_eval": true,
20
+ "save": true,
21
+ "push": false,
22
+ "save_checkpoints": true,
23
+ "push_checkpoints": false,
24
+ "board_size": 3
25
+ }