Dataset Viewer (First 5GB)
Auto-converted to Parquet Duplicate
npz
dict
__key__
stringlengths
39
39
__url__
stringclasses
1 value
{"annotation_id":57,"gripper_cam_ex_mat":[0.9426956176757812,0.2849692702293396,-0.17354366183280945(...TRUNCATED)
packaged_ABC_D/training/episode_0000057
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":58,"gripper_cam_ex_mat":[0.9442887306213379,0.2804022431373596,-0.17231811583042145(...TRUNCATED)
packaged_ABC_D/training/episode_0000058
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":59,"gripper_cam_ex_mat":[0.9461313486099243,0.2737977206707001,-0.17283013463020325(...TRUNCATED)
packaged_ABC_D/training/episode_0000059
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":60,"gripper_cam_ex_mat":[0.9487746953964233,0.2668642997741699,-0.1691455990076065,(...TRUNCATED)
packaged_ABC_D/training/episode_0000060
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":61,"gripper_cam_ex_mat":[0.9506006240844727,0.2603018879890442,-0.1691196858882904,(...TRUNCATED)
packaged_ABC_D/training/episode_0000061
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":62,"gripper_cam_ex_mat":[0.9556597471237183,0.24353466928005219,-0.1655460298061370(...TRUNCATED)
packaged_ABC_D/training/episode_0000062
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":63,"gripper_cam_ex_mat":[0.9641517400741577,0.21259582042694092,-0.1587907522916793(...TRUNCATED)
packaged_ABC_D/training/episode_0000063
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":64,"gripper_cam_ex_mat":[0.9722407460212708,0.17906542122364044,-0.1506108939647674(...TRUNCATED)
packaged_ABC_D/training/episode_0000064
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":65,"gripper_cam_ex_mat":[0.9790199398994446,0.14930269122123718,-0.1386681497097015(...TRUNCATED)
packaged_ABC_D/training/episode_0000065
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
{"annotation_id":66,"gripper_cam_ex_mat":[0.9847591519355774,0.1189756840467453,-0.1268637329339981,(...TRUNCATED)
packaged_ABC_D/training/episode_0000066
"hf://datasets/FALCON-VLA/CALVIN-3D_PCD-ABC_D@9127ffba3259412d2a5c538cee5716443ac8bb34/packaged_ABC_(...TRUNCATED)
End of preview. Expand in Data Studio

| FALCON | From Spatial to Actions:
Grounding Vision-Language-Action Model in Spatial Foundation Priors (ICLR 2026)

arXiv Website GitHub Code: FALCON HF Paper: FALCON HF Model: FALCON
Python 3.8 PyTorch

Zhengshen ZhangHao LiYalun DaiZhengbang ZhuLei Zhou
Chenchen LiuDong WangFrancis E. H. TaySijin Chen
Ziwei LiuYuxiao Liu*Xinghang Li*Pan Zhou*

*Corresponding AuthorProject Lead


ByteDance Seed
National University of Singapore   Nanyang Technological University
Tsinghua University   Singapore Management University

🚀 Introduction

Existing vision-language-action (VLA) models act in 3D real-world but are typically built on 2D encoders, leaving a spatial reasoning gap that limits generalization and adaptability. In this work, we introduce FALCON (From Spatial to Action), a novel paradigm that injects rich 3D spatial tokens into the action head of a VLA model, enabling robust spatial understanding and SOTA performance across diverse manipulation tasks without disrupting vision-language alignment. See our paper at here.

Dataset Card for CALVIN Dataset_ABC-D in Point Cloud Format

Dataset Details

This dataset repo contains preprocessed point cloud data in world coordinate system from the static camera and wrist camera under the ABC-D setting (training/validation) of the Calvin dataset.

NOTE: The related camera extrinsic parameters are deprecated. For accurate static camera parameters, please refer to this repo.

Dataset Sources

📦 Usage

We provide an efficient way to download the dataset in shards, merge them into a single archive, and then extract the final data.

  1. Prepare a folder for downloaded parts
mkdir -p downloaded_parts/
  1. Download the dataset shards

You can use either the official Hugging Face CLI or the hfd.sh script:

Option A: Hugging Face CLI

huggingface-cli download FALCON-VLA/CALVIN-3D_PCD-ABC_D --repo-type dataset

Option B: High-speed download with hfd.sh (recommended)

# Install dependencies
sudo apt-get install aria2 git-lfs -y

# Download the helper script
wget https://hf-mirror.com/hfd/hfd.sh
chmod +x hfd.sh

# Download the dataset shards
./hfd.sh FALCON-VLA/CALVIN-3D_PCD-ABC_D --dataset --tool aria2c -x 8 -j 5 --include "*.tar.gz"
  1. Merge the downloaded shards

Make sure all shard files are placed under downloaded_parts/, then merge them into a single tarball:

cat downloaded_parts/packaged_ABC_D*.tar.gz > packaged_ABC_D.tar.gz
  1. Extract the merged archive
tar -xzvf ./packaged_ABC_D.tar.gz -C ./

After extraction, the dataset files will be available in the current directory.

For point cloud data loading details, please refer to our released data class DiskCalvinDataset3D.

Dataset Structure

After extraction, the dataset is organized as follows:

packaged_ABC_D/
├── training/
│   ├── episode_0000001.npz
│   ├── episode_0000002.npz
│   └── ...
└── validation/
    ├── episode_0000038.npz
    ├── episode_0000039.npz
    └── ...

Each .npz file corresponds to one episode and contains the following fields:

static_pcd: point cloud from the static camera view, shape: (200, 200, 3)
static_rgb: RGB image from the static camera view, shape: (200, 200, 3)
gripper_pcd: point cloud from the wrist camera view, shape: (84, 84, 3)
gripper_rgb: RGB image from the wrist camera view, shape: (84, 84, 3)
annotation_id: episode annotation identifier, type: int

Note: static_cam_ex_mat and gripper_cam_ex_mat are deprecated and are no longer used in the current pipeline.

🤗 FAQs

If you encounter any issues, feel free to open an issue or reach out through discussions. We appreciate your feedback and contributions! 🚀

🖊️ Citation

If you find this project useful in your research, please consider cite:

@article{zhang2025spatial,
  title={From spatial to actions: Grounding vision-language-action model in spatial foundation priors},
  author={Zhang, Zhengshen and Li, Hao and Dai, Yalun and Zhu, Zhengbang and Zhou, Lei and Liu, Chenchen and Wang, Dong and Tay, Francis EH and Chen, Sijin and Liu, Ziwei and others},
  journal={arXiv preprint arXiv:2510.17439},
  year={2025}
}
@article{mees2022calvin,
  title={Calvin: A benchmark for language-conditioned policy learning for long-horizon robot manipulation tasks},
  author={Mees, Oier and Hermann, Lukas and Rosete-Beas, Erick and Burgard, Wolfram},
  journal={IEEE Robotics and Automation Letters},
  volume={7},
  number={3},
  pages={7327--7334},
  year={2022},
  publisher={IEEE}
}

🪪 License

All datasets, as well as our codebase are released under the Apache-2.0 License.

❤️ Acknowledgement

FALCON is built with reference to the code of the following projects: RoboVLMs, Microsoft Kosmos-2, VGGT, and ManiUniCon. Thanks for their awesome work!

Downloads last month
182

Papers for FALCON-VLA/CALVIN-3D_PCD-ABC_D