Skip to content

Commit e5f43e5

Browse files
committed
Merge branch 'main' into spconv2
2 parents 08607c6 + 74c88b2 commit e5f43e5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ To launch a pre-training of the Minkowski SR-UNet (minkunet) on nuScenes:
5757

5858
You can alternatively replace minkunet with voxelnet to pre-train a PV-RCNN backbone.
5959
Weights of the pre-training can be found in the output folder, and can be re-used during a downstream task.
60+
If you wish to use multiple GPUs, please scale the learning rate and batch size accordingly.
6061

6162
### Semantic segmentation
6263

@@ -77,8 +78,8 @@ If you wish to reevaluate the linear probing, the experiments in the paper were
7778
All experiments for object detection have been done using [OpenPCDet](https://github.com/open-mmlab/OpenPCDet).
7879

7980

80-
## Results
81-
All results are obtained with a pre-training on nuScenes
81+
## Published results
82+
All results are obtained with a pre-training on nuScenes.
8283

8384
### Few-shot semantic segmentation
8485

@@ -108,6 +109,9 @@ Random init. |56.1 |59.1 |61.6
108109
[PPKT](https://arxiv.org/abs/2104.04687)|**57.8**|60.1 |61.2
109110
SLidR |**57.8**|**61.4**|**62.4**
110111

112+
## Unpublished preliminary results
113+
All results are obtained with a pre-training on nuScenes.
114+
111115
#### Results on the validation set using [PV-RCNN](https://arxiv.org/abs/1912.13192):
112116
Method |Car |Pedestrian|Cyclist |mAP@40
113117
--- |:-: |:-: |:-: |:-:

model/spconv_backbone.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,5 +407,6 @@ def forward(self, voxels, coordinates):
407407
)
408408
sp_tensor = super(VoxelNet, self).forward(sp_tensor)
409409
sp_tensor = self.final(sp_tensor)
410+
sp_tensor = sp_tensor.replace_feature(nn.functional.normalize(sp_tensor.features, dim=1))
410411
sp_tensor = self.height_compression(sp_tensor)
411412
return sp_tensor

0 commit comments

Comments
 (0)