-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig_7scene.json
More file actions
56 lines (55 loc) · 1.2 KB
/
config_7scene.json
File metadata and controls
56 lines (55 loc) · 1.2 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
48
49
50
51
52
53
54
55
56
{
"name": "SeqModel",
"n_gpu": 3,
"val_img_size": [480, 640],
"arch": {
"type": "DepthCompletionNet",
"args": {
"pretrained": true,
"feature_root": 64
}
},
"data_loader": {
"type": "SevenSceneLoader",
"args":{
"root_dir": "/mnt/sdb/khang/7scene",
"batch_size": 16,
"shuffle": true,
"img_size": [480, 640],
"num_workers": 8,
"scale_factor": 10,
"seq_size": 50,
"img_resize": [240, 320]
}
},
"optimizer": {
"type": "Adam",
"args":{
"lr": 0.0001,
"weight_decay": 0,
"amsgrad": true
}
},
"loss": "multi_losses",
"metrics": [
"mae", "rmse"
],
"lr_scheduler": {
"type": "StepLR",
"args": {
"step_size": 3,
"gamma": 0.5
}
},
"trainer": {
"epochs": 30,
"seq": true,
"save_dir": "saved/",
"save_period": 1,
"verbosity": 2,
"logging_every": 100,
"monitor": "min val_rmse",
"early_stop": 20,
"tensorboard": false
}
}