Simom0 commited on
Commit
c4bda0e
·
verified ·
1 Parent(s): 13dd504

Upload pretrained models

Browse files
lido-kitti/MinkowskiNet-semantickitti.yaml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Config format schema number
2
+ format_version: 1
3
+
4
+ ###################
5
+ ## Model options
6
+ model_params:
7
+ model_architecture: "minkowskinet"
8
+
9
+ input_dims: 4
10
+ voxel_size: 0.05 # 0.05 for SemanticKITTI (?)
11
+ cr: 1
12
+ layer_num:
13
+ - 32
14
+ - 32
15
+ - 64
16
+ - 128
17
+ - 256
18
+ - 256
19
+ - 128
20
+ - 96
21
+ - 96
22
+
23
+ ###################
24
+ ## Dataset options
25
+ dataset:
26
+ pc_dataset_type: "SemanticKITTI"
27
+ collate_type: "sparse_collate_fn"
28
+ ignore_label: 0
29
+ data_config: "./config/labels/semantic-kitti.yaml" # semantic-kitti-sdata.yaml for small data setup
30
+ num_classes: 20
31
+ sensor:
32
+ name: "HDL64"
33
+ type: "spherical" # projective
34
+ fov_up: 3
35
+ fov_down: -25
36
+
37
+ ###################
38
+ ## Train params
39
+ train:
40
+ epochs: 64 # default 128
41
+ learning_rate: 2.4e-1 # 1.0e-2 for SGD | 1.0e-4 for AdamW
42
+ weight_decay: 1.0e-4
43
+ optimizer: SGD # [SGD, AdamW]
44
+ batch_size: 4 # batch size (default 8)
45
+ workers: 4 # number of threads to get data
46
+ epsilon_w: 0.001 # class weight w = 1 / (content + epsilon_w)
47
+ momentum: 0.9
48
+ nesterov: True
49
+
50
+ mav_loss: True # features loss
51
+ cont_loss: True # contrastive loss
52
+ obj_loss: True # objectosphere loss
53
+
54
+ anomaly_ratio: [0.0, 1.0] # ratio of anomalous samples in train/val
55
+
56
+ scheduler:
57
+ name: "WarmupCosine" # [OneCycle, WarmupCosine]
58
+ #OneCycleLR: # Old decay with warmup and cosine annealing
59
+ max_lr: 0.01 # Equal to optimizer.lr
60
+ total_steps: 1000 # Equal to max_epochs * iterations_per_epoch
61
+ pct_start: 0.02 # The percentage of the cycle (in number of steps) spent increasing the learning rate (warmup).
62
+
63
+ report_epoch: 1 # report every epoch
64
+ show_scans: False # show scans during training
65
+
66
+ #lr_scheduler: CosineAnnealingWarmRestarts # [StepLR, ReduceLROnPlateau, CosineAnnealingLR, CosineAnnealingWarmRestarts]
67
+ #momentum: 0.9
68
+ #nesterov: True
69
+ #weight_decay: 1.0e-4
lido-kitti/checkpoint-best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcac3e8525d7d45fde94e33506c35e1119105d34e78b5b8e1a9cdd10f186f4b1
3
+ size 174020824
lido-kitti/mavs.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c67fe7f61aaf3a8b9c8fbd739a469dffa23240bcc19a3dedd8479be46f83407
3
+ size 7611
lido-kitti/vars.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c46b2188ddc7d41cc24ef0169fb8383020b978d3401845b960e3ec6167bbb034
3
+ size 7535
lido-nuscenes/MinkowskiNet-nuscenes.yaml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Config format schema number
2
+ format_version: 1
3
+
4
+ ###################
5
+ ## Model options
6
+ model_params:
7
+ model_architecture: "minkowskinet"
8
+
9
+ input_dims: 4
10
+ voxel_size: 0.05 # 0.05 for SemanticKITTI (?)
11
+ cr: 1
12
+ layer_num:
13
+ - 32
14
+ - 32
15
+ - 64
16
+ - 128
17
+ - 256
18
+ - 256
19
+ - 128
20
+ - 96
21
+ - 96
22
+
23
+ ###################
24
+ ## Dataset options
25
+ dataset:
26
+ pc_dataset_type: "nuScenes"
27
+ collate_type: "sparse_collate_fn"
28
+ ignore_label: 0
29
+ data_config: "./config/labels/nuscenes.yaml"
30
+ num_classes: 17
31
+ sensor:
32
+ name: "HDL32"
33
+ type: "spherical" # projective
34
+ fov_up: 10
35
+ fov_down: -30
36
+
37
+ ###################
38
+ ## Train params
39
+ train:
40
+ epochs: 64 # default 128
41
+ learning_rate: 2.4e-1 # 1.0e-2 for SGD | 1.0e-4 for AdamW
42
+ weight_decay: 1.0e-4
43
+ optimizer: SGD # [SGD, AdamW]
44
+ batch_size: 4 # batch size (default 8)
45
+ workers: 4 # number of threads to get data
46
+ epsilon_w: 0.001 # class weight w = 1 / (content + epsilon_w)
47
+ momentum: 0.9
48
+ nesterov: True
49
+
50
+ mav_loss: True # features loss
51
+ cont_loss: True # contrastive loss
52
+ obj_loss: True # objectosphere loss
53
+
54
+ anomaly_ratio: [0.0, 0.0] # ratio of anomalous samples in train/val
55
+
56
+ scheduler:
57
+ name: "WarmupCosine" # [OneCycle, WarmupCosine]
58
+ #OneCycleLR: # Old decay with warmup and cosine annealing
59
+ max_lr: 0.01 # Equal to optimizer.lr
60
+ total_steps: 1000 # Equal to max_epochs * iterations_per_epoch
61
+ pct_start: 0.02 # The percentage of the cycle (in number of steps) spent increasing the learning rate (warmup).
62
+
63
+ report_epoch: 1 # report every epoch
64
+ show_scans: False # show scans during training
65
+
66
+ #lr_scheduler: CosineAnnealingWarmRestarts # [StepLR, ReduceLROnPlateau, CosineAnnealingLR, CosineAnnealingWarmRestarts]
67
+ #momentum: 0.9
68
+ #nesterov: True
69
+ #weight_decay: 1.0e-4
lido-nuscenes/checkpoint-best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3cc99b3694b6dbab30d19b65e1b49d0fb3a9ea0a1634cb5b3f97b5809c73464
3
+ size 174016216
lido-nuscenes/mavs.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a821a0d3025f127bdf4887503861b27b70c1453b3f393405b1e5be4d3838cfde
3
+ size 6282
lido-nuscenes/vars.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:399e72044d473eaa77abd2ebe9375ab37666b3526e19f207ab1cc94b56da0502
3
+ size 6218
lido-poss/MinkowskiNet-semanticposs.yaml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Config format schema number
2
+ format_version: 1
3
+
4
+ ###################
5
+ ## Model options
6
+ model_params:
7
+ model_architecture: "minkowskinet"
8
+
9
+ input_dims: 4
10
+ voxel_size: 0.05 # 0.05 for SemanticPOSS (?)
11
+ cr: 1
12
+ layer_num:
13
+ - 32
14
+ - 32
15
+ - 64
16
+ - 128
17
+ - 256
18
+ - 256
19
+ - 128
20
+ - 96
21
+ - 96
22
+
23
+ ###################
24
+ ## Dataset options
25
+ dataset:
26
+ pc_dataset_type: "SemanticPOSS"
27
+ collate_type: "sparse_collate_fn"
28
+ ignore_label: 0
29
+ data_config: "./config/labels/semantic-poss.yaml"
30
+ num_classes: 14
31
+ sensor:
32
+ name: "HDL64"
33
+ type: "spherical" # projective
34
+ fov_up: 7
35
+ fov_down: -16
36
+
37
+ ###################
38
+ ## Train params
39
+ train:
40
+ epochs: 64 # default 128
41
+ learning_rate: 2.4e-1 # 1.0e-2 for SGD | 1.0e-4 for AdamW
42
+ weight_decay: 1.0e-4
43
+ optimizer: SGD # [SGD, AdamW]
44
+ batch_size: 4 # batch size (default 8)
45
+ workers: 4 # number of threads to get data
46
+ epsilon_w: 0.001 # class weight w = 1 / (content + epsilon_w)
47
+ momentum: 0.9
48
+ nesterov: True
49
+
50
+ mav_loss: True # features loss
51
+ cont_loss: True # contrastive loss
52
+ obj_loss: True # objectosphere loss
53
+
54
+ anomaly_ratio: [0.0, 0.0] # ratio of anomalous samples in train/val
55
+
56
+ scheduler:
57
+ name: "WarmupCosine" # [OneCycle, WarmupCosine]
58
+ #OneCycleLR: # Old decay with warmup and cosine annealing
59
+ max_lr: 0.01 # Equal to optimizer.lr
60
+ total_steps: 1000 # Equal to max_epochs * iterations_per_epoch
61
+ pct_start: 0.02 # The percentage of the cycle (in number of steps) spent increasing the learning rate (warmup).
62
+
63
+ report_epoch: 1 # report every epoch
64
+ show_scans: False # show scans during training
65
+
66
+ #lr_scheduler: CosineAnnealingWarmRestarts # [StepLR, ReduceLROnPlateau, CosineAnnealingLR, CosineAnnealingWarmRestarts]
67
+ #momentum: 0.9
68
+ #nesterov: True
69
+ #weight_decay: 1.0e-4
lido-poss/checkpoint-best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:518c84e0d07d2225965f2ce3f9c9610670d0153ee45cec3ca15b459419362b49
3
+ size 174011608
lido-poss/mavs.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adb74423b340313bc6fef71c613dcd88204e486f7eb109673f92564405260bd9
3
+ size 5025
lido-poss/vars.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e69b439fb29dea4e5c5b100190ba25600bedb438d92117a8a8f6141d2c40933
3
+ size 4973
lido-stu/MinkowskiNet-semantickitti.yaml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Config format schema number
2
+ format_version: 1
3
+
4
+ ###################
5
+ ## Model options
6
+ model_params:
7
+ model_architecture: "minkowskinet"
8
+
9
+ input_dims: 4
10
+ voxel_size: 0.05 # 0.05 for SemanticKITTI (?)
11
+ cr: 1
12
+ layer_num:
13
+ - 32
14
+ - 32
15
+ - 64
16
+ - 128
17
+ - 256
18
+ - 256
19
+ - 128
20
+ - 96
21
+ - 96
22
+
23
+ ###################
24
+ ## Dataset options
25
+ dataset:
26
+ pc_dataset_type: "SemanticKITTI"
27
+ collate_type: "sparse_collate_fn"
28
+ ignore_label: 0
29
+ data_config: "./config/labels/semantic-kitti.yaml" # semantic-kitti-sdata.yaml for small data setup
30
+ num_classes: 20
31
+ sensor:
32
+ name: "HDL64"
33
+ type: "spherical" # projective
34
+ fov_up: 3
35
+ fov_down: -25
36
+
37
+ ###################
38
+ ## Train params
39
+ train:
40
+ epochs: 64 # default 128
41
+ learning_rate: 2.4e-1 # 1.0e-2 for SGD | 1.0e-4 for AdamW
42
+ weight_decay: 1.0e-4
43
+ optimizer: SGD # [SGD, AdamW]
44
+ batch_size: 4 # batch size (default 8)
45
+ workers: 4 # number of threads to get data
46
+ epsilon_w: 0.001 # class weight w = 1 / (content + epsilon_w)
47
+ momentum: 0.9
48
+ nesterov: True
49
+
50
+ mav_loss: True # features loss
51
+ cont_loss: True # contrastive loss
52
+ obj_loss: True # objectosphere loss
53
+
54
+ anomaly_ratio: [0.0, 0.0] # ratio of anomalous samples in train/val
55
+
56
+ scheduler:
57
+ name: "WarmupCosine" # [OneCycle, WarmupCosine]
58
+ #OneCycleLR: # Old decay with warmup and cosine annealing
59
+ max_lr: 0.01 # Equal to optimizer.lr
60
+ total_steps: 1000 # Equal to max_epochs * iterations_per_epoch
61
+ pct_start: 0.02 # The percentage of the cycle (in number of steps) spent increasing the learning rate (warmup).
62
+
63
+ report_epoch: 1 # report every epoch
64
+ show_scans: False # show scans during training
65
+
66
+ #lr_scheduler: CosineAnnealingWarmRestarts # [StepLR, ReduceLROnPlateau, CosineAnnealingLR, CosineAnnealingWarmRestarts]
67
+ #momentum: 0.9
68
+ #nesterov: True
69
+ #weight_decay: 1.0e-4
lido-stu/checkpoint-best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1937df434810447d132203169e9ce1005c42c505b500a0915681e8271ee5e3f1
3
+ size 174020824
lido-stu/mavs.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba194e2a48b684bf1710fdaaeba36af4ba2df617ac05ce060e5a3ef45ad10b07
3
+ size 7611
lido-stu/vars.pickle ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c55e80b956584ed2967d9aeee95ac194efd590c05f864103aca8cac90d78f3c3
3
+ size 7535