File size: 4,970 Bytes
a6ec207 9bbf0b8 a6ec207 9bbf0b8 a6ec207 41e2cb5 8d2316e 41e2cb5 9bbf0b8 19820d0 9bbf0b8 41e2cb5 9bbf0b8 41e2cb5 9bbf0b8 41e2cb5 9bbf0b8 41e2cb5 9bbf0b8 41e2cb5 9bbf0b8 41e2cb5 9bbf0b8 8d2316e 3e636f5 3645b58 3e636f5 e5d491c 3645b58 e5d491c 3645b58 9843d61 3645b58 683a7e5 3645b58 3e636f5 9bbf0b8 3e636f5 3645b58 3e636f5 41e2cb5 3e636f5 3645b58 1c3fd5c d929973 1c3fd5c 3645b58 b4df401 0d10787 1c3fd5c 9bbf0b8 41e2cb5 9bbf0b8 fd312e1 8c3d6e0 9bbf0b8 1c3fd5c 9bbf0b8 e5d491c 41e2cb5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | ---
pretty_name: Video Progress Benchmark
tags:
- robotics
- embodied-ai
- video-progress
- progress-estimation
- reward-modeling
- benchmark
license: other
---
# Video Progress Benchmark
<div align="center">
[Paper](https://arxiv.org/abs/2607.09776) ·
[Code](https://github.com/InternRobotics/VLAC-cut) ·
[Model](https://huggingface.co/InternRobotics/VLAC-Cut) ·
[Benchmark](https://huggingface.co/datasets/InternRobotics/VLAC-Cut-Benchmark)
</div>
## Overview
The **Video Progress Benchmark (VPB)** evaluates process-level task progress estimation for robot manipulation. It measures whether a model can capture advancement, stagnation, regression, and recovery throughout an execution video.
VPB is built from the held-out portion of the Progress Annotation Dataset. Unlike endpoint-only evaluations, VPB focuses on temporal task progress and supports analysis of partial completion, temporary failure, and subsequent recovery.
This Hugging Face repository contains the official benchmark splits and video archives. The corresponding preprocessing, inference, and evaluation code is maintained in the GitHub repository.
## Dataset Scale
| Inventory | Records | Episodes | Tasks | Keyframe progress points |
|---|---:|---:|---:|---:|
| Full annotation inventory | 35,230 | 26,615 | 15,206 | 464,446 |
| Curated train/evaluation inventory | 28,167 | 22,978 | 15,206 | 375,172 |
## Official Splits
VPB is organized along two axes: whether the semantic task unit appears in the training split, and whether the annotated trajectory contains a regressive progress transition.
| Split | Records | Episodes | Keyframe progress points |
|---|---:|---:|---:|
| Train | 24,652 | 20,479 | 331,762 |
| Expert seen | 1,043 | 1,033 | 11,769 |
| Expert unseen | 1,043 | 1,035 | 12,333 |
| Non-expert seen | 713 | 706 | 9,458 |
| Non-expert unseen | 716 | 706 | 9,850 |
All views from the same physical execution are assigned to the same split. Held-out progress annotations are excluded from prompt construction, augmentation, in-context demonstration selection, fine-tuning, and checkpoint selection.
## Repository Contents
```text
splits/
train.json
test_expert_seen.json
test_expert_unseen.json
test_nonexpert_seen.json
test_nonexpert_unseen.json
data/
train_videos.tar
test_videos.tar
checksums.sha256
LICENSE
THIRD_PARTY_LICENSES.md
```
## Data Format
Each split file is a JSON list. Each record includes the trajectory id, task metadata, frame index, dense progress values, semantic anchors, and optional reference context.
The split files use the portable frame prefix:
```text
__VLAC2_FRAMES_ROOT__/
```
Resolve this prefix to the absolute extracted-frame directory when running the GitHub tools.
## Evaluation Protocol
Annotated semantic keyframes are converted into a canonical reference trajectory by piecewise-linear interpolation. This interpolation is an evaluation convention and does not assume that physical progress changes linearly between events.
Global and terminal metrics are computed on the official `1 Hz` evaluation grid. Local direction metrics are computed directly on adjacent annotated semantic anchors. Global metrics are first computed per record and then averaged over metric-valid records so that long videos do not dominate the result.
| Scope | Metrics | What they measure |
|---|---|---|
| Global trajectory | MAE, PRC, VOC | Absolute calibration and ordering of progress states; VOC is reported only for expert trajectories |
| Terminal state | TSA, successful F1, failed/incomplete F1, Macro-F1 | Whether the final state is complete using the common `>= 90` threshold |
| Local direction | AP+, AP-, MacroAP | Whether adjacent semantic events are correctly ranked as improvement or regression |
Detailed running commands and the complete metric implementation are provided in the GitHub repository:
```bash
git clone https://github.com/InternRobotics/VLAC-cut
cd VLAC-cut
python scripts/evaluate_vpb_predictions.py \
--benchmark-root /path/to/VLAC-Cut-Benchmark/splits \
--predictions predictions/vlac_cut_predictions.jsonl \
--out-json reports/vlac_cut_vpb_eval.json \
--out-md reports/vlac_cut_vpb_eval.md
```
## Citation
Please cite the following paper when using VLAC-Cut, the released model, or the Video Progress Benchmark:
```bibtex
@misc{zhai2026helphumanefficientlargescalerobot,
title={HELP: Human-Efficient Large-Scale Robot Post-Training with Rollout Segmentation},
author={Shaopeng Zhai and Qi Zhang and Tianyi Zhang and Haoran Zhang and Fuxian Huang and Zhanhui Lin and Zijun Xu and Weinan Zhang},
year={2026},
eprint={2607.09776},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2607.09776},
}
```
## License
The benchmark videos and third-party source data may be subject to additional licenses or terms of use. The source code in the GitHub repository is released under the MIT License.
|