cajcodes commited on
Commit
82b2cb6
1 Parent(s): 502a473

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +13 -0
config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "DQN",
3
+ "input_size": 100,
4
+ "hidden_sizes": [64, 64],
5
+ "output_size": 4,
6
+ "learning_rate": 0.001,
7
+ "batch_size": 64,
8
+ "gamma": 0.99,
9
+ "target_update_freq": 100,
10
+ "num_episodes": 50,
11
+ "checkpoint_freq": 10
12
+ }
13
+