andvg3 / Grasp-Anything

Dataset and Code for ICRA 2024 paper "Grasp-Anything: Large-scale Grasp Dataset from Foundation Models."
https://airvlab.github.io/grasp-anything/
MIT License
108 stars 11 forks source link
grasp-dataset grasp-detection large-language-models

Grasp-Anything

This is the repository of the paper "Grasp-Anything: Large-scale Grasp Dataset from Foundation Models"

Table of contents

  1. Installation
  2. Datasets
  3. Training
  4. Testing

Installation

Datasets

Our dataset can be accessed via this link.

Training

We use GR-ConvNet as our default deep network. To train GR-ConvNet on different datasets, you can use the following command:

$ python train_network.py --dataset <dataset> --dataset-path <dataset> --description <your_description> --use-depth 0

For example, if you want to train a GR-ConvNet on Cornell, use the following command:

$ python train_network.py --dataset cornell --dataset-path data/cornell --description training_cornell --use-depth 0

We also provide training for other baselines, you can use the following command:

$ python train_network.py --dataset <dataset> --dataset-path <dataset> --description <your_description> --use-depth 0 --network <baseline_name>

For instance, if you want to train GG-CNN on Cornell, use the following command:

python train_network.py --dataset cornell --dataset-path data/cornell/ --description training_ggcnn_on_cornell --use-depth 0 --network ggcnn

Testing

For testing procedure, we can apply the similar commands to test different baselines on different datasets:

python evaluate.py --network <path_to_pretrained_network> --dataset <dataset> --dataset-path data/<dataset> --iou-eval

Important note: <path_to_pretrained_network> is the path to the pretrained model obtained by training procedure. Usually, the pretrained models obtained by training are stored at logs/<timstamp>_<training_description>. You can select the desired pretrained model to evaluate. We do not have to specify neural architecture as the codebase will automatically detect the neural architecture. Pretrained weights are available at this link.

Acknowledgement

Our codebase is developed based on Kumra et al..