Dataset release
Browse files- .gitattributes +4 -0
- README.md +92 -0
- data/droid.zip +3 -0
- data/isaac.zip +3 -0
- data/libero.zip +3 -0
- data/robosuite.zip +3 -0
- splits/1frame/test.json +0 -0
- splits/1frame/train.json +3 -0
- splits/1frame/val.json +0 -0
- splits/3frame-thinking/test.json +3 -0
- splits/3frame-thinking/train.json +3 -0
- splits/3frame-thinking/val.json +3 -0
- splits/manifest.json +0 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
splits/1frame/train.json filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
splits/3frame-thinking/test.json filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
splits/3frame-thinking/train.json filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
splits/3frame-thinking/val.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
- image-to-text
|
| 6 |
+
- reinforcement-learning
|
| 7 |
+
tags:
|
| 8 |
+
- robot-manipulation
|
| 9 |
+
- reward-model
|
| 10 |
+
- vision-language
|
| 11 |
+
- vlm
|
| 12 |
+
- dense-reward
|
| 13 |
+
pretty_name: DenseReward
|
| 14 |
+
size_categories:
|
| 15 |
+
- 500K<n<1M
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# DenseReward Dataset
|
| 19 |
+
|
| 20 |
+
🌐 [Project page](https://dense-reward.github.io/) · 📄 [Paper (arXiv:2607.13033)](https://arxiv.org/abs/2607.13033)
|
| 21 |
+
|
| 22 |
+
This is the dataset for **DenseReward: Dense Reward Learning via Failure Synthesis for Robotic Manipulation**. It pairs single robot-manipulation frames (and short chronological frame windows) with a scalar task-progress reward in `[0.000, 1.000]`, used to finetune a vision-language reward model.
|
| 23 |
+
|
| 24 |
+
**Models trained on this data:**
|
| 25 |
+
- [`densereward/densereward-1frame`](https://huggingface.co/densereward/densereward-1frame): single-frame reward model — one RGB frame + task text → scalar reward.
|
| 26 |
+
- [`densereward/densereward-3frame-thinking`](https://huggingface.co/densereward/densereward-3frame-thinking): 3-frame reward model with reasoning — 3 chronological frames + task text → a `<think>` reasoning word, then a scalar reward.
|
| 27 |
+
|
| 28 |
+
## Dataset structure
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
data/
|
| 32 |
+
droid.zip
|
| 33 |
+
isaac.zip
|
| 34 |
+
robosuite.zip
|
| 35 |
+
libero.zip
|
| 36 |
+
splits/
|
| 37 |
+
1frame/{train,val,test}.json # 1 image per sample -> reward
|
| 38 |
+
3frame-thinking/{train,val,test}.json # 3 chronological images per sample -> <think>reason</think> + reward
|
| 39 |
+
manifest.json # trajectory-level train/val/test assignment
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
Each source's images ship as a zip in `data/`. Unzip each one in place so it expands to `data/droid/*.jpg`, matching the paths referenced in `splits/*/*.json`.
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
## Data format
|
| 46 |
+
|
| 47 |
+
Each split file is a JSON list of samples in a simple SFT conversation format:
|
| 48 |
+
|
| 49 |
+
**`splits/1frame/*.json`**: one image, plain reward target
|
| 50 |
+
```json
|
| 51 |
+
{
|
| 52 |
+
"conversation": [
|
| 53 |
+
{"from": "human", "value": "<image>put the alcohol on the plate"},
|
| 54 |
+
{"from": "assistant", "value": "0.327"}
|
| 55 |
+
],
|
| 56 |
+
"images": ["data/isaac/isaac_alcohol_0_collision_000_frame_000300.jpg"]
|
| 57 |
+
}
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
**`splits/3frame-thinking/*.json`** : 3 chronological images (oldest → current; early frames in a trajectory repeat the first frame to pad the window), a reasoning word, then the reward for the last frame. Here the reward drops (0.341 → 0.327) as the robot collides with the object, and the reasoning word reflects it:
|
| 61 |
+
```json
|
| 62 |
+
{
|
| 63 |
+
"conversation": [
|
| 64 |
+
{"from": "human", "value": "<image><image><image>put the alcohol on the plate"},
|
| 65 |
+
{"from": "assistant", "value": "<think>\ncollision\n</think>\n\n0.327"}
|
| 66 |
+
],
|
| 67 |
+
"images": [
|
| 68 |
+
"data/isaac/isaac_alcohol_0_collision_000_frame_000240.jpg",
|
| 69 |
+
"data/isaac/isaac_alcohol_0_collision_000_frame_000270.jpg",
|
| 70 |
+
"data/isaac/isaac_alcohol_0_collision_000_frame_000300.jpg"
|
| 71 |
+
]
|
| 72 |
+
}
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
The `<think>` vocabulary is `correct | miss | collision | fall | not smooth |
|
| 76 |
+
failure`.
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
## License
|
| 80 |
+
|
| 81 |
+
Released under Apache License 2.0 for this repository.
|
| 82 |
+
|
| 83 |
+
## Citation
|
| 84 |
+
|
| 85 |
+
```bibtex
|
| 86 |
+
@article{fang2026densereward,
|
| 87 |
+
title={DenseReward: Dense Reward Learning via Failure Synthesis for Robotic Manipulation},
|
| 88 |
+
author={Fang, Yu and Dong, Wanxi and Liu, Jiaqi and Yang, Yue and Huo, Mingxiao and Mu, Yao and Yao, Huaxiu and Li, Li Erran and Szafir, Daniel and Ding, Mingyu},
|
| 89 |
+
journal={arXiv preprint arXiv:2607.13033},
|
| 90 |
+
year={2026}
|
| 91 |
+
}
|
| 92 |
+
```
|
data/droid.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f221418c7cdf7ac53f3ffb49c311420806564bbe13ab2a7e2ae68e1607c3991e
|
| 3 |
+
size 9173452994
|
data/isaac.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f5d7446a32b564770258526727f2a6e503658c82ea93d1964455c424609d65f
|
| 3 |
+
size 6848520390
|
data/libero.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:509aefbacac91fae96505dd93b79fc647622f3ff584a258e4207a1016cbd7c09
|
| 3 |
+
size 870076759
|
data/robosuite.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8860fda2dda0b12520a50a48b90124b5987ad0495b08c8f0f5439b2f856691d
|
| 3 |
+
size 3809153837
|
splits/1frame/test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
splits/1frame/train.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31974079f157dae92002361e55f8ccb25d426fa7a34bd55733951c8fa4c701b1
|
| 3 |
+
size 155137023
|
splits/1frame/val.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
splits/3frame-thinking/test.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4715e8754fbb85960f0eedf5d33bcc37c708a5acbdef808147e001e02f70b29b
|
| 3 |
+
size 13816193
|
splits/3frame-thinking/train.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:855865b6c4850c28b7a5d2f172d12719308575e420d1c15b2f19efbe8084fce2
|
| 3 |
+
size 251314539
|
splits/3frame-thinking/val.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40f26878fe5bf5002ee07b5997189d691fbcb81cdbaf54bbd11d4401cbeb5297
|
| 3 |
+
size 13738032
|
splits/manifest.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|