-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.json
68 lines (68 loc) · 1.4 KB
/
options.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"df": {
"n_flows": 1,
"n_hidden": 3,
"hidden_size": 64,
"n_bij": 3,
"reg": {
"dv_dt_reg": 0,
"kinetic_reg": 0.0001,
"jacobian_reg": 0.0001
},
"n_epochs": 32768,
"batch_size": 8192,
"lr": {
"type": "step",
"init": 0.005,
"patience": 2048,
"min_delta": 0.01,
"final": 0.0001
},
"optimizer": "RAdam",
"warmup_proportion": 0.0009765625,
"max_checkpoints": 128,
"checkpoint_every": 1,
"checkpoint_hours": 1.0,
"validation_frac": 0.25
},
"Phi": {
"n_samples": 2097152,
"sample_batch_size": 2048,
"grad_batch_size": 128,
"n_hidden": 4,
"hidden_size": 512,
"xi": 1.0,
"lam": 1.0,
"l2": 0.1,
"n_epochs": 4096,
"batch_size": 32768,
"lr": {
"type": "step",
"init": 0.001,
"patience": 2048,
"min_delta": 0.005
},
"optimizer": "RAdam",
"warmup_proportion": 0.015625,
"max_checkpoints": 128,
"checkpoint_every": 16,
"frameshift": {
"omega0": 0.4,
"omega0_trainable": true,
"r_c0": 8.3,
"r_c0_trainable": false,
"u_x0": 0.093,
"u_x0_trainable": true,
"u_y0": 2.515,
"u_y0_trainable": true,
"u_z0": 0.0859,
"u_z0_trainable": true
},
"analytic_potential": {
"mn_a": 1.0,
"mn_a_trainable": true,
"mn_b": 1.0,
"mn_b_trainable": true
}
}
}