-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
46 lines (41 loc) · 979 Bytes
/
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
classes_eps = {
3: 0.2, # chair
5: 0.2, # table
7: 0.2, # cabinet
10: 0.8, # sofa
11: 1.0, # bed
19: 0.1, # stool
31: 0.2, #shelf
}
voting_eps = 0.1
voxel_size = 0.04
cluster_min_points = 9
pts_per_unit = 20
params = {
"default": {
"grid_search_contact_weight": 100,
"grid_search_pen_thresh": -0.05,
"grid_search_classes_pen_weight": {
3: 10, # chair
5: 10, # table
7: 10, # cabinet
10: 10, # sofa
11: 10, # bed
19: 10, # stool
31: 1, # shelf
},
"lr": 0.003,
"opt_steps": 200,
"opt_contact_weight": 100,
"opt_pen_thresh": 0.0,
"opt_classes_pen_weight": {
3: 1, # chair
5: 100, # table
7: 1, # cabinet
10: 10, # sofa
11: 10, # bed
19: 1, # stool
31: 1, # shelf
}
}
}