-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathconfig.json
45 lines (45 loc) · 848 Bytes
/
config.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
{
"data_dim": 2,
"num_reps": 10,
"viz_batch_size": 512,
"datasets": [{
"type": "sphere",
"num_points_inner": 500,
"num_points_outer": 1500,
"inner_range": [0.0, 0.5],
"outer_range": [1.0, 1.5]
},
{
"type": "sine",
"shift": 1.4,
"num_points_lower": 1500,
"num_points_upper": 1500,
"noise_scale": 0.1
}],
"model_configs": [
{
"type": "resnet",
"hidden_dim": 32,
"num_layers": 5,
"lr": 1e-3
},
{
"type": "odenet",
"hidden_dim": 32,
"time_dependent": true,
"lr": 1e-3
},
{
"type": "anode",
"hidden_dim": 32,
"time_dependent": true,
"lr": 1e-3,
"augment_dim": 5
}],
"training_config": {
"batch_size": 64,
"record_freq": 20,
"print_freq": 20,
"epochs": 30
}
}