-
Notifications
You must be signed in to change notification settings - Fork 25
/
default_config.py
61 lines (60 loc) · 1.36 KB
/
default_config.py
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
default_config = {
'name': 'inference',
'n_gpu': 1,
'arch': {
'args': {}
},
'valid_data_loader': {
'type': 'HDF5DataLoader',
'args': {
'batch_size': 1,
'shuffle': False,
'num_workers': 1,
'pin_memory': True,
'sequence_kwargs': {
'dataset_type': 'HDF5Dataset',
'normalize_image': True,
'dataset_kwargs': {
'transforms': {
'CenterCrop': {
'size': 160
}
}
}
}
}
},
'optimizer': {
'type': 'Adam',
'args': {
'lr': 0.0001,
'weight_decay': 0,
'amsgrad': True
}
},
'loss_ftns': {
'perceptual_loss': {
'weight': 1.0
},
'temporal_consistency_loss': {
'weight': 1.0
}
},
'lr_scheduler': {
'type': 'StepLR',
'args': {
'step_size': 50,
'gamma': 1.0
}
},
'trainer': {
'epochs': 1,
'save_dir': '/tmp/inference',
'save_period': 1,
'verbosity': 2,
'monitor': 'min val_loss',
'num_previews': 4,
'val_num_previews': 8,
'tensorboard': True
}
}