-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_ada.json
53 lines (49 loc) · 1.14 KB
/
config_ada.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
{
"name": "ResNetAE_RGB100",
"n_gpu": 4,
"arch": {
"type": "ResNetAE_RGB",
"args": {"n_levels": 4,
"n_ResidualBlock": 4,
"z_dim": 128,
"UseMultiResSkips": true}
},
"dataloader": {
"type": "TemporalDataloader",
"args":{
"dataset_path": "/../../../ssd_scratch/cvit/richa/dataset/",
"seq_ID" : "03384",
"K_frames": 4,
"batch_size": 3,
"shuffle": true,
"validation_split": 0.0,
"num_workers": 2
}
},
"optimizer": {
"type": "Adam",
"args":{
"lr": 0.001,
"weight_decay": 0.01,
"amsgrad": true
}
},
"loss": "ssim_L1_loss",
"metrics": [
],
"lr_scheduler": {
"type": "ExponentialLR",
"args": {
"gamma": 0.99
}
},
"trainer": {
"epochs": 100,
"save_dir": "/../../../ssd_scratch/cvit/richa/saved/",
"save_period": 10,
"verbosity": 2,
"monitor": "off",
"early_stop": 10,
"tensorboard": true
}
}