futurefantasy commited on
Commit
41e2cb5
·
verified ·
1 Parent(s): 8c3d6e0

Refine VPB dataset card style

Browse files
Files changed (1) hide show
  1. README.md +33 -46
README.md CHANGED
@@ -10,30 +10,25 @@ tags:
10
  license: other
11
  ---
12
 
13
- # Video Progress Benchmark (VPB)
14
 
15
- **A video-language benchmark for process-level robot task progress estimation.**
 
 
16
 
17
- [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)
18
-
19
- The **Video Progress Benchmark (VPB)** evaluates whether a model can estimate how a robot task evolves throughout a video, not only whether the final frame looks successful. VPB is built from the held-out portion of the **Progress Annotation Dataset** and explicitly tests advancement, stagnation, regression, and recovery.
20
-
21
- This release provides the official split files and the raw-video subset required by the benchmark. Frame extraction, VLAC-Cut inference, and metric computation scripts are maintained in the GitHub repository.
22
-
23
- ## Why VPB?
24
 
25
- Most existing robot reward and progress evaluations rely on endpoint success, isolated observations, frame pairs, or trajectories that are assumed to improve monotonically with time. Real robot executions are often different: a missed grasp, collision, drop, or wrong-object interaction can leave progress unchanged or move the task backward before a later recovery.
26
 
27
- VPB addresses this gap through two design choices:
28
 
29
- 1. **Continuous video context:** models evaluate temporally ordered robot videos rather than disconnected images.
30
- 2. **Process-level evaluation:** metrics separately measure global trajectory recovery, terminal-state recognition, and local event-level direction.
31
 
32
- ## Progress Annotation Dataset
33
 
34
- Each annotated record contains a task instruction, a task-level plan, and task-relevant progress points. A progress point is attached to an observable semantic event such as contact formation or loss, grasp or placement outcome, object displacement, failure, stagnation, regression, or recovery.
35
 
36
- When available, progress points also include auxiliary process supervision: scene state, robot action or object interaction, progress explanation, success/failure analysis, correction plan, and task-relevant grounding.
37
 
38
  ## Dataset Scale
39
 
@@ -44,10 +39,7 @@ When available, progress points also include auxiliary process supervision: scen
44
 
45
  ## Official Splits
46
 
47
- VPB is organized along two axes:
48
-
49
- - **Seen vs. unseen:** whether the semantic task unit appears in the training split.
50
- - **Expert vs. non-expert:** whether the annotated trajectory contains a regressive progress transition.
51
 
52
  | Split | Records | Episodes | Keyframe progress points |
53
  |---|---:|---:|---:|
@@ -59,23 +51,6 @@ VPB is organized along two axes:
59
 
60
  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.
61
 
62
- ## Evaluation Setup
63
-
64
- Annotated semantic keyframes are converted into a canonical reference trajectory by piecewise-linear interpolation. This interpolation is an evaluation convention; it does not assume that physical progress changes linearly between events.
65
-
66
- - global and terminal metrics are computed on the official `1 Hz` evaluation grid;
67
- - local direction metrics are computed directly on adjacent annotated semantic anchors;
68
- - global metrics are first computed per record and then averaged over metric-valid records, preventing long videos from dominating the result;
69
- - prediction coverage is strict by default in the public evaluator.
70
-
71
- ### Metrics
72
-
73
- | Scope | Metrics | What they measure |
74
- |---|---|---|
75
- | Global trajectory | MAE, PRC, VOC | Absolute calibration and ordering of progress states; VOC is reported only for expert trajectories |
76
- | Terminal state | TSA, successful F1, failed/incomplete F1, Macro-F1 | Whether the final state is complete using the common `>= 90` threshold |
77
- | Local direction | AP+, AP-, MacroAP | Whether adjacent semantic events are correctly ranked as improvement or regression |
78
-
79
  ## Repository Contents
80
 
81
  ```text
@@ -107,7 +82,17 @@ __VLAC2_FRAMES_ROOT__/
107
 
108
  Resolve this prefix to the absolute extracted-frame directory when running the GitHub tools.
109
 
110
- ## Evaluation Code
 
 
 
 
 
 
 
 
 
 
111
 
112
  Detailed running commands and the complete metric implementation are provided in the GitHub repository:
113
 
@@ -124,18 +109,20 @@ python scripts/evaluate_vpb_predictions.py \
124
 
125
  ## Citation
126
 
 
 
127
  ```bibtex
128
  @misc{zhai2026maximizinghumanefficiencylargescale,
129
- title={Maximizing Human Efficiency in Large-Scale Robot Post-Training via VLAC-Cut Guided Pipeline},
130
- author={Shaopeng Zhai and Qi Zhang and Tianyi Zhang and Haoran Zhang and Fuxian Huang and Zhanhui Lin and Zijun Xu},
131
- year={2026},
132
- eprint={2607.09776},
133
- archivePrefix={arXiv},
134
- primaryClass={cs.RO},
135
- url={https://arxiv.org/abs/2607.09776},
136
  }
137
  ```
138
 
139
  ## License
140
 
141
- See the license files distributed with this release. Third-party datasets and videos retain their original licenses and usage restrictions.
 
10
  license: other
11
  ---
12
 
13
+ # Video Progress Benchmark
14
 
15
+ <p align="center">
16
+ <strong>Process-level Task Progress Estimation for Robot Manipulation</strong>
17
+ </p>
18
 
19
+ <div align="center">
 
 
 
 
 
 
20
 
21
+ [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)
22
 
23
+ </div>
24
 
25
+ ## Overview
 
26
 
27
+ 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.
28
 
29
+ 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.
30
 
31
+ 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.
32
 
33
  ## Dataset Scale
34
 
 
39
 
40
  ## Official Splits
41
 
42
+ 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.
 
 
 
43
 
44
  | Split | Records | Episodes | Keyframe progress points |
45
  |---|---:|---:|---:|
 
51
 
52
  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.
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  ## Repository Contents
55
 
56
  ```text
 
82
 
83
  Resolve this prefix to the absolute extracted-frame directory when running the GitHub tools.
84
 
85
+ ## Evaluation Protocol
86
+
87
+ 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.
88
+
89
+ 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.
90
+
91
+ | Scope | Metrics | What they measure |
92
+ |---|---|---|
93
+ | Global trajectory | MAE, PRC, VOC | Absolute calibration and ordering of progress states; VOC is reported only for expert trajectories |
94
+ | Terminal state | TSA, successful F1, failed/incomplete F1, Macro-F1 | Whether the final state is complete using the common `>= 90` threshold |
95
+ | Local direction | AP+, AP-, MacroAP | Whether adjacent semantic events are correctly ranked as improvement or regression |
96
 
97
  Detailed running commands and the complete metric implementation are provided in the GitHub repository:
98
 
 
109
 
110
  ## Citation
111
 
112
+ Please cite the following paper when using VLAC-Cut, the released model, or the Video Progress Benchmark:
113
+
114
  ```bibtex
115
  @misc{zhai2026maximizinghumanefficiencylargescale,
116
+ title = {Maximizing Human Efficiency in Large-Scale Robot Post-Training via VLAC-Cut Guided Pipeline},
117
+ author = {Shaopeng Zhai and Qi Zhang and Tianyi Zhang and Haoran Zhang and Fuxian Huang and Zhanhui Lin and Zijun Xu},
118
+ year = {2026},
119
+ eprint = {2607.09776},
120
+ archivePrefix = {arXiv},
121
+ primaryClass = {cs.RO},
122
+ url = {https://arxiv.org/abs/2607.09776}
123
  }
124
  ```
125
 
126
  ## License
127
 
128
+ 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.