--- license: apache-2.0 task_categories: - robotics - image-to-text - reinforcement-learning tags: - robot-manipulation - reward-model - vision-language - vlm - dense-reward pretty_name: DenseReward size_categories: - 500K` reasoning word, then a scalar reward. ## Dataset structure ``` data/ droid.zip isaac.zip robosuite.zip libero.zip splits/ 1frame/{train,val,test}.json # 1 image per sample -> reward 3frame-thinking/{train,val,test}.json # 3 chronological images per sample -> reason + reward manifest.json # trajectory-level train/val/test assignment ``` 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`. ## Data format Each split file is a JSON list of samples in a simple SFT conversation format: **`splits/1frame/*.json`**: one image, plain reward target ```json { "conversation": [ {"from": "human", "value": "put the alcohol on the plate"}, {"from": "assistant", "value": "0.327"} ], "images": ["data/isaac/isaac_alcohol_0_collision_000_frame_000300.jpg"] } ``` **`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: ```json { "conversation": [ {"from": "human", "value": "put the alcohol on the plate"}, {"from": "assistant", "value": "\ncollision\n\n\n0.327"} ], "images": [ "data/isaac/isaac_alcohol_0_collision_000_frame_000240.jpg", "data/isaac/isaac_alcohol_0_collision_000_frame_000270.jpg", "data/isaac/isaac_alcohol_0_collision_000_frame_000300.jpg" ] } ``` The `` vocabulary is `correct | miss | collision | fall | not smooth | failure`. ## License Released under Apache License 2.0 for this repository. ## Citation ```bibtex @article{fang2026densereward, title={DenseReward: Dense Reward Learning via Failure Synthesis for Robotic Manipulation}, 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}, journal={arXiv preprint arXiv:2607.13033}, year={2026} } ```