Upload folder using huggingface_hub
Browse files- LICENSE.md +8 -0
- README.md +104 -0
- data/REAL-Data.tar.zst +3 -0
- data/REAL-Data.tar.zst.sha256 +3 -0
- manifest.json +0 -0
- mesa_required.txt +2 -0
- payload-SHA256SUMS +0 -0
LICENSE.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Data license notice
|
| 2 |
+
|
| 3 |
+
This derived scene subset follows the upstream GRScenes data license:
|
| 4 |
+
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
| 5 |
+
(CC BY-NC-SA 4.0).
|
| 6 |
+
|
| 7 |
+
License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
| 8 |
+
Upstream: https://huggingface.co/datasets/InternRobotics/GRScenes
|
README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: REAL Data
|
| 3 |
+
license: cc-by-nc-sa-4.0
|
| 4 |
+
tags:
|
| 5 |
+
- embodied-ai
|
| 6 |
+
- robotics
|
| 7 |
+
- simulation
|
| 8 |
+
- usd
|
| 9 |
+
- grscenes
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# REAL Data
|
| 13 |
+
|
| 14 |
+
This dataset release contains the seven experiment-specific, processed GRScenes
|
| 15 |
+
stages used by REAL. These are **not** the original same-named GRScenes stages.
|
| 16 |
+
The scene dependency closure was exported with InternUtopia's
|
| 17 |
+
`toolkits/grscenes_scripts/export_scenes.py`, localized, pruned, and verified.
|
| 18 |
+
|
| 19 |
+
## Download
|
| 20 |
+
|
| 21 |
+
The scene data is distributed as one all-in-one scene bundle:
|
| 22 |
+
|
| 23 |
+
- `data/REAL-Data.tar.zst`
|
| 24 |
+
- compressed size: **3.918 GB (3.649 GiB)**
|
| 25 |
+
- SHA256: `dab362cdeb23a01c192ae4a0a5a87d6c00aad99e023f5d7dd15d4831c2a6f96f`
|
| 26 |
+
|
| 27 |
+
`README.md`, `LICENSE.md`, `manifest.json`, and the checksum files remain
|
| 28 |
+
outside the archive as well so they can be inspected before downloading it.
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
hf download InternRobotics/REAL-Data \
|
| 32 |
+
data/REAL-Data.tar.zst \
|
| 33 |
+
data/REAL-Data.tar.zst.sha256 \
|
| 34 |
+
--repo-type dataset \
|
| 35 |
+
--local-dir .
|
| 36 |
+
|
| 37 |
+
cd data
|
| 38 |
+
sha256sum -c REAL-Data.tar.zst.sha256
|
| 39 |
+
tar -I zstd -xf REAL-Data.tar.zst
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
The archive extracts into a single top-level directory:
|
| 43 |
+
|
| 44 |
+
```text
|
| 45 |
+
REAL-Data/
|
| 46 |
+
├── scenes/
|
| 47 |
+
├── models/
|
| 48 |
+
├── Materials/
|
| 49 |
+
├── metadata/
|
| 50 |
+
├── manifest.json
|
| 51 |
+
├── SHA256SUMS
|
| 52 |
+
├── DATASET_CARD.md
|
| 53 |
+
├── LICENSE_DATA.md
|
| 54 |
+
└── mesa_required.txt
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## Included scenes
|
| 58 |
+
|
| 59 |
+
- `MV7J6NIKTKJZ2AABAAAAAEI8`
|
| 60 |
+
- `MVUCSQAKTKJ5EAABAAAAAAI8`
|
| 61 |
+
- `MVUCSQAKTKJ5EAABAAAAAAQ8`
|
| 62 |
+
- `MVUCSQAKTKJ5EAABAAAAABA8`
|
| 63 |
+
- `MVUCSQAKTKJ5EAABAAAAABQ8`
|
| 64 |
+
- `MVUCSQAKTKJ5EAABAAAAABY8`
|
| 65 |
+
- `MVUCSQAKTKJ5EAABAAAAACA8`
|
| 66 |
+
|
| 67 |
+
Each scene entry point is `scenes/<scene_id>_usd/scene.usd`.
|
| 68 |
+
|
| 69 |
+
## Included data
|
| 70 |
+
|
| 71 |
+
- seven processed scene entry points;
|
| 72 |
+
- the complete referenced scene model/material/texture/MDL closure;
|
| 73 |
+
- occupancy maps and per-scene furniture libraries;
|
| 74 |
+
- processed task-generator metadata, including MesaTask raw-ID to USD-valid-ID
|
| 75 |
+
correspondence through each entry's `original_uid` and valid top-level key;
|
| 76 |
+
- provenance manifest and per-file SHA256 checksums.
|
| 77 |
+
|
| 78 |
+
## External requirement
|
| 79 |
+
|
| 80 |
+
MesaTask object USD payloads are **not redistributed**. The two objects required
|
| 81 |
+
by the default demo are listed in `mesa_required.txt`; obtain MesaTask-10K
|
| 82 |
+
separately and configure `MESATASK_USD_ROOT` in REAL.
|
| 83 |
+
|
| 84 |
+
## Integrity and provenance
|
| 85 |
+
|
| 86 |
+
The exported payload contains no symlinks, unresolved/external USD dependencies,
|
| 87 |
+
or private cluster paths. See `manifest.json` for scene fingerprints, exporter
|
| 88 |
+
provenance, dependency counts, and validation results. After extraction, verify
|
| 89 |
+
all payload files with:
|
| 90 |
+
|
| 91 |
+
```bash
|
| 92 |
+
cd REAL-Data
|
| 93 |
+
sha256sum -c SHA256SUMS
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## License and attribution
|
| 97 |
+
|
| 98 |
+
This is a derived data artifact. The REAL code repository's MIT license does
|
| 99 |
+
not replace the data terms. GRScenes and associated released metadata follow
|
| 100 |
+
CC BY-NC-SA 4.0. Preserve attribution, non-commercial restrictions, and
|
| 101 |
+
share-alike requirements.
|
| 102 |
+
|
| 103 |
+
- Upstream GRScenes: https://huggingface.co/datasets/InternRobotics/GRScenes
|
| 104 |
+
- MesaTask-10K (downloaded separately): https://huggingface.co/datasets/InternRobotics/MesaTask-10K
|
data/REAL-Data.tar.zst
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dab362cdeb23a01c192ae4a0a5a87d6c00aad99e023f5d7dd15d4831c2a6f96f
|
| 3 |
+
size 3918331150
|
data/REAL-Data.tar.zst.sha256
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc2ad9401ad7dcef89b222b2b0575a691c23a4237876598320dbeef76d1d1ba8
|
| 3 |
+
size 84
|
manifest.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mesa_required.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
c13555900d7f413bad3caec2086d3874.usd
|
| 2 |
+
052fedd7-cb75-43dd-9685-bd85a0e1619b.usd
|
payload-SHA256SUMS
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|