README.md
January 29, 2025 ยท View on GitHub
๐ค AGR-Family Works
- OccRWKV (ICRA 2025.01): The First RWKV-based 3D Semantic Occupancy Network
- OMEGA (RA-L 2024.12): The First AGR-Tailored Dynamic Navigation System.
- HE-Nav (RA-L 2024.09): The First AGR-Tailored ESDF-Free Navigation System.
- AGRNav (ICRA 2024.01): The First AGR-Tailored Occlusion-Aware Navigation System.
๐ Chinese Media Reports/Interpretations
- [2024.10] - RWKV Official Website
- [2024.10] - Autonomous Driving Daily
- [2024.10] - ADFeed
- [2024.10] - Intelligent Driving Lab
๐ข News
- [2024/09.28]: OccRWKV's logs are available for download:
| OccRWKV Results | Experiment Log |
|---|---|
| OccRWKV on the SemanticKITTI hidden official test dataset | link |
| OccRWKV train log | link |
- [2024/09.15]: The pre-trained model can be downloaded at OneDrive.
- [2024/09.01]: ๐ฅ We released the code of OccRWKV. The First Receptance Weighted Key Value (RWKV)-based 3D Semantic Occupancy Network
๐ Introduction
OccRWKV introduces an efficient semantic occupancy prediction network that smartly decouples semantics and occupancy with specialized RWKV blocks, achieving superior accuracy and real-time performance for 3D semantic scene understanding. Its use of BEV space and sparse feature projection significantly reduces computational demands, making it highly suitable for enhancing real-time autonomous navigation in robotic systems.
๐ Citing
@article{wang2024occrwkv,
title={OccRWKV: Rethinking Efficient 3D Semantic Occupancy Prediction with Linear Complexity},
author={Wang, Junming and Yin, Wei and Long, Xiaoxiao and Zhang, Xingyu and Xing, Zebin and Guo, Xiaoyang and Zhang, Qian},
journal={arXiv preprint arXiv:2409.19987},
year={2024}
}
Please kindly star โญ๏ธ this project if it helps you. We take great efforts to develop and maintain it ๐.
๐ ๏ธ Installation
conda create -n occ_rwkv python=3.10 -y
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 pytorch-cuda=12.1 -c pytorch -c nvidia -y
pip install spconv-cu120
pip install tensorboardX
pip install dropblock
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.1.0+cu121.html
pip install -U openmim
mim install mmcv-full
pip install mmcls==0.25.0
๐ฝ Dataset
Please download the Semantic Scene Completion dataset (v1.1) from the SemanticKITTI website and extract it.
Or you can use voxelizer to generate ground truths of semantic scene completion.
The dataset folder should be organized as follows.
SemanticKITTI
โโโ dataset
โ โโโ sequences
โ โ โโโ 00
โ โ โ โโโ labels
โ โ โ โโโ velodyne
โ โ โ โโโ voxels
โ โ โ โโโ [OTHER FILES OR FOLDERS]
โ โ โโโ 01
โ โ โโโ ... ...
๐ค Getting Start
Clone the repository:
https://github.com/jmwang0117/OccRWKV.git
Train OccRWKV Net
$ cd <root dir of this repo>
$ bash scripts/run_train.sh
Validation
$ cd <root dir of this repo>
$ bash scripts/run_val.sh
Test
Since SemantiKITTI contains a hidden test set, we provide test routine to save predicted output in same format of SemantiKITTI, which can be compressed and uploaded to the SemanticKITTI Semantic Scene Completion Benchmark. You can provide which checkpoints you want to use for testing. We used the ones that performed best on the validation set during training. For testing, you can use the following command.
$ cd <root dir of this repo>
$ bash scripts/run_test.sh
๐ Acknowledgement
Many thanks to these excellent open source projects: