-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
59 lines (59 loc) · 1.41 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"training": {
"batch_size": 8,
"n_epochs": 200001,
"likelihood_weighting": false,
"reduce_mean": false,
"sde": "vesde",
"continuous": true
},
"sampling": {
"snr": 0.075,
"correct_steps": 0,
"batch_size": 1,
"num_samples": 25
},
"data": {
"path": "/mnt/home/rlegin/ceph/datasets/",
"image_size": 128,
"num_input_channels": 2,
"num_output_channels": 1,
"noise_sigma": 0.1,
"cosmo_ids": [20, 40, 50, 70, 80, 90]
},
"model": {
"sigma_max": 100,
"sigma_min": 0.01,
"num_scales": 1000,
"dropout": 0.1,
"embedding_type": "fourier",
"sampling_eps": 1e-5,
"T": 1.0,
"workdir": "run/",
"ema_rate": 0.999,
"normalization": "GroupNorm",
"nonlinearity": "swish",
"nf": 32,
"ch_mult": [1,2, 2, 1, 1],
"num_res_blocks": 2,
"resamp_with_conv": true,
"conditional": true,
"fir": false,
"fir_kernel": [1, 3, 3, 1],
"skip_rescale": true,
"init_scale": 0.0,
"fourier_scale": 16,
"conv_size": 3
},
"optim": {
"weight_decay": 0,
"optimizer": "Adam",
"lr": 2e-4,
"beta1": 0.9,
"eps": 1e-8,
"warmup": 5000,
"grad_clip": 1.0
},
"seed": 42,
"device": "cuda:0"
}