Add README.md
Browse files
README.md
CHANGED
|
@@ -1,129 +1,129 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
configs:
|
| 4 |
-
- config_name: default
|
| 5 |
-
data_files:
|
| 6 |
-
- split: train
|
| 7 |
-
path: data/**
|
| 8 |
-
annotations_creators: []
|
| 9 |
-
language: en
|
| 10 |
-
size_categories:
|
| 11 |
-
- 1K<n<10K
|
| 12 |
-
task_categories:
|
| 13 |
-
- robotics
|
| 14 |
-
pretty_name: RoboLab-EgoX (FiftyOne multimodal MCAP)
|
| 15 |
-
tags:
|
| 16 |
-
- fiftyone
|
| 17 |
-
- multimodal
|
| 18 |
-
- mcap
|
| 19 |
-
- robotics
|
| 20 |
-
- manipulation
|
| 21 |
-
- egocentric
|
| 22 |
-
- depth
|
| 23 |
-
- benchmark
|
| 24 |
-
---
|
| 25 |
-
|
| 26 |
-
# RoboLab-EgoX → FiftyOne (Native Multimodal MCAP)
|
| 27 |
-
|
| 28 |
-

|
| 29 |
-
|
| 30 |
-
The complete
|
| 31 |
-
[DAVIAN-Robotics/RoboLab-EgoX](https://huggingface.co/datasets/DAVIAN-Robotics/RoboLab-EgoX)
|
| 32 |
-
corpus, policy rollouts recorded on NVIDIA's
|
| 33 |
-
[RoboLab](https://github.com/NVLabs/RoboLab) manipulation benchmark,
|
| 34 |
-
converted to native multimodal MCAP episodes.
|
| 35 |
-
|
| 36 |
-
Each take carries three synchronized camera views with a matching 16-bit
|
| 37 |
-
depth stream, per-camera intrinsics, whole-arm telemetry, end-effector pose,
|
| 38 |
-
and the task instruction. Takes keep the benchmark's own success label, so
|
| 39 |
-
failed rollouts sit alongside successful ones.
|
| 40 |
-
|
| 41 |
-
## Installation
|
| 42 |
-
|
| 43 |
-
```bash
|
| 44 |
-
pip install fiftyone
|
| 45 |
-
```
|
| 46 |
-
|
| 47 |
-
## Usage
|
| 48 |
-
|
| 49 |
-
```python
|
| 50 |
-
import fiftyone as fo
|
| 51 |
-
import fiftyone.utils.huggingface as fouh
|
| 52 |
-
|
| 53 |
-
dataset = fouh.load_from_hub(
|
| 54 |
-
"Voxel51/RoboLab-EgoX",
|
| 55 |
-
name="RoboLab-EgoX",
|
| 56 |
-
persistent=True,
|
| 57 |
-
)
|
| 58 |
-
fo.launch_app(dataset)
|
| 59 |
-
```
|
| 60 |
-
|
| 61 |
-
Successful rollouts only:
|
| 62 |
-
|
| 63 |
-
```python
|
| 64 |
-
view = dataset.match({"success": True})
|
| 65 |
-
```
|
| 66 |
-
|
| 67 |
-
## What you get
|
| 68 |
-
|
| 69 |
-
- 4,000 `.mcap` episodes of 81 frames each at 15 fps, 6.0 hours total
|
| 70 |
-
- All **28 RoboLab tasks** across all **99 background scenes**
|
| 71 |
-
- **632 successful and 3,368 failed** rollouts, labelled, with a median
|
| 72 |
-
of 126 failures per task
|
| 73 |
-
- Cameras as `foxglove.CompressedVideo`: `/ego-camera` from the wrist,
|
| 74 |
-
`/exo-left-camera` and `/exo-right-camera` from the exterior views, all
|
| 75 |
-
640x360 H.264
|
| 76 |
-
- Depth as 16-bit PNG on `/ego-depth`, `/exo-left-depth` and
|
| 77 |
-
`/exo-right-depth`, at 320x180
|
| 78 |
-
- `/ego-calibration`, `/exo-left-calibration`, `/exo-right-calibration` as
|
| 79 |
-
`foxglove.CameraCalibration`
|
| 80 |
-
- `/joint-positions` (13 joints) and `/actions` (8), each with a timeline plot
|
| 81 |
-
- `/end-effector-pose` as `foxglove.PoseInFrame`
|
| 82 |
-
- `/instruction` carrying the task's language instruction
|
| 83 |
-
- Per-episode fields: `take_name`, `task`, `background`, `instruction`,
|
| 84 |
-
`success`, `source_episode`, `num_frames`, `duration`
|
| 85 |
-
|
| 86 |
-
## Notes on the conversion
|
| 87 |
-
|
| 88 |
-
Depth marks no-return pixels with the uint16 ceiling, `65535`, rather than
|
| 89 |
-
zero. That is over 60% of a typical exterior frame and about 12% of a wrist
|
| 90 |
-
frame, so any viewer that maps the full 16-bit range will render the real
|
| 91 |
-
depth as flat black. Mask `65535` before scaling. The values are carried
|
| 92 |
-
through unchanged.
|
| 93 |
-
|
| 94 |
-
Depth is half the camera resolution, 320x180 against 640x360. The
|
| 95 |
-
published `CameraCalibration` describes the 640x360 colour frame, so
|
| 96 |
-
projecting a depth frame to 3D means halving `fx`, `fy`, `cx` and `cy`
|
| 97 |
-
first.
|
| 98 |
-
|
| 99 |
-
In 153 of the 4,000 takes the source mp4s carry a trailing empty packet and
|
| 100 |
-
hold 80 real frames rather than 81, so all three camera streams are one
|
| 101 |
-
frame shorter than depth and telemetry. `num_frames` follows the
|
| 102 |
-
robot-state clock and reports 81.
|
| 103 |
-
|
| 104 |
-
Eight of the 28 tasks have no successful rollout anywhere in the source, so
|
| 105 |
-
those contribute failures only.
|
| 106 |
-
|
| 107 |
-
## License & attribution
|
| 108 |
-
|
| 109 |
-
The RoboLab benchmark, its tasks and its scene assets are released by NVIDIA
|
| 110 |
-
under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0); see
|
| 111 |
-
[NVLabs/RoboLab](https://github.com/NVLabs/RoboLab). The rollouts converted
|
| 112 |
-
here were recorded and published by
|
| 113 |
-
[DAVIAN-Robotics](https://huggingface.co/DAVIAN-Robotics). This subset is
|
| 114 |
-
distributed under Apache 2.0 and ships the license text as `LICENSE`.
|
| 115 |
-
|
| 116 |
-
Changes from the source: conversion from mp4 and HDF5 to MCAP,
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
## Citation
|
| 121 |
-
|
| 122 |
-
```bibtex
|
| 123 |
-
@article{yang2026robolab,
|
| 124 |
-
title={RoboLab: A High-Fidelity Simulation Benchmark for Analysis of Task Generalist Policies},
|
| 125 |
-
author={Yang, Xuning and Dagli, Rishit and Zook, Alex and Hadfield, Hugo and Goyal, Ankit and Birchfield, Stan and Ramos, Fabio and Tremblay, Jonathan},
|
| 126 |
-
journal={arXiv preprint arXiv:2604.09860},
|
| 127 |
-
year={2026}
|
| 128 |
-
}
|
| 129 |
-
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: default
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: data/**
|
| 8 |
+
annotations_creators: []
|
| 9 |
+
language: en
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1K<n<10K
|
| 12 |
+
task_categories:
|
| 13 |
+
- robotics
|
| 14 |
+
pretty_name: RoboLab-EgoX (FiftyOne multimodal MCAP)
|
| 15 |
+
tags:
|
| 16 |
+
- fiftyone
|
| 17 |
+
- multimodal
|
| 18 |
+
- mcap
|
| 19 |
+
- robotics
|
| 20 |
+
- manipulation
|
| 21 |
+
- egocentric
|
| 22 |
+
- depth
|
| 23 |
+
- benchmark
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
# RoboLab-EgoX → FiftyOne (Native Multimodal MCAP)
|
| 27 |
+
|
| 28 |
+

|
| 29 |
+
|
| 30 |
+
The complete
|
| 31 |
+
[DAVIAN-Robotics/RoboLab-EgoX](https://huggingface.co/datasets/DAVIAN-Robotics/RoboLab-EgoX)
|
| 32 |
+
corpus, policy rollouts recorded on NVIDIA's
|
| 33 |
+
[RoboLab](https://github.com/NVLabs/RoboLab) manipulation benchmark,
|
| 34 |
+
converted to native multimodal MCAP episodes.
|
| 35 |
+
|
| 36 |
+
Each take carries three synchronized camera views with a matching 16-bit
|
| 37 |
+
depth stream, per-camera intrinsics, whole-arm telemetry, end-effector pose,
|
| 38 |
+
and the task instruction. Takes keep the benchmark's own success label, so
|
| 39 |
+
failed rollouts sit alongside successful ones.
|
| 40 |
+
|
| 41 |
+
## Installation
|
| 42 |
+
|
| 43 |
+
```bash
|
| 44 |
+
pip install fiftyone
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Usage
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
import fiftyone as fo
|
| 51 |
+
import fiftyone.utils.huggingface as fouh
|
| 52 |
+
|
| 53 |
+
dataset = fouh.load_from_hub(
|
| 54 |
+
"Voxel51/RoboLab-EgoX",
|
| 55 |
+
name="RoboLab-EgoX",
|
| 56 |
+
persistent=True,
|
| 57 |
+
)
|
| 58 |
+
fo.launch_app(dataset)
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
Successful rollouts only:
|
| 62 |
+
|
| 63 |
+
```python
|
| 64 |
+
view = dataset.match({"success": True})
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
## What you get
|
| 68 |
+
|
| 69 |
+
- 4,000 `.mcap` episodes of 81 frames each at 15 fps, 6.0 hours total
|
| 70 |
+
- All **28 RoboLab tasks** across all **99 background scenes**
|
| 71 |
+
- **632 successful and 3,368 failed** rollouts, labelled, with a median
|
| 72 |
+
of 126 failures per task
|
| 73 |
+
- Cameras as `foxglove.CompressedVideo`: `/ego-camera` from the wrist,
|
| 74 |
+
`/exo-left-camera` and `/exo-right-camera` from the exterior views, all
|
| 75 |
+
640x360 Annex-B H.264 without B-frames
|
| 76 |
+
- Depth as 16-bit PNG on `/ego-depth`, `/exo-left-depth` and
|
| 77 |
+
`/exo-right-depth`, at 320x180
|
| 78 |
+
- `/ego-calibration`, `/exo-left-calibration`, `/exo-right-calibration` as
|
| 79 |
+
`foxglove.CameraCalibration`
|
| 80 |
+
- `/joint-positions` (13 joints) and `/actions` (8), each with a timeline plot
|
| 81 |
+
- `/end-effector-pose` as `foxglove.PoseInFrame`
|
| 82 |
+
- `/instruction` carrying the task's language instruction
|
| 83 |
+
- Per-episode fields: `take_name`, `task`, `background`, `instruction`,
|
| 84 |
+
`success`, `source_episode`, `num_frames`, `duration`
|
| 85 |
+
|
| 86 |
+
## Notes on the conversion
|
| 87 |
+
|
| 88 |
+
Depth marks no-return pixels with the uint16 ceiling, `65535`, rather than
|
| 89 |
+
zero. That is over 60% of a typical exterior frame and about 12% of a wrist
|
| 90 |
+
frame, so any viewer that maps the full 16-bit range will render the real
|
| 91 |
+
depth as flat black. Mask `65535` before scaling. The values are carried
|
| 92 |
+
through unchanged.
|
| 93 |
+
|
| 94 |
+
Depth is half the camera resolution, 320x180 against 640x360. The
|
| 95 |
+
published `CameraCalibration` describes the 640x360 colour frame, so
|
| 96 |
+
projecting a depth frame to 3D means halving `fx`, `fy`, `cx` and `cy`
|
| 97 |
+
first.
|
| 98 |
+
|
| 99 |
+
In 153 of the 4,000 takes the source mp4s carry a trailing empty packet and
|
| 100 |
+
hold 80 real frames rather than 81, so all three camera streams are one
|
| 101 |
+
frame shorter than depth and telemetry. `num_frames` follows the
|
| 102 |
+
robot-state clock and reports 81.
|
| 103 |
+
|
| 104 |
+
Eight of the 28 tasks have no successful rollout anywhere in the source, so
|
| 105 |
+
those contribute failures only.
|
| 106 |
+
|
| 107 |
+
## License & attribution
|
| 108 |
+
|
| 109 |
+
The RoboLab benchmark, its tasks and its scene assets are released by NVIDIA
|
| 110 |
+
under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0); see
|
| 111 |
+
[NVLabs/RoboLab](https://github.com/NVLabs/RoboLab). The rollouts converted
|
| 112 |
+
here were recorded and published by
|
| 113 |
+
[DAVIAN-Robotics](https://huggingface.co/DAVIAN-Robotics). This subset is
|
| 114 |
+
distributed under Apache 2.0 and ships the license text as `LICENSE`.
|
| 115 |
+
|
| 116 |
+
Changes from the source: conversion from mp4 and HDF5 to MCAP, PNG encoding
|
| 117 |
+
of the depth stacks, and re-encoding of the camera streams to Annex-B H.264
|
| 118 |
+
without B-frames.
|
| 119 |
+
|
| 120 |
+
## Citation
|
| 121 |
+
|
| 122 |
+
```bibtex
|
| 123 |
+
@article{yang2026robolab,
|
| 124 |
+
title={RoboLab: A High-Fidelity Simulation Benchmark for Analysis of Task Generalist Policies},
|
| 125 |
+
author={Yang, Xuning and Dagli, Rishit and Zook, Alex and Hadfield, Hugo and Goyal, Ankit and Birchfield, Stan and Ramos, Fabio and Tremblay, Jonathan},
|
| 126 |
+
journal={arXiv preprint arXiv:2604.09860},
|
| 127 |
+
year={2026}
|
| 128 |
+
}
|
| 129 |
+
```
|