Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,53 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-sa-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
pretty_name: 1X World Model Challenge Raw Dataset
|
| 4 |
+
size_categories:
|
| 5 |
+
- 10M<n<100M
|
| 6 |
+
viewer: false
|
| 7 |
+
---
|
| 8 |
+
Raw Dataset for the [1X World Model Challenge](https://github.com/1x-technologies/1xgpt).
|
| 9 |
+
|
| 10 |
+
Download with:
|
| 11 |
+
```
|
| 12 |
+
huggingface-cli download 1x-technologies/worldmodel_raw_data --repo-type dataset --local-dir data
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
Contents of train/val_v2.0:
|
| 17 |
+
|
| 18 |
+
The training dataset is shareded into 100 independent shards. The definitions are as follows:
|
| 19 |
+
|
| 20 |
+
- **video_{shard}.mp4**: Raw 512x512 video.
|
| 21 |
+
- **segment_idx_{shard}.bin** - Maps each frame `i` to its corresponding segment index. You may want to use this to separate non-contiguous frames from different videos (transitions).
|
| 22 |
+
- **states_{shard}.bin** - States arrays (defined below in `Index-to-State Mapping`) stored in `np.float32` format. For frame `i`, the corresponding state is represented by `states_{shard}[i]`.
|
| 23 |
+
- **metadata** - The `metadata.json` file provides high-level information about the entire dataset, while `metadata_{shard}.json` files contain specific details for each shard.
|
| 24 |
+
|
| 25 |
+
#### Index-to-State Mapping (NEW)
|
| 26 |
+
```
|
| 27 |
+
{
|
| 28 |
+
0: HIP_YAW
|
| 29 |
+
1: HIP_ROLL
|
| 30 |
+
2: HIP_PITCH
|
| 31 |
+
3: KNEE_PITCH
|
| 32 |
+
4: ANKLE_ROLL
|
| 33 |
+
5: ANKLE_PITCH
|
| 34 |
+
6: LEFT_SHOULDER_PITCH
|
| 35 |
+
7: LEFT_SHOULDER_ROLL
|
| 36 |
+
8: LEFT_SHOULDER_YAW
|
| 37 |
+
9: LEFT_ELBOW_PITCH
|
| 38 |
+
10: LEFT_ELBOW_YAW
|
| 39 |
+
11: LEFT_WRIST_PITCH
|
| 40 |
+
12: LEFT_WRIST_ROLL
|
| 41 |
+
13: RIGHT_SHOULDER_PITCH
|
| 42 |
+
14: RIGHT_SHOULDER_ROLL
|
| 43 |
+
15: RIGHT_SHOULDER_YAW
|
| 44 |
+
16: RIGHT_ELBOW_PITCH
|
| 45 |
+
17: RIGHT_ELBOW_YAW
|
| 46 |
+
18: RIGHT_WRIST_PITCH
|
| 47 |
+
19: RIGHT_WRIST_ROLL
|
| 48 |
+
20: NECK_PITCH
|
| 49 |
+
21: Left hand closure state (0 = open, 1 = closed)
|
| 50 |
+
22: Right hand closure state (0 = open, 1 = closed)
|
| 51 |
+
23: Linear Velocity
|
| 52 |
+
24: Angular Velocity
|
| 53 |
+
}
|