-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathconfig_kitti.json
46 lines (46 loc) · 1.15 KB
/
config_kitti.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
{
"data_type": "KITTI",
"detect_online": true,
"path_label_3d": "/media/jingwen/Data/kitti_odom/dataset/sequences/07/labels/pointpillars_labels",
"path_label_2d": "/media/jingwen/Data/kitti_odom/dataset/sequences/07/labels/maskrcnn_labels",
"Detector3D": {
"config_path": "configs/config_pointpillars.py",
"weight_path": "weights/pointpillars/model.pth"
},
"Detector2D": {
"config_path": "configs/config_maskrcnn.py",
"weight_path": "weights/maskrcnn/model.pth"
},
"min_bb_area": 1600,
"min_mask_area": 1000,
"downsample_ratio": 4.0,
"num_lidar_max": 250,
"num_lidar_min": 10,
"DeepSDF_DIR": "weights/deepsdf/cars_64",
"voxels_dim": 32,
"optimizer": {
"code_len": 64,
"num_depth_samples": 50,
"cut_off_threshold": 0.01,
"joint_optim": {
"k1": 1.0,
"k2": 100.0,
"k3": 0.25,
"k4": 1e7,
"b1": 0.20,
"b2": 0.025,
"num_iterations": 10,
"learning_rate": 1.0,
"scale_damping": 1.0
},
"pose_only_optim": {
"num_iterations": 5,
"learning_rate": 1.0
}
},
"viewer": {
"distance": 150.0,
"tilt": 45.0,
"frame_size": 10.0
}
}