-
Notifications
You must be signed in to change notification settings - Fork 12
/
config_mp3d.yaml
65 lines (65 loc) · 1.71 KB
/
config_mp3d.yaml
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
61
62
63
64
65
dataset_args:
type: 'Matterport3DDataset'
train:
mode: 'train'
shape: &shape [512, 1024]
dataset_image_path: &dataset_image_path '/path/to/image/location'
dataset_label_path: &dataset_label_path '/path/to/label/location'
image_name: &image_name 'color.jpg'
wall_types: &wall_types [4, 6, 8, 10, 12]
camera_height: &camera_height 1.6
aug:
flip: True
stretch: True
rotate: True
gamma: True
loader_args:
batch_size: 6
num_workers: &num_workers 12
shuffle: True
drop_last: True
pin_memory: True
val:
mode: 'test' ####### Important
shape: *shape
dataset_image_path: *dataset_image_path
dataset_label_path: *dataset_label_path
image_name: *image_name
wall_types: *wall_types
camera_height: *camera_height
aug:
flip: False
stretch: False
rotate: False
gamma: False
loader_args:
batch_size: 1
num_workers: *num_workers
shuffle: False
drop_last: False
pin_memory: True
optimizer_args:
type: 'Adam'
args:
lr: 0.0003
loss_args:
camera_height: *camera_height
metric_args:
field_names: ['IoU_2D', 'IoU_3D']
network_args:
save_path: './save'
backbone: 'resnet50'
exp_args:
seed: 229
epoch: 1000
device: 'cuda:0'
multi-gpu: False
exp_path: './experiment'
exp_freq: 200
camera_height: *camera_height
visualizer_args:
cube_dim: 256
equi_shape: *shape
camera_FoV: 160
fp_dim: 512
fp_meters: 20