kmo-nvidia commited on
Commit
5a3a4bd
·
verified ·
1 Parent(s): b645b40

Add PointWorld DROID README

Browse files
Files changed (1) hide show
  1. README.md +100 -95
README.md CHANGED
@@ -1,59 +1,59 @@
1
- # PointWorld-DROID
2
 
3
- ## Dataset Description:
4
 
5
- PointWorld-DROID is the packaged DROID-derived annotation release used for training and evaluating the 3D world model PointWorld. It contains precomputed 3D annotations derived from the official DROID dataset, including episode-level 3D point trajectories, optimized camera metadata, optional downsampled depth, and the released expert confidence artifact used by the PointWorld DROID evaluation pipeline.
6
 
7
  This dataset is for research and development only.
8
 
9
  This Hugging Face repository hosts the packaged release, not the original raw DROID scenes and not prebuilt WebDataset shards. After download, users should restore the packaged archives to the canonical HDF5/JSON layout. From there, they can either use the files directly as 3D annotations or follow the PointWorld repository workflow for integrity checking, conversion, training, and evaluation.
10
 
11
- ## Dataset Owner(s):
12
 
13
- NVIDIA Corporation & Affiliates
14
 
15
- ## Dataset Creation Date:
16
 
17
- 2026
18
 
19
- ## License/Terms of Use:
20
 
21
- Dataset package and derived data annotations: CC BY-NC 4.0.
22
 
23
- Code and model checkpoints are separate artifacts and may be released under different licenses. Please refer to their respective repositories or model cards for their specific terms.
24
-
25
- ## Intended Usage:
26
 
27
  Research and development for world modeling, 3D vision, and robotic manipulation.
28
 
29
  This release is intended for two common use cases:
30
 
31
- 1. using the restored data with the released PointWorld codebase, and
32
- 2. using the restored 3D annotations directly, for example to access depth, camera poses, visibility masks, or tracked 3D point trajectories without using the PointWorld training pipeline.
 
 
33
 
34
- ## Dataset Characterization
35
 
36
- **Data Collection Method**
37
  * Hybrid: Human, Automatic/Sensors
38
 
39
- **Labeling Method**
 
40
  * Automatic/Sensors
41
 
42
- ## Dataset Format
43
 
44
  The release is distributed in two layers:
45
 
46
- 1. packaged Hugging Face download artifacts:
47
- - split compressed archives `package.tar.zst.part-*`
48
- - restore helper script `recover_dataset_from_parts.sh`
49
- 2. restored dataset contents:
50
- - episode-level HDF5 files (`.h5`)
51
- - camera metadata JSON sidecars (`.json`)
52
- - one auxiliary confidence HDF5 file for released DROID evaluation
53
 
54
  Restored canonical layout:
55
 
56
- ```text
57
  droid/
58
  cameras/
59
  *_cameras.json
@@ -67,50 +67,54 @@ droid/
67
 
68
  Local conversion to WebDataset train/test shards is supported by the PointWorld repository tooling.
69
 
70
- ## Dataset Quantification
71
 
72
  Current release package counts inspected from the restored release tree:
73
 
74
- - `42,935` episode-level `*_flows.h5` files
75
- - `42,935` episode-level `*_depth.h5` files
76
- - `42,935` camera JSON sidecars
77
- - `1` released expert-confidence HDF5 file
78
- - restored size on disk: about `4.65 TB`
79
- - packaged download size: about `3.91 TB`
 
 
80
 
81
- Each `*_flows.h5` file contains multiple clip groups keyed as `"{start}:{end}"`, so the corpus contains substantially more clips than files.
82
 
83
- ## Reference(s):
84
 
85
- - Project Website: https://point-world.github.io/
86
- - Paper: https://arxiv.org/abs/2601.03782
87
- - Code: https://github.com/NVlabs/PointWorld
88
- - Original DROID Dataset: https://droid-dataset.github.io/
89
- - Planned release location: NVIDIA Hugging Face `PointWorld-DROID`
90
 
91
- ## Ethical Considerations:
92
 
93
  NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with the applicable terms of service, developers should work with their internal developer teams to ensure this dataset meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
94
 
95
- ## Packaged Release Layout
 
 
96
 
97
  Archive groups in the packaged release:
98
 
99
- - `droid/flows-fs-optimized/package.tar.zst.part-*`
100
- - `droid/depth_320x180/package.tar.zst.part-*`
101
- - `droid/cameras/package.tar.zst.part-*`
102
- - `droid/confidence/package.tar.zst.part-*`
103
 
104
  In the inspected packaged build, these resolved to:
105
 
106
- - `545` parts for `flows-fs-optimized`
107
- - `252` parts for `depth_320x180`
108
- - `1` part for `cameras`
109
- - `1` part for `confidence`
110
 
111
- ## Restoring The Packaged Release
112
 
113
- ```bash
114
  huggingface-cli download nvidia/PointWorld-DROID \
115
  --repo-type dataset \
116
  --local-dir /path/to/PointWorld-DROID
@@ -125,76 +129,76 @@ bash recover_dataset_from_parts.sh \
125
 
126
  After restoration, the canonical dataset root is:
127
 
128
- ```text
129
  /path/to/pointworld_droid_restored/droid
130
  ```
131
 
132
- ## Use With The Released PointWorld Code
133
 
134
  For end-to-end instructions on integrity checking, HDF5-to-WebDataset conversion, training, and evaluation, please use the [PointWorld GitHub repository](https://github.com/NVlabs/PointWorld).
135
 
136
- ## Direct Use Of The 3D Annotations
137
 
138
  If you only want the annotations and do not plan to use the PointWorld training code, the restored files can be read directly.
139
 
140
- ### `*_flows.h5`
141
 
142
- Each DROID flow file is an episode-level HDF5 file. Clip groups are stored under keys of the form `"{start}:{end}"`.
143
 
144
  Per-clip robot-state datasets typically include:
145
 
146
- - `gripper_open`: `(T, 1)` `bool`
147
- - `gripper_pose`: `(T, 7)` `float32`
148
- - `gripper_positions`: `(T,)` `float32`
149
- - `joint_positions`: `(T, 7)` `float32`
150
- - optional arrays such as `joint_velocities` and `joint_torques`
151
 
152
- Each camera group, such as `camera_20103212_ext`, contains:
153
 
154
- - `initial_rgb`: `(1,)` HDF5 object dataset containing JPEG bytes
155
- - `initial_depth`: `(180, 320)` `uint16` depth in millimeters
156
- - `intrinsic`: `(3, 3)` `float32`
157
- - `extrinsic`: `(4, 4)` `float32`
158
- - `scene_flows`: `(T, N, 3)` `float16`
159
- - `scene_colors`: `(T, N, 3)` `uint8`
160
- - `scene_normals`: `(T, N, 3)` `int8`
161
- - `scene_visibility`: `(T, N)` `bool`
162
- - `scene_depth_valid_mask`: `(T, N)` `bool`
163
 
164
  Important notes:
165
 
166
- - DROID flow camera names ending in `_ext` are external cameras.
167
- - wrist-camera depth may exist in `*_depth.h5`, but wrist-camera point flows are not annotated in `flows-fs-optimized`
168
- - in these files, `scene_flows` stores tracked 3D point positions over time
169
 
170
- ### `*_depth.h5`
171
 
172
- Each depth file stores per-frame downsampled depth at `320x180`. Camera groups typically contain:
173
 
174
- - `depth`: `(F, 180, 320)` `uint16`
175
- - `timestamps`: `(F,)` `int64`
176
 
177
  The optional depth package is useful for analysis and downstream research. It is not intended to replace the full raw-to-annotation generation pipeline if your goal is to reproduce PointWorld's annotation generation from raw DROID data.
178
 
179
- ### `*_cameras.json`
180
 
181
  Each JSON sidecar stores optimized camera metadata for one episode and includes fields such as:
182
 
183
- - `uuid`
184
- - `scene_path`
185
- - `optimization_success`
186
- - `optimization_summary`
187
- - one entry per camera serial containing `optimized_extrinsics`
188
 
189
  The released camera JSONs are retained for optimization-success episodes only.
190
 
191
- ### `expert_confidence-seed=42.h5`
192
 
193
  This file is an auxiliary DROID evaluation artifact used by the released PointWorld DROID test pipeline. If you are not reproducing the PointWorld filtered DROID metrics, you can ignore it.
194
 
195
- ## Reading The Files In Python
196
 
197
- ```python
198
  import io
199
  import h5py
200
  import numpy as np
@@ -230,18 +234,18 @@ with h5py.File(path, "r") as f:
230
  scene_depth_valid_mask = cam["scene_depth_valid_mask"][:]
231
  ```
232
 
233
- ## Data Notes
234
 
235
- - `initial_rgb` decodes to standard RGB image values in `[0, 255]`.
236
- - `initial_depth` and depth stacks are stored as `uint16` millimeters. Convert to meters with `depth_mm.astype(np.float32) / 1000.0`.
237
- - in tested DROID samples, `initial_depth` included zero-valued pixels, so downstream code should treat zero as potentially missing depth where appropriate
238
- - `scene_normals` are stored as `int8` using `[-127, 127]` quantization. A typical decode is `normals_i8.astype(np.float32) / 127.0`.
239
 
240
- ## Citation
241
 
242
  If you use this dataset, please cite the PointWorld paper and the original DROID dataset.
243
 
244
- ```bibtex
245
  @article{huang2026pointworld,
246
  title={PointWorld: Scaling 3D World Models for In-The-Wild Robotic Manipulation},
247
  author={Huang, Wenlong and Chao, Yu-Wei and Mousavian, Arsalan and Liu, Ming-Yu and Fox, Dieter and Mo, Kaichun and Li, Fei-Fei},
@@ -249,3 +253,4 @@ If you use this dataset, please cite the PointWorld paper and the original DROID
249
  year={2026}
250
  }
251
  ```
 
 
1
+ # **PointWorld-DROID**
2
 
3
+ ## **Dataset Description:**
4
 
5
+ PointWorld-DROID is the packaged DROID-derived annotation release used for training and evaluating the 3D world model, PointWorld. It contains precomputed 3D annotations derived from the official DROID dataset, including episode-level 3D point trajectories, optimized camera metadata, optional downsampled depth, and the released expert confidence artifact used by the PointWorld DROID evaluation pipeline.
6
 
7
  This dataset is for research and development only.
8
 
9
  This Hugging Face repository hosts the packaged release, not the original raw DROID scenes and not prebuilt WebDataset shards. After download, users should restore the packaged archives to the canonical HDF5/JSON layout. From there, they can either use the files directly as 3D annotations or follow the PointWorld repository workflow for integrity checking, conversion, training, and evaluation.
10
 
11
+ ## **Dataset Owner(s):**
12
 
13
+ NVIDIA Corporation
14
 
15
+ ## **Dataset Creation Date:**
16
 
17
+ 04/15/2026
18
 
19
+ ## **License/Terms of Use:**
20
 
21
+ NVIDIA License
22
 
23
+ ## **Intended Usage:**
 
 
24
 
25
  Research and development for world modeling, 3D vision, and robotic manipulation.
26
 
27
  This release is intended for two common use cases:
28
 
29
+ 1. Using the restored data with the released PointWorld codebase, and
30
+ 2. Using the restored 3D annotations directly, for example to access depth, camera poses, visibility masks, or tracked 3D point trajectories without using the PointWorld training pipeline.
31
+
32
+ ## **Dataset Characterization**
33
 
34
+ Data Collection Method
35
 
 
36
  * Hybrid: Human, Automatic/Sensors
37
 
38
+ Labeling Method
39
+
40
  * Automatic/Sensors
41
 
42
+ ## **Dataset Format**
43
 
44
  The release is distributed in two layers:
45
 
46
+ 1. packaged Hugging Face download artifacts:
47
+ * split compressed archives package.tar.zst.part-\*
48
+ * restore helper script recover\_dataset\_from\_parts.sh
49
+ 2. restored dataset contents:
50
+ * episode-level HDF5 files (.h5)
51
+ * camera metadata JSON sidecars (.json)
52
+ * one auxiliary confidence HDF5 file for released DROID evaluation
53
 
54
  Restored canonical layout:
55
 
56
+ ```
57
  droid/
58
  cameras/
59
  *_cameras.json
 
67
 
68
  Local conversion to WebDataset train/test shards is supported by the PointWorld repository tooling.
69
 
70
+ ## **Dataset Quantification**
71
 
72
  Current release package counts inspected from the restored release tree:
73
 
74
+ * 42,935 episode-level \*\_flows.h5 files
75
+ * 42,935 episode-level \*\_depth.h5 files
76
+ * 42,935 camera JSON sidecars
77
+ * 1 released expert-confidence HDF5 file
78
+ * restored size on disk: about 4.65 TB
79
+ * packaged download size: about 3.91 TB
80
+
81
+ Each \*\_flows.h5 file contains multiple clip groups keyed as "{start}:{end}", so the corpus contains substantially more clips than files.
82
 
83
+ Measurement of Total Data Storage: 3.91 TB
84
 
85
+ ## **Reference(s):**
86
 
87
+ * Project Website: [https://point-world.github.io/](https://point-world.github.io/)
88
+ * Paper: [https://arxiv.org/abs/2601.03782](https://arxiv.org/abs/2601.03782)
89
+ * Code: [https://github.com/NVlabs/PointWorld](https://github.com/NVlabs/PointWorld)
90
+ * Original DROID Dataset: [https://droid-dataset.github.io/](https://droid-dataset.github.io/)
91
+ * Planned release location: NVIDIA Hugging Face PointWorld-DROID
92
 
93
+ ## **Ethical Considerations:**
94
 
95
  NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with the applicable terms of service, developers should work with their internal developer teams to ensure this dataset meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
96
 
97
+ Please report quality, risk, security vulnerabilities or NVIDIA AI Concerns [here](https://www.nvidia.com/en-us/support/submit-security-vulnerability/).
98
+
99
+ ## **Packaged Release Layout**
100
 
101
  Archive groups in the packaged release:
102
 
103
+ * droid/flows-fs-optimized/package.tar.zst.part-\*
104
+ * droid/depth\_320x180/package.tar.zst.part-\*
105
+ * droid/cameras/package.tar.zst.part-\*
106
+ * droid/confidence/package.tar.zst.part-\*
107
 
108
  In the inspected packaged build, these resolved to:
109
 
110
+ * 545 parts for flows-fs-optimized
111
+ * 252 parts for depth\_320x180
112
+ * 1 part for cameras
113
+ * 1 part for confidence
114
 
115
+ ## **Restoring The Packaged Release**
116
 
117
+ ```shell
118
  huggingface-cli download nvidia/PointWorld-DROID \
119
  --repo-type dataset \
120
  --local-dir /path/to/PointWorld-DROID
 
129
 
130
  After restoration, the canonical dataset root is:
131
 
132
+ ```
133
  /path/to/pointworld_droid_restored/droid
134
  ```
135
 
136
+ ## **Use With The Released PointWorld Code**
137
 
138
  For end-to-end instructions on integrity checking, HDF5-to-WebDataset conversion, training, and evaluation, please use the [PointWorld GitHub repository](https://github.com/NVlabs/PointWorld).
139
 
140
+ ## **Direct Use Of The 3D Annotations**
141
 
142
  If you only want the annotations and do not plan to use the PointWorld training code, the restored files can be read directly.
143
 
144
+ ### \*\_flows.h5
145
 
146
+ Each DROID flow file is an episode-level HDF5 file. Clip groups are stored under keys of the form "{start}:{end}".
147
 
148
  Per-clip robot-state datasets typically include:
149
 
150
+ * gripper\_open: (T, 1\) bool
151
+ * gripper\_pose: (T, 7\) float32
152
+ * gripper\_positions: (T,) float32
153
+ * joint\_positions: (T, 7\) float32
154
+ * optional arrays such as joint\_velocities and joint\_torques
155
 
156
+ Each camera group, such as camera\_20103212\_ext, contains:
157
 
158
+ * initial\_rgb: (1,) HDF5 object dataset containing JPEG bytes
159
+ * initial\_depth: (180, 320\) uint16 depth in millimeters
160
+ * intrinsic: (3, 3\) float32
161
+ * extrinsic: (4, 4\) float32
162
+ * scene\_flows: (T, N, 3\) float16
163
+ * scene\_colors: (T, N, 3\) uint8
164
+ * scene\_normals: (T, N, 3\) int8
165
+ * scene\_visibility: (T, N) bool
166
+ * scene\_depth\_valid\_mask: (T, N) bool
167
 
168
  Important notes:
169
 
170
+ * DROID flow camera names ending in \_ext are external cameras.
171
+ * wrist-camera depth may exist in \*\_depth.h5, but wrist-camera point flows are not annotated in flows-fs-optimized
172
+ * in these files, scene\_flows stores tracked 3D point positions over time
173
 
174
+ ### \*\_depth.h5
175
 
176
+ Each depth file stores per-frame downsampled depth at 320x180. Camera groups typically contain:
177
 
178
+ * depth: (F, 180, 320\) uint16
179
+ * timestamps: (F,) int64
180
 
181
  The optional depth package is useful for analysis and downstream research. It is not intended to replace the full raw-to-annotation generation pipeline if your goal is to reproduce PointWorld's annotation generation from raw DROID data.
182
 
183
+ ### \*\_cameras.json
184
 
185
  Each JSON sidecar stores optimized camera metadata for one episode and includes fields such as:
186
 
187
+ * uuid
188
+ * scene\_path
189
+ * optimization\_success
190
+ * optimization\_summary
191
+ * one entry per camera serial containing optimized\_extrinsics
192
 
193
  The released camera JSONs are retained for optimization-success episodes only.
194
 
195
+ ### expert\_confidence-seed=42.h5
196
 
197
  This file is an auxiliary DROID evaluation artifact used by the released PointWorld DROID test pipeline. If you are not reproducing the PointWorld filtered DROID metrics, you can ignore it.
198
 
199
+ ## **Reading The Files In Python**
200
 
201
+ ```py
202
  import io
203
  import h5py
204
  import numpy as np
 
234
  scene_depth_valid_mask = cam["scene_depth_valid_mask"][:]
235
  ```
236
 
237
+ ## **Data Notes**
238
 
239
+ * initial\_rgb decodes to standard RGB image values in \[0, 255\].
240
+ * initial\_depth and depth stacks are stored as uint16 millimeters. Convert to meters with depth\_mm.astype(np.float32) / 1000.0.
241
+ * in tested DROID samples, initial\_depth included zero-valued pixels, so downstream code should treat zero as potentially missing depth where appropriate
242
+ * scene\_normals are stored as int8 using \[-127, 127\] quantization. A typical decode is normals\_i8.astype(np.float32) / 127.0.
243
 
244
+ ## **Citation**
245
 
246
  If you use this dataset, please cite the PointWorld paper and the original DROID dataset.
247
 
248
+ ```
249
  @article{huang2026pointworld,
250
  title={PointWorld: Scaling 3D World Models for In-The-Wild Robotic Manipulation},
251
  author={Huang, Wenlong and Chao, Yu-Wei and Mousavian, Arsalan and Liu, Ming-Yu and Fox, Dieter and Mo, Kaichun and Li, Fei-Fei},
 
253
  year={2026}
254
  }
255
  ```
256
+