Update README.md
Browse files
README.md
CHANGED
|
@@ -55,10 +55,6 @@ configs:
|
|
| 55 |
path: RBY1PickDataGenConfig/val_pkgs-*
|
| 56 |
- split: train_pkgs
|
| 57 |
path: RBY1PickDataGenConfig/train_pkgs-*
|
| 58 |
-
- config_name: mujoco-training-data__franka-rby1-training-data__FrankaPickAndPlaceOmniCamConfig_ObjectBackfill__20260324
|
| 59 |
-
data_files:
|
| 60 |
-
- split: pkgs
|
| 61 |
-
path: mujoco-training-data__franka-rby1-training-data__FrankaPickAndPlaceOmniCamConfig_ObjectBackfill__20260324/pkgs-*
|
| 62 |
dataset_info:
|
| 63 |
- config_name: DoorOpeningDataGenConfig
|
| 64 |
features:
|
|
@@ -264,24 +260,6 @@ dataset_info:
|
|
| 264 |
num_examples: 30750
|
| 265 |
download_size: 1767900
|
| 266 |
dataset_size: 5237590
|
| 267 |
-
- config_name: mujoco-training-data__franka-rby1-training-data__FrankaPickAndPlaceOmniCamConfig_ObjectBackfill__20260324
|
| 268 |
-
features:
|
| 269 |
-
- name: path
|
| 270 |
-
dtype: string
|
| 271 |
-
- name: shard_id
|
| 272 |
-
dtype: int64
|
| 273 |
-
- name: offset
|
| 274 |
-
dtype: int64
|
| 275 |
-
- name: size
|
| 276 |
-
dtype: int64
|
| 277 |
-
- name: inflated_size
|
| 278 |
-
dtype: int64
|
| 279 |
-
splits:
|
| 280 |
-
- name: pkgs
|
| 281 |
-
num_bytes: 2673706
|
| 282 |
-
num_examples: 26239
|
| 283 |
-
download_size: 660012
|
| 284 |
-
dataset_size: 2673706
|
| 285 |
tags:
|
| 286 |
- robotics
|
| 287 |
- embodied ai
|
|
@@ -327,14 +305,18 @@ A standalone example of how to access the episode data via streaming is also inc
|
|
| 327 |
|
| 328 |
### Dataset post-processing and stats
|
| 329 |
|
| 330 |
-
After bulk downloading, please use
|
|
|
|
| 331 |
- [validate_trajectories.py](validate_trajectories.py) to extract valid trajectories from each dataset and part, and
|
| 332 |
- [calculate_stats.py](calculate_stats.py) to extract dataset stats.
|
| 333 |
|
| 334 |
For example:
|
| 335 |
```bash
|
| 336 |
-
|
| 337 |
-
|
|
|
|
|
|
|
|
|
|
| 338 |
```
|
| 339 |
|
| 340 |
## License
|
|
|
|
| 55 |
path: RBY1PickDataGenConfig/val_pkgs-*
|
| 56 |
- split: train_pkgs
|
| 57 |
path: RBY1PickDataGenConfig/train_pkgs-*
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
dataset_info:
|
| 59 |
- config_name: DoorOpeningDataGenConfig
|
| 60 |
features:
|
|
|
|
| 260 |
num_examples: 30750
|
| 261 |
download_size: 1767900
|
| 262 |
dataset_size: 5237590
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
tags:
|
| 264 |
- robotics
|
| 265 |
- embodied ai
|
|
|
|
| 305 |
|
| 306 |
### Dataset post-processing and stats
|
| 307 |
|
| 308 |
+
After bulk downloading data, please use
|
| 309 |
+
- [repair_video_paths.py](repair_video_paths.py) to fix video paths,
|
| 310 |
- [validate_trajectories.py](validate_trajectories.py) to extract valid trajectories from each dataset and part, and
|
| 311 |
- [calculate_stats.py](calculate_stats.py) to extract dataset stats.
|
| 312 |
|
| 313 |
For example:
|
| 314 |
```bash
|
| 315 |
+
export SPLIT_DIR=/path/to/DoorOpeningDataGenConfig/part0/train
|
| 316 |
+
|
| 317 |
+
python scripts/data/repair_video_paths.py "$SPLIT_DIR"
|
| 318 |
+
python scripts/data/validate_trajectories.py "$SPLIT_DIR" --check-visibility droid_shoulder_light_randomization pickup_obj --check-visibility droid_shoulder_light_randomization place_receptacle
|
| 319 |
+
python scripts/data/calculate_stats.py "$SPLIT_DIR" --keys actions obs/agent/qpos
|
| 320 |
```
|
| 321 |
|
| 322 |
## License
|