-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample-model.json
More file actions
47 lines (47 loc) · 1.03 KB
/
example-model.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"optimizer": {
"otype": "ExponentialDecay",
"decay_start": 2000,
"decay_interval": 1000,
"decay_base": 0.99,
"nested": {
"otype": "Adam",
"learning_rate": 5e-3,
"beta1": 0.9,
"beta2": 0.999,
"epsilon": 1e-15,
"l2_reg": 1e-6
}
},
"loss": {
"otype": "L1"
},
"encoding": {
"otype": "HashGrid",
"n_levels": 8,
"n_features_per_level": 8,
"log2_hashmap_size": 19,
"base_resolution": 16
},
"network": {
"otype": "FullyFusedMLP",
"activation": "ReLU",
"n_neurons": 64,
"n_hidden_layers": 4,
"output_activation": "None"
}
// "network": {
// "otype": "CutlassMLP",
// "activation": "Sine",
// "output_activation": "None",
// "n_neurons": 64,
// "n_hidden_layers": 4
// }
// "network": {
// "otype": "CutlassResNet",
// "n_neurons": 64,
// "n_blocks": 8,
// "n_matrices_per_block": 4,
// "activation": "Sine"
// }
}