Datasets:

ArXiv:
Jie86 commited on
Commit
71482e8
·
verified ·
1 Parent(s): 5de0ba3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ <div align="center">
5
+
6
+ # FastUMI-100K: Advancing Data-Driven Robotic Manipulation with a Large-Scale UMI-Style Dataset
7
+
8
+ ## [[paper](https://arxiv.org/abs/2510.08022)] [[dataset](https://huggingface.co/datasets/IPEC-COMMUNITY/FastUMI_100k_lerobot)]
9
+
10
+ </div>
11
+
12
+ <p align="center">
13
+ <img alt="teaser figure" src="./paper.png" width="90%">
14
+ </p>
15
+
16
+ ## Overview
17
+ FastUMI-100K is a large-scale, high-quality UMI-style dataset designed for data-driven robotic manipulation learning. Featuring over **100K+ demonstration trajectories** across **54 diverse tasks** and hundreds of object types, the dataset provides multi-view wrist-mounted fisheye images and high-frequency end-effector states. To facilitate seamless integration with modern robot learning frameworks, all data has been standardized into the **LeRobot v2.1** format.
18
+
19
+ ## Installation
20
+ To use the FastUMI-100K dataset, you need to install the official Hugging Face LeRobot library.
21
+ 1. Create and activate a conda environment
22
+ ```bash
23
+ conda create -n fastumi python=3.10 -y
24
+ conda activate fastumi
25
+ pip install huggingface_hub
26
+ ```
27
+ 2. Install LeRobot
28
+ ```bash
29
+ git clone https://github.com/huggingface/lerobot.git
30
+ cd lerobot
31
+ git checkout d602e8169cbad9e93a4a3b3ee1dd8b332af7ebf8
32
+ pip install -e .
33
+ ```
34
+ *(For advanced usage or compiling from source, please refer to the official [LeRobot repository](https://github.com/huggingface/lerobot).)*
35
+
36
+ ## Dataset Structure
37
+ The dataset is recorded at **20 FPS**. All states and actions are provided in the relative end-effector frame. The dataset is naturally divided into two main configurations:
38
+
39
+ ### Single-Arm Configuration
40
+ Used for tasks such as `take_items_out_of_drawer` and `wash_clothes` .
41
+ - **Observation Images:** Primary view camera `(720, 1280, 3)`
42
+ - **Observation State / Action:** 7-dimensional vector `[x, y, z, roll, pitch, yaw, gripper]`
43
+ - `0:3` Cartesian Position (x, y, z)
44
+ - `3:6` Orientation in Euler angles (roll, pitch, yaw)
45
+ - `6` Gripper width (normalized 0-1)
46
+
47
+ ### Dual-Arm Configuration
48
+ Used for bimanual tasks such as `Fold_the_Suit` and `Pack_Skincare_Products` .
49
+ - **Observation Images:** Left camera `(720, 1280, 3)` and Right camera `(720, 1280, 3)`
50
+ - **Observation State / Action:** 14-dimensional concatenated vector
51
+ - `0:6` Left Arm: `[left_x, left_y, left_z, left_roll, left_pitch, left_yaw, left_gripper]`
52
+ - `7:13` Right Arm: `[right_x, right_y, right_z, right_roll, right_pitch, right_yaw, right_gripper]`
53
+
54
+ ## Loading FastUMI-100K
55
+ It is straightforward to load and iterate through the dataset using the LeRobot API.
56
+
57
+ To load a single-arm task:
58
+ ```python
59
+ from huggingface_hub import snapshot_download
60
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
61
+
62
+ local_dir = snapshot_download(
63
+ repo_id="IPEC-COMMUNITY/FastUMI_100k_lerobot",
64
+ repo_type="dataset",
65
+ allow_patterns="single_arm/take_items_out_of_drawer/*",
66
+ local_dir="./my_local_dataset"
67
+ )
68
+
69
+ dataset_single = LeRobotDataset(root="./my_local_dataset/single_arm/take_items_out_of_drawer")
70
+
71
+ frame = dataset_single[0]
72
+ print(f"Single-arm action shape: {frame['action'].shape}")
73
+ ```
74
+
75
+ To load a dual-arm task:
76
+ ```python
77
+ from huggingface_hub import snapshot_download
78
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
79
+
80
+ snapshot_download(
81
+ repo_id="IPEC-COMMUNITY/FastUMI_100k_lerobot",
82
+ repo_type="dataset",
83
+ allow_patterns="dual_arm/Fold_the_Suit/*",
84
+ local_dir="./fastumi_local_data"
85
+ )
86
+
87
+ dataset_dual = LeRobotDataset(root="./fastumi_local_data/dual_arm/Fold_the_Suit")
88
+
89
+ frame = dataset_dual[0]
90
+ print(f"Dual-arm action shape: {frame['action'].shape}") # Expected: (14,)
91
+ ```
92
+
93
+
94
+
95
+ ## Citation
96
+ If you find our dataset or paper useful in your research, please cite:
97
+ ```bibtex
98
+ @article{liu2025fastumi100k,
99
+ title={{FastUMI-100K}: Advancing Data-driven Robotic Manipulation with a Large-scale {UMI}-style Dataset},
100
+ author={Liu, Kehui and Jia, Zhongjie and Li, Yang and Zhaxizhuoma and Chen, Pengan and Liu, Song and Liu, Xin and Zhang, Pingrui and Song, Haoming and Ye, Xinyi and Cao, Nieqing and Wang, Zhigang and Zeng, Jia and Wang, Dong and Ding, Yan and Zhao, Bin and Li, Xuelong},
101
+ journal={arXiv preprint arXiv:2510.08022},
102
+ year={2025},
103
+ eprint={2510.08022},
104
+ archivePrefix={arXiv},
105
+ primaryClass={cs.RO},
106
+ url={https://arxiv.org/abs/2510.08022}
107
+ }
108
+ ```