Awesome
ST3D & ST3D++
Code release for the paper ST3D: Self-training for Unsupervised Domain Adaptation on 3D Object Detection, CVPR 2021 and ST3D++: Denoised Self-training for Unsupervised Domain Adaptation on 3D Object Detection, T-PAMI 2022.
News
[2023-05-17] Support Waymo -> Lyft setting.
[2022-09-26] ST3D++ (The extension of ST3D) has been integrated in this repo for Waymo->KITTI and nuScenes->KITTI.
Introduction
Our code is based on OpenPCDet v0.3.0. More updates on OpenPCDet are supposed to be compatible with our code.
Model Zoo
Waymo -> KITTI TASK
method | Car@R40 | Ped@R40 | Cyc@R40 | |
---|---|---|---|---|
SECOND-IoU | ST3D | 62.19 | 48.33 | 46.09 |
SECOND-IoU | ST3D (w/ sn) | 73.62 | 51.92 | 53.00 |
SECOND-IoU | ST3D++ | 65.10 | 53.87 | 53.43 |
SECOND-IoU | ST3D++ (w/ sn) | 74.73 | 59.21 | 60.76 |
PVRCNN | ST3D | 64.05 | - | - |
PVRCNN | ST3D (w/ sn) | 77.33 | - | - |
We could not provide the above pretrained models due to Waymo Dataset License Agreement, but you should achieve similar performance by training with the default configs. To access these pretrained models, please send us an email with your name, institute, a screenshot of the Waymo dataset registration confirmation mail, and your intended usage. Please send a second email if we don't get back to you in two days. Please note that Waymo open dataset is under strict non-commercial license, so we are not allowed to share the model with you if it will use for any profit-oriented activities.
Also, the training Waymo data used in our work is version 1.0, but the version now available is version 1.2. The pretrained model on these two version data should be similar when adapted to KITTI.
nuScenes -> KITTI TASK
method | Car@R40 | Ped@R40 | Cyc@R40 | |
---|---|---|---|---|
SECOND-IoU | Source Only | 17.92 | - | - |
SECOND-IoU | ROS | 25.37 | - | - |
SECOND-IoU | SN | 21.23 | 34.36 | 5.67 |
SECOND-IoU | ST3D | 55.19 | - | - |
SECOND-IoU | ST3D (w/ SN) | 62.27 | - | - |
SECOND-IoU | ST3D++ | 66.01 | 45.23 | 25.98 |
SECOND-IoU | ST3D++ (w/ SN) | 66.24 | 46.75 | 22.66 |
PV-RCNN | Source Only | 37.17 | - | - |
PV-RCNN | ROS | 38.84 | - | - |
PV-RCNN | SN | 49.47 | - | - |
PV-RCNN | ST3D | 71.11 | - | - |
PV-RCNN | ST3D (w/ SN) | 73.16 | - | - |
PointRCNN | ROS | 55.92 | - | - |
PointRCNN | ST3D++ | 67.51 | - | - |
We provide pretrained models here for nuScenes > KITTI task in models.
Waymo -> nuScenes TASK
method | Car@R11 | Car@R40 | download | |
---|---|---|---|---|
SECOND-IoU | ST3D | 23.24 | 20.19 | model |
PVRCNN | ST3D | 27.18 | 22.99 | model |
SECOND-IoU | ST3D (w/ sn) | 23.52 | 20.38 | model |
PVRCNN | ST3D (w/ sn) | 28.06 | 23.67 | model |
We could not provide the above pretrained models due to Waymo Dataset License Agreement, but you should achieve similar performance by training with the default configs.
Waymo -> Lyft TASK
method | Car@R11 | Car@R40 | download | |
---|---|---|---|---|
SECOND-IoU | Source Only | - | 54.34 | - |
SECOND-IoU | SN | - | 54.34 | - |
SECOND-IoU | ST3D | - | 59.24 | model |
SECOND-IoU | ST3D (w/ sn) | - | 57.99 | model |
PVRCNN | Source Only | - | 58.53 | - |
PVRCNN | SN | - | 56.64 | - |
PVRCNN | ST3D | - | 60.53 | model |
PVRCNN | ST3D (w/ sn) | - | 58.54 | model |
We could not provide the above pretrained models due to Waymo Dataset License Agreement, but you should achieve similar performance by training with the default configs.
Installation
Please refer to INSTALL.md for the installation.
Getting Started
Please refer to GETTING_STARTED.md to learn more usage about this project.
Supported features and ToDo List
-
Support inference and pre-trained model
-
Support training code on Waymo -> KITTI task
-
Update to OpenPCDet v0.3.0 version.
-
Support more adaptation tasks.
License
Our code is released under the Apache 2.0 license.
Acknowledgement
Our code is heavily based on OpenPCDet v0.3. Thanks OpenPCDet Development Team for their awesome codebase.
Citation
If you find this project useful in your research, please consider cite:
@inproceedings{yang2021st3d,
title={ST3D: Self-training for Unsupervised Domain Adaptation on 3D Object Detection},
author={Yang, Jihan and Shi, Shaoshuai and Wang, Zhe and Li, Hongsheng and Qi, Xiaojuan},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
year={2021}
}
@article{yang2021st3d++,
title={ST3D++: Denoised Self-training for Unsupervised Domain Adaptation on 3D Object Detection},
author={Yang, Jihan and Shi, Shaoshuai and Wang, Zhe and Li, Hongsheng and Qi, Xiaojuan},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
year={2022}
}
@misc{openpcdet2020,
title={OpenPCDet: An Open-source Toolbox for 3D Object Detection from Point Clouds},
author={OpenPCDet Development Team},
howpublished = {\url{https://github.com/open-mmlab/OpenPCDet}},
year={2020}
}