harrim-nv commited on
Commit
0f8a58e
·
verified ·
1 Parent(s): ddc1ede

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +193 -0
README.md ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: LIBERO LeRobot v3
3
+ license: openmdw-1.0
4
+ library_name: lerobot
5
+ tags:
6
+ - robotics
7
+ - robot-learning
8
+ - libero
9
+ - lerobot
10
+ - LeRobotDataset-v3
11
+ ---
12
+
13
+ # LIBERO LeRobot v3
14
+
15
+ ## Dataset Summary
16
+
17
+ `nvidia/LIBERO_LeRobot_v3` is a LeRobotDataset v3.0 conversion of the LIBERO robot manipulation benchmark. LIBERO is designed for studying lifelong robot learning and knowledge transfer across language-conditioned manipulation tasks. This repository packages the LIBERO task suites as LeRobot-compatible datasets with Parquet state/action data, MP4 video observations, and LeRobot metadata.
18
+
19
+ The dataset is organized as five top-level suite folders:
20
+
21
+ - `libero_spatial`
22
+ - `libero_object`
23
+ - `libero_goal`
24
+ - `libero_90`
25
+ - `libero_10`
26
+
27
+ Each suite is stored independently in LeRobotDataset v3.0 format.
28
+
29
+ ## Dataset Details
30
+
31
+ ### Dataset Description
32
+
33
+ LIBERO, short for LIfelong learning BEnchmark on RObot manipulation, is a benchmark for studying lifelong learning in decision-making and robot manipulation. It focuses on knowledge transfer across tasks involving spatial relations, object manipulation, goal changes, and long-horizon behavior.
34
+
35
+ This version converts LIBERO demonstration data to the LeRobotDataset v3.0 standard. LeRobot v3.0 uses file-based Parquet and MP4 shards plus structured metadata, replacing per-episode files with chunked files that can contain multiple episodes.
36
+
37
+ ### Dataset Sources
38
+
39
+ - Repository: https://huggingface.co/datasets/nvidia/LIBERO_LeRobot_v3
40
+ - LIBERO project: https://libero-project.github.io/
41
+ - LIBERO paper: https://arxiv.org/abs/2306.03310
42
+ - LIBERO GitHub: https://github.com/Lifelong-Robot-Learning/LIBERO
43
+ - LeRobotDataset v3.0 documentation: https://huggingface.co/docs/lerobot/lerobot-dataset-v3
44
+
45
+ ## Uses
46
+
47
+ ### Direct Use
48
+
49
+ This dataset is intended for research and development in:
50
+
51
+ - imitation learning
52
+ - robot policy learning
53
+ - vision-language-action model training
54
+ - lifelong robot learning
55
+ - knowledge transfer evaluation
56
+ - language-conditioned manipulation
57
+ - LeRobot-compatible data loading, streaming, and training workflows
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ This dataset is not intended to be used as the sole validation source for safety-critical robot deployment. Policies trained on this dataset should be evaluated carefully before use in real-world physical systems.
62
+
63
+ ## Dataset Structure
64
+
65
+ The repository contains one LeRobotDataset v3.0 dataset per suite folder. Each suite follows the LeRobot v3 layout:
66
+
67
+ ```text
68
+ <suite>/
69
+ ├── data/
70
+ │ └── chunk-000/
71
+ │ └── file-*.parquet
72
+ ├── meta/
73
+ │ ├── info.json
74
+ │ ├── stats.json
75
+ │ ├── tasks.parquet
76
+ │ └── episodes/
77
+ │ └── chunk-000/
78
+ │ └── file-*.parquet
79
+ └── videos/
80
+ ├── observation.images.image/
81
+ │ └── chunk-000/
82
+ │ └── file-*.mp4
83
+ └── observation.images.wrist_image/
84
+ └── chunk-000/
85
+ └── file-*.mp4
86
+ ```
87
+
88
+ ### Suite Metadata
89
+
90
+ The following values are taken from each suite's `meta/info.json`.
91
+
92
+ | Suite | Episodes | Frames | Task IDs | FPS | Robot |
93
+ |---|---:|---:|---:|---:|---|
94
+ | `libero_10` | 379 | 101,469 | 10 | 20 | Franka |
95
+ | `libero_90` | 3,921 | 569,249 | 73 | 20 | Franka |
96
+ | `libero_object` | 454 | 66,984 | 10 | 20 | Franka |
97
+ | `libero_spatial` | 432 | 52,970 | 10 | 20 | Franka |
98
+ | `libero_goal` | 428 | 52,042 | 10 | 20 | Franka |
99
+ | **Total** | **5,614** | **842,714** | **113** | **20** | **Franka** |
100
+
101
+ Note: the upstream LIBERO task suite naming includes `LIBERO-90`; this converted repository's `libero_90/meta/info.json` reports 73 task IDs.
102
+
103
+ ### Features
104
+
105
+ Common feature fields include:
106
+
107
+ - `action`: 7-dimensional robot action vector.
108
+ - `observation.state`: 8-dimensional robot state vector.
109
+ - `observation.images.image`: RGB video observation, 256 x 256, 20 FPS, AV1 MP4.
110
+ - `observation.images.wrist_image`: RGB wrist-camera video observation, 256 x 256, 20 FPS, AV1 MP4.
111
+ - `timestamp`, `frame_index`, `episode_index`, `task_index`, and `index`.
112
+
113
+ The `libero_90` suite additionally includes:
114
+
115
+ - `observation.states.ee_state`
116
+ - `observation.states.gripper_state`
117
+ - `observation.states.joint_state`
118
+
119
+ ### File Format
120
+
121
+ - Tabular robot state/action data: Apache Parquet.
122
+ - Episode metadata: chunked Parquet under `meta/episodes/`.
123
+ - Task metadata: `meta/tasks.parquet`.
124
+ - Video observations: MP4 files under `videos/`.
125
+ - Dataset schema and statistics: `meta/info.json` and `meta/stats.json`.
126
+
127
+ ## Loading
128
+
129
+ Because this repository contains multiple LeRobot datasets under top-level suite folders, select the suite you want to use and point your local LeRobot workflow at that suite directory.
130
+
131
+ Example: download a single suite from the Hub.
132
+
133
+ ```python
134
+ from huggingface_hub import snapshot_download
135
+ from pathlib import Path
136
+
137
+ repo_dir = snapshot_download(
138
+ repo_id="nvidia/LIBERO_LeRobot_v3",
139
+ repo_type="dataset",
140
+ allow_patterns=["libero_spatial/**"],
141
+ )
142
+
143
+ suite_dir = Path(repo_dir) / "libero_spatial"
144
+ print(suite_dir)
145
+ ```
146
+
147
+ Use `suite_dir` as the local LeRobot dataset root in workflows that accept a local LeRobotDataset directory.
148
+
149
+ ## Dataset Creation
150
+
151
+ ### Source Data
152
+
153
+ The source data is derived from LIBERO, a benchmark for lifelong robot learning and language-conditioned robot manipulation. The LIBERO paper describes high-quality human-teleoperated demonstration data for the benchmark's tasks.
154
+
155
+ ### Conversion
156
+
157
+ This repository converts LIBERO data into LeRobotDataset v3.0. In LeRobot v3.0, data and video frames from multiple episodes are grouped into larger shard files, while metadata records episode boundaries, task IDs, feature schemas, statistics, and path templates.
158
+
159
+ ## Bias, Risks, and Limitations
160
+
161
+ - LIBERO is a simulation benchmark; results may not transfer directly to real-world robots.
162
+ - The converted dataset reflects the task distribution, object set, environments, and teleoperation behavior of the upstream LIBERO data.
163
+ - The repository does not provide a fixed train/validation/test split. Users should define splits appropriate to their evaluation protocol.
164
+ - The data is intended for research and development, not as a sole source of evidence for safe real-world deployment.
165
+ - Users should verify licensing and redistribution requirements for their intended use.
166
+
167
+ ## Personal and Sensitive Information
168
+
169
+ LIBERO is a robot manipulation benchmark in simulated environments. The dataset is not intended to contain personal or sensitive information.
170
+
171
+ ## Citation
172
+
173
+ If you use this dataset, please cite the original LIBERO paper:
174
+
175
+ ```bibtex
176
+ @inproceedings{liu2023libero,
177
+ title={LIBERO: Benchmarking Knowledge Transfer for Lifelong Robot Learning},
178
+ author={Liu, Bo and Zhu, Yifeng and Gao, Chongkai and Feng, Yihao and Liu, Qiang and Zhu, Yuke and Stone, Peter},
179
+ booktitle={Advances in Neural Information Processing Systems},
180
+ year={2023}
181
+ }
182
+ ```
183
+
184
+ Please also cite or reference LeRobot if you use LeRobot tooling or dataset loaders.
185
+
186
+ ## References
187
+
188
+ - LIBERO project page: https://libero-project.github.io/
189
+ - LIBERO arXiv paper: https://arxiv.org/abs/2306.03310
190
+ - LIBERO GitHub repository: https://github.com/Lifelong-Robot-Learning/LIBERO
191
+ - Hugging Face LeRobot LIBERO documentation: https://huggingface.co/docs/lerobot/en/libero
192
+ - LeRobotDataset v3.0 documentation: https://huggingface.co/docs/lerobot/lerobot-dataset-v3
193
+ - Porting large datasets to LeRobot v3.0: https://huggingface.co/docs/lerobot/main/porting_datasets_v3