This repository contains the official baseline model for the GraspNet-1Billion benchmark, now updated to support modern deep learning environments. Key upgrades include compatibility with Python 3.12, the latest PyTorch nightly builds (for CUDA 12.8+), and fixes for common compilation issues on newer NVIDIA GPUs (e.g., 40 and 50 series).
This version preserves the original model's functionality while ensuring it runs smoothly on up-to-date systems.
This code has been tested and verified on the following environment:
OS: Ubuntu 24.04
GPU: NVIDIA 5090 with CUDA 12.8
Python: 3.12
PyTorch: Nightly Build (2.4.0.dev+)
Other Dependencies: open3d>=0.8, tensorboard, numpy, scipy, pillow, tqdm
Get the code.
git clone https://github.com/H-Freax/GraspNet-PointNet2-Pytorch-General-Upgrade.git
cd GraspNet-PointNet2-Pytorch-General-Upgrade
First, install PyTorch. For modern GPUs (like the NVIDIA 5090) and CUDA 12.8, you'll need the nightly build.
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
Install packages via Pip.
pip install -r requirements.txt
Compile and install pointnet2 operators (code adapted from votenet).
cd pointnet2
python setup.py install
Compile and install knn operator (code adapted from pytorch_knn_cuda).
cd knn
python setup.py install
Install graspnetAPI for evaluation.
git clone https://github.com/graspnet/graspnetAPI.git
cd graspnetAPI
pip install .
Tolerance labels are not included in the original dataset, and need additional generation. Make sure you have downloaded the orginal dataset from GraspNet. The generation code is in dataset/generate_tolerance_label.py. You can simply generate tolerance label by running the script: (--dataset_root
and --num_workers
should be specified according to your settings)
cd dataset
sh command_generate_tolerance_label.sh
Or you can download the tolerance labels from Google Drive/Baidu Pan and run:
mv tolerance.tar dataset/
cd dataset
tar -xvf tolerance.tar
Training examples are shown in command_train.sh. --dataset_root
, --camera
and --log_dir
should be specified according to your settings. You can use TensorBoard to visualize training process.
Testing examples are shown in command_test.sh, which contains inference and result evaluation. --dataset_root
, --camera
, --checkpoint_path
and --dump_dir
should be specified according to your settings. Set --collision_thresh
to -1 for fast inference.
The pretrained weights can be downloaded from:
checkpoint-rs.tar
[Google Drive] [Baidu Pan]checkpoint-kn.tar
[Google Drive] [Baidu Pan]
checkpoint-rs.tar
and checkpoint-kn.tar
are trained using RealSense data and Kinect data respectively.
A demo program is provided for grasp detection and visualization using RGB-D images. You can refer to command_demo.sh to run the program. --checkpoint_path
should be specified according to your settings (make sure you have downloaded the pretrained weights, we recommend the realsense model since it might transfer better). The output should be similar to the following example:
Try your own data by modifying get_and_process_data()
in demo.py. Refer to doc/example_data/ for data preparation. RGB-D images and camera intrinsics are required for inference. factor_depth
stands for the scale for depth value to be transformed into meters. You can also add a workspace mask for denser output.
Please cite our paper in your publications if it helps your research:
@misc{qian2024thinkgrasp,
title={ThinkGrasp: A Vision-Language System for Strategic Part Grasping in Clutter},
author={Yaoyao Qian and Xupeng Zhu and Ondrej Biza and Shuo Jiang and Linfeng Zhao and Haojie Huang and Yu Qi and Robert Platt},
year={2024},
eprint={2407.11298},
archivePrefix={arXiv},
primaryClass={cs.RO}
}
This work builds on and refers to the following projects:
@article{pytorchpointnet++,
Author = {Erik Wijmans},
Title = {Pointnet++ Pytorch},
Journal = {https://github.com/erikwijmans/Pointnet2_PyTorch},
Year = {2018}
}
@inproceedings{qi2017pointnet++,
title={Pointnet++: Deep hierarchical feature learning on point sets in a metric space},
author={Qi, Charles Ruizhongtai and Yi, Li and Su, Hao and Guibas, Leonidas J},
booktitle={Advances in Neural Information Processing Systems},
pages={5099--5108},
year={2017}
}
@article{fang2023robust,
title={Robust grasping across diverse sensor qualities: The GraspNet-1Billion dataset},
author={Fang, Hao-Shu and Gou, Minghao and Wang, Chenxi and Lu, Cewu},
journal={The International Journal of Robotics Research},
year={2023},
publisher={SAGE Publications Sage UK: London, England}
}
@inproceedings{fang2020graspnet,
title={GraspNet-1Billion: A Large-Scale Benchmark for General Object Grasping},
author={Fang, Hao-Shu and Wang, Chenxi and Gou, Minghao and Lu, Cewu},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
pages={11444--11453},
year={2020}
}
@INPROCEEDINGS{10161041,
author={Xu, Kechun and Zhao, Shuqi and Zhou, Zhongxiang and Li, Zizhang and Pi, Huaijin and Zhu, Yifeng and Wang, Yue and Xiong, Rong},
booktitle={2023 IEEE International Conference on Robotics and Automation (ICRA)},
title={A Joint Modeling of Vision-Language-Action for Target-oriented Grasping in Clutter},
year={2023},
pages={11597-11604},
doi={10.1109/ICRA48891.2023.10161041}
}
This project is licensed under the MIT License. See the LICENSE
file for more details.