[CoRL25] GraspVLA: a Grasping Foundation Model Pre-trained on Billion-scale Synthetic Action Data
[CoRL25] GraspVLA: a Grasping Foundation Model Pre-trained on Billion-scale Synthetic Action Data
Model Server | Train on SynGrasp-1B | Simulation Playground | Real World Control Interface
We present a cost-effective pretraining paradigm for VLA models using only synthetic data, achieving direct sim-to-real transfer and strong zero-shot generalizability for robotic grasping. Key contributions include:
SynGrasp-1B: a billion-frame synthetic grasping dataset, spanning 240 object categories and 10,000+ objects.
GraspVLA: a VLA model pretrained on SynGrasp-1B that achieves zero-shot generalization to real-world grasping without fine-tuning.
Unified CoT Framework: GraspVLA integrates autoregressive perception and flow-matching-based action generation into a single reasoning process, enabling joint training on synthetic action data and internet-scale semantic data for open-vocabulary grasping.
Please follow the steps below to start the model server. We provide the checkpoint of GraspVLA on huggingface. GraspVLA achieves 200ms inference latency using ~9GB of GPU memory when running on a single NVIDIA RTX L40s GPU.
git clone https://github.com/PKU-EPIC/GraspVLA
cd GraspVLA
Install uv and synchronize the locked Python environment:
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
uv sync --locked
Serving requires a complete experiment directory:
/
├── config.json
├── preprocessor.npz
└── checkpoint-/
└── model.safetensors
The configuration and preprocessor must come from the same training experiment as the checkpoint.
If you want to download our model weight from huggingface:
pip install -U "huggingface_hub"
# set HF_ENDPOINT if you encounter connection issues:
# export HF_ENDPOINT=https://hf-mirror.com
hf download vegebirrd/GraspVLA
The model weight will be placed at ~/.cache/huggingface/hub/models--vegebirrd--GraspVLA/snapshots/e0b642edc7dfdf8e76cb7883320a0bbd85145f53.
Run the model server with your desired configuration, for example:
uv run --no-sync python -u -m vla_network.scripts.serve \
--port 6666 \
--path you-path-to-model.safetensors \
--batch-size 1
--path — Path to checkpoint-/model.safetensors.--port — Port number on which the server will listen for incoming requests.--batch-size — Maximum inference batch size (default: 1).--batching-delay — Maximum request batching delay in milliseconds (default: 80).--compile — Enable model compilation (default: False). Speeds up inference (500ms →
200ms) but adds ~3 minutes to startup time. Recommended for large-scale evaluations (e.
g., LIBERO benchmark).The server is ready when it logs start serving.
Serving also needs the InternLM backbone (internlm/internlm2-1_8b). The loader
uses the following priority:
$VLA_STORAGE_PATH/ckpt/pretrained/internlm/internlm2-1_8b exists, load from
that local directory.For training, VLA_STORAGE_PATH is still recommended because experiment
checkpoints and preprocessors are written to
$VLA_STORAGE_PATH/ckpt/exp//.
With the server running, send a generated mock request and save the predicted side/front bounding boxes:
uv run --no-sync python -m vla_network.scripts.offline_test \
--port 6666 \
--output visualization/offline_test.png
To compare against a recorded request/response pair:
uv run --no-sync python -m vla_network.scripts.offline_test \
--port 6666 \
--input visualization/trial_data.npy \
--output visualization/comparison.png
We have released the SynGrasp-1B dataset on huggingface.
pip install -U "huggingface_hub"
# set HF_ENDPOINT if you encounter connection issues:
# export HF_ENDPOINT=https://hf-mirror.com
DATASET_ROOT=/path/to/SynGrasp-1B
hf download vegebirrd/SynGrasp-1B --repo-type dataset --local-dir "$DATASET_ROOT"
torchrunWe provide an example that works for both one and multiple nodes and uses one sample per GPU with gradient accumulation:
…
Key arguments:
--nnodes — Total number of training nodes.--nproc-per-node — Worker/GPU processes started on each node.--node-rank — Zero-based index of the current node.--master-addr, --master-port — Address used by all nodes to form the
distributed process group.--exp_name — Experiment directory name under ckpt/exp/.--train_datasets, --val_datasets — Comma-separated
path,dataset_type,weight specifications. This repository supports
lerobot_franka_dataset.--num_workers — DataLoader worker processes per training process.--count_num — Number of samples used to estimate normalization
statistics.--allow_resume 0/1 — If 1 and the output directory already contains
checkpoints, resume training from the latest checkpoint in that
directory.--ckpt — Initialize model weights from a
checkpoint file (for example, a previously saved
checkpoint-/model.safetensors).--reuse_preprocessor 0 — Recompute and save normalization statistics;
use 1 when resuming with a compatible existing preprocessor.npz.--global_bs — Effective batch size across all GPUs and gradient
accumulation steps. It must be divisible by device_bs × NNODES × NUM_GPUS。--device_bs — Samples processed by each GPU per forward/backward pass.--max_steps — Total optimizer-update steps.--save_step — Checkpoint interval in optimizer-update steps.--deepspeed none — Disable DeepSpeed.--fsdp full_shard — Shard parameters, gradients, and optimizer states
across workers.--grad_ckpt 1 — Reduce activation memory through recomputation.--pred — Prediction mode. This repo supports four options:token_pred — Autoregressively predict the token sequence (e.g. goal
and/or bbox tokens depending on supervision), then predict actions
from the token head.flow_matching — Predict actions directly with the flow-matching
module (no autoregressive goal/bbox token generation). Note: this mode
is not implemented in predict()/serve for now.cot_bbox_flow_matching — COT-style bbox: autoregressively predict
bbox tokens (no goal token), then predict actions with flow matching.cot_flow_matching — COT-style: autoregressively predict bbox + goal
tokens, then predict actions with flow matching.--action_expert 1 — Enable the separate action-expert transformer.--backbone_2d dinosiglip — Use the DINOv2/SigLIP vision backbone.--image_keys left,right — Model camera order.--dt — Time interval in seconds between sampled trajectory steps.--proprio_steps — Number of historical/current proprioception steps.--action_steps — Number of future actions predicted per sample.--max_proprio_dim, --max_action_dim, --max_goal_dim — Padded vector
dimensions expected by the model.High-level overview of vla_network file-tree:
config/ — Pydantic model/training configuration and command-line overrides.datasample/ — Base and LeRobot VLA data sample schemas.dataset/ — LeRobot Franka loading, streaming, mixing, and dataset setup.model/ — Code for defining and loading the main model structure.preprocessor/ — Tools for preprocessing raw data into model-ready formats.scripts/ — Training, serving, and offline server-test entrypoints.type/ — Data type definitions used in our model.utils/ — Checkpoint, path, logging, tokenization, and LeRobot streaming helpers.We provide a simulation playground for GraspVLA here: GraspVLA-playground. This repository includes both the evaluation code used for GraspVLA in the LIBERO benchmark and an enhanced playground environment built on top of it. The playground provides an easy-to-use interface to evaluate GraspVLA across diverse objects, layouts, and environments.
We provide a real-world control interface for deploying GraspVLA in physical environments. This interface enables:
Zero-shot evaluation on real-world objects.
Both blocking and non-blocking control modes.
Real-time visualization of intermediate COT results, including 2D bounding boxes and 3D grasp poses.
If you find this work useful, please cite:
@article{deng2025graspvla,
title={GraspVLA: a Grasping Foundation Model Pre-trained on Billion-scale Synthetic Action Data},
author={Shengliang Deng and Mi Yan and Songlin Wei and Haixin Ma and Yuxin Yang and Jiayi Chen and Zhiqi Zhang and Taoyu Yang and Xuheng Zhang and Wenhao Zhang and Heming Cui and Zhizheng Zhang and He Wang},
year={2025},
eprint={2505.03233},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2505.03233}
}
No open issues yet, or sync has not completed.