yuanty commited on
Commit
d434b43
·
verified ·
1 Parent(s): ff9cdb9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +5 -51
README.md CHANGED
@@ -7,19 +7,14 @@ tags:
7
  - imitation-learning
8
  - lerobot
9
  - video
10
- - timeseries
11
- - reinforcement-learning
12
- - multimodal
13
  - embodied-ai
14
- - english
15
- - tabular
16
  ---
17
 
18
  # RobotWin 2.0 (Preprocessed LeRobot v2.1 Release)
19
 
20
  This repository releases **our preprocessed RoboTwin / RobotWin 2.0 dataset** in LeRobot `v2.1` format for the open-source release of **Fast-WAM: Do World Action Models Need Test-time Future Imagination?**
21
 
22
- This is **not** the official upstream RoboTwin release. Instead, it is our paper-specific processed version prepared to support training, evaluation, and reproducibility for our project.
23
 
24
  This Hugging Face repository distributes the dataset as split `.tar.gz` archives to make large-scale download and release management easier. After extraction, the recovered dataset keeps the original LeRobot `v2.1` directory structure.
25
 
@@ -39,14 +34,10 @@ robotwin2.0.tar.gz.part-07
39
  - Provenance: preprocessed from RoboTwin 2.0 for the Fast-WAM open-source release
40
  - Format: LeRobot `v2.1`
41
  - Robot type: `aloha`
42
- - Split: `train`
43
  - Episodes: `27,500`
44
  - Frames: `6,075,103`
45
- - Language instructions: `921,032`
46
- - Camera streams: `82,500` video files across `3` views
47
- - FPS: `50`
48
- - Joint state dimension: `14`
49
- - Action dimension: `14`
50
 
51
  ## Project
52
 
@@ -54,39 +45,6 @@ robotwin2.0.tar.gz.part-07
54
  - Paper: https://arxiv.org/abs/2603.16666
55
  - Code repository: https://github.com/yuantianyuan01/FastWAM
56
 
57
- ## Attribution and Scope
58
-
59
- This dataset is derived from RoboTwin 2.0, but the release here is the **preprocessed version used in our own paper**.
60
-
61
- Use this repository if you want the exact data layout used by our codebase and experiments. If you want the original RoboTwin release, please refer to the official RoboTwin project links listed below.
62
-
63
- ## Modalities
64
-
65
- - Low-dimensional observations: `observation.state` (`float32`, shape `[14]`)
66
- - Actions: `action` (`float32`, shape `[14]`)
67
- - Images:
68
- - `observation.images.cam_high`
69
- - `observation.images.cam_left_wrist`
70
- - `observation.images.cam_right_wrist`
71
- - Video encoding:
72
- - Resolution: `480x640`
73
- - Codec: `av1`
74
- - Pixel format: `yuv420p`
75
-
76
- ## Directory Layout
77
-
78
- After extraction, the dataset uses the LeRobot `v2.1` layout:
79
-
80
- ```text
81
- robotwin2.0/
82
- data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet
83
- videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4
84
- meta/info.json
85
- meta/tasks.jsonl
86
- meta/episodes.jsonl
87
- meta/episodes_stats.jsonl
88
- ```
89
-
90
  ## Download and Extract
91
 
92
  Download all archive parts from this repository, then reconstruct and extract the dataset with:
@@ -104,11 +62,7 @@ robotwin2.0/
104
  videos/
105
  ```
106
 
107
- ## Loading
108
-
109
- This dataset is released in LeRobot `v2.1` format after extraction. Please use a loader compatible with that format.
110
-
111
- If you use this repository's local compatibility code, see the LeRobot dataset implementation under `src/fastwam/datasets/lerobot/`.
112
 
113
  ## Notes
114
 
@@ -123,7 +77,7 @@ It is released under the MIT license, consistent with the upstream RoboTwin 2.0
123
 
124
  ## Citation
125
 
126
- If you use this release, please cite the Fast-WAM paper, since this repository distributes the processed version used by that project.
127
 
128
  ```bibtex
129
  @misc{yuan2026fastwam,
 
7
  - imitation-learning
8
  - lerobot
9
  - video
 
 
 
10
  - embodied-ai
 
 
11
  ---
12
 
13
  # RobotWin 2.0 (Preprocessed LeRobot v2.1 Release)
14
 
15
  This repository releases **our preprocessed RoboTwin / RobotWin 2.0 dataset** in LeRobot `v2.1` format for the open-source release of **Fast-WAM: Do World Action Models Need Test-time Future Imagination?**
16
 
17
+ This is not the official upstream RoboTwin release. It is our paper-specific processed version prepared to support training, evaluation, and reproducibility for our project.
18
 
19
  This Hugging Face repository distributes the dataset as split `.tar.gz` archives to make large-scale download and release management easier. After extraction, the recovered dataset keeps the original LeRobot `v2.1` directory structure.
20
 
 
34
  - Provenance: preprocessed from RoboTwin 2.0 for the Fast-WAM open-source release
35
  - Format: LeRobot `v2.1`
36
  - Robot type: `aloha`
37
+ - FPS: `50`
38
  - Episodes: `27,500`
39
  - Frames: `6,075,103`
40
+ - Number of archive parts: `8`
 
 
 
 
41
 
42
  ## Project
43
 
 
45
  - Paper: https://arxiv.org/abs/2603.16666
46
  - Code repository: https://github.com/yuantianyuan01/FastWAM
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ## Download and Extract
49
 
50
  Download all archive parts from this repository, then reconstruct and extract the dataset with:
 
62
  videos/
63
  ```
64
 
65
+ After extraction, the dataset can be loaded as a standard LeRobot `v2.1` dataset.
 
 
 
 
66
 
67
  ## Notes
68
 
 
77
 
78
  ## Citation
79
 
80
+ If you use this release, please cite the Fast-WAM paper.
81
 
82
  ```bibtex
83
  @misc{yuan2026fastwam,