--- license: cc-by-nc-nd-4.0 task_categories: - robotics tags: - LeRobot configs: - config_name: default data_files: data/*/*.parquet language: - en --- ⚠️ !!! 等待信息,填充链接
# Contents - [About the Dataset](#about-the-dataset) - [Dataset Structure](#dataset-structure) - [Folder hierarchy](#folder-hierarchy) - [Details](#details) - [Download the Dataset](#download-the-dataset) - [Load the Dataset](#get-started) - [License and Citation](#license-and-citation) # [About the Dataset](#contents) - This dataset was created using [LeRobot](https://github.com/huggingface/lerobot) - **~200 hours real world scenarios** across **1** main task, **3** sub tasks - A clothing organization task that involves identifying the type of clothing and determining the next action based on its category - **sub-tasks** - **Folding** - Randomly pick a piece of clothing from the basket and place it on the workbench - If it is a short T-shirt, fold it - **Hanging Preparation** - Randomly pick a piece of clothing from the basket and place it on the workbench - If it is a dress shirt, locate the collar and drag the clothing to the right side - **Hanging** - Hang the dress shirt properly # [Dataset Structure](#contents) ## [Folder hierarchy](#contents) ```text dataset_root/ ├── data/ │ ├── chunk-000/ │ │ ├── episode_000000.parquet │ │ ├── episode_000001.parquet │ │ └── ... │ └── ... ├── videos/ │ ├── chunk-000/ │ │ ├── observation.images.hand_left │ │ │ ├── episode_000000.mp4 │ │ │ ├── episode_000001.mp4 │ │ │ └── ... │ │ ├── observation.images.hand_right │ │ │ ├── episode_000000.mp4 │ │ │ ├── episode_000001.mp4 │ │ │ └── ... │ │ ├── observation.images.top_head │ │ │ ├── episode_000000.mp4 │ │ │ ├── episode_000001.mp4 │ │ │ └── ... │ │ └── ... ├── meta/ │ ├── info.json │ ├── episodes.jsonl │ ├── tasks.jsonl │ └── episodes_stats.jsonl └ README.md ``` ## [Details](#contents) ### info.json the basic struct of the [info.json](#meta/info.json) ```json { "codebase_version": "v2.1", "robot_type": "agilex", "total_episodes": ..., "total_frames": ..., "total_tasks": ..., "total_videos": ..., "total_chunks": ..., "chunks_size": ..., "fps": ..., "splits": { "train": ... }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", "features": { "observation.images.top_head": { "dtype": "video", "shape": [ 480, 640, 3 ], "names": [ "height", "width", "channel" ], "info": { "video.height": 480, "video.width": 640, "video.codec": "av1", "video.pix_fmt": "yuv420p", "video.is_depth_map": false, "video.fps": 30, "video.channels": 3, "has_audio": false } }, "observation.images.hand_left": { ... }, "observation.images.hand_right": { ... }, "observation.state": { "dtype": "float32", "shape": [ 14 ], "names": null }, "action": { "dtype": "float32", "shape": [ 14 ], "names": null }, "timestamp": { "dtype": "float32", "shape": [ 1 ], "names": null }, "frame_index": { "dtype": "int64", "shape": [ 1 ], "names": null }, "episode_index": { "dtype": "int64", "shape": [ 1 ], "names": null }, "index": { "dtype": "int64", "shape": [ 1 ], "names": null }, "task_index": { "dtype": "int64", "shape": [ 1 ], "names": null } } ``` ### [Parquet file format](#contents) | Field Name | shape | Meaning | |------------|-------------|-------------| | observation.state | [N, 14] |left `[:, :6]`, right `[:, 7:13]`, joint angle