Add dataset card and integrity manifest
Browse files- DATASET_MANIFEST.json +18 -0
- README.md +36 -0
DATASET_MANIFEST.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"repository": "ThomasWalker1/paarbench-data",
|
| 3 |
+
"root": "pushobj_multishape",
|
| 4 |
+
"splits": {
|
| 5 |
+
"train": {
|
| 6 |
+
"episodes": 7200,
|
| 7 |
+
"file_count": 7206,
|
| 8 |
+
"total_bytes": 864106305,
|
| 9 |
+
"tree_sha256": "1f5e743c220cde93322b3735c3ba7caa161826bd86368bea6901c94616c4488d"
|
| 10 |
+
},
|
| 11 |
+
"val": {
|
| 12 |
+
"episodes": 800,
|
| 13 |
+
"file_count": 806,
|
| 14 |
+
"total_bytes": 97366292,
|
| 15 |
+
"tree_sha256": "ea2e04833041a334409778f36942e9c57bb97eb69100738bda71caed4f1e0a87"
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
}
|
README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Optional training dataset
|
| 2 |
+
|
| 3 |
+
The PAARBench evaluation protocol does **not** require training trajectories. Its goal
|
| 4 |
+
segments are tracked under `data/pushobj_eval/`, and evaluation reads fixed
|
| 5 |
+
normalization metadata without opening the training dataset.
|
| 6 |
+
|
| 7 |
+
The training release is provided for researchers who want to reproduce base-model or
|
| 8 |
+
adapter training, or develop methods that explicitly use offline trajectories:
|
| 9 |
+
|
| 10 |
+
```bash
|
| 11 |
+
.venv/bin/python scripts/download_data.py
|
| 12 |
+
```
|
| 13 |
+
|
| 14 |
+
The downloader fetches the immutable benchmark release from the
|
| 15 |
+
[`ThomasWalker1/paarbench-data`](https://huggingface.co/datasets/ThomasWalker1/paarbench-data)
|
| 16 |
+
dataset repository into `data/pushobj_multishape/` and verifies it against
|
| 17 |
+
`DATASET_MANIFEST.json`.
|
| 18 |
+
|
| 19 |
+
## Contents
|
| 20 |
+
|
| 21 |
+
The release contains only the nonredundant splits used by the training pipeline:
|
| 22 |
+
|
| 23 |
+
| split | episodes | files | bytes |
|
| 24 |
+
|---|---:|---:|---:|
|
| 25 |
+
| `train` | 7,200 | 7,206 | 864,106,305 |
|
| 26 |
+
| `val` | 800 | 806 | 97,366,292 |
|
| 27 |
+
|
| 28 |
+
Each split contains `states.pth`, `velocities.pth`, `rel_actions.pth`,
|
| 29 |
+
`abs_actions.pth`, `seq_lengths.pkl`, `shapes.pkl`, and one MP4 observation stream per
|
| 30 |
+
episode under `obses/`. Redundant root-level copies and intermediate shards are not
|
| 31 |
+
part of the release.
|
| 32 |
+
|
| 33 |
+
The trajectories were generated in the PushObj simulator across the T, L, Z, and +
|
| 34 |
+
shapes. No license is asserted here beyond the rights of the repository owner; users
|
| 35 |
+
should review the dataset repository card and applicable upstream asset licenses
|
| 36 |
+
before redistribution.
|