lapchann commited on
Commit
aed343e
·
1 Parent(s): a0d617b

update README w/ links

Browse files
Files changed (1) hide show
  1. README.md +38 -11
README.md CHANGED
@@ -43,10 +43,27 @@ configs:
43
 
44
  ## Dataset Description
45
 
46
- VANTAGE-BENCH is the first public benchmark purpose-built for evaluating visual understanding on video captured by fixed infrastructure cameras. It spans three real-world domains — warehouse, smart city / Intelligent Transportation Systems (ITS), and smart spaces — across six spatio-temporal video understanding tasks including video question answering (VQA), temporal grounding, dense video captioning, event verification, spatial grounding, and spatio-temporal tracking.
47
 
48
  This dataset is for evaluation purposes only.
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  ## Dataset Owner(s)
51
 
52
  NVIDIA Corporation
@@ -89,30 +106,38 @@ VANTAGE-BENCH/
89
  | Category | Task | Metric |
90
  |----------|------|--------|
91
  | Semantic | VQA | Accuracy |
92
- | Semantic | Event Verification | F1 Score |
93
  | Temporal | Dense Video Captioning | SODA-c |
94
- | Temporal | Temporal Localization | mAP@tIoU |
95
  | Spatial | 2D Object Localization | F1@0.5 |
96
  | Spatial | 2D Referring Expressions | mIoU |
97
- | Spatial | 2D Spatial Pointing | Pointing Accuracy |
98
  | Spatio-Temporal | Single Object Tracking | AUC |
99
 
100
- Expected submission formats and the leaderboard will be published soon.
101
 
102
  ### Metric Notes
103
 
104
  - **Accuracy**: Percentage of correct predictions.
105
  - **SODA-c**: Metric for dense video captioning quality across event coverage and language quality.
106
- - **mAP@tIoU**: Mean Average Precision measured over temporal IoU thresholds.
107
- - **F1 Score**: Harmonic mean of precision and recall.
108
  - **F1@0.5**: F1 score at an IoU threshold of 0.5.
109
- - **mIoU**: Mean Intersection over Union — average overlap between predicted and ground-truth bounding boxes.
110
- - **Pointing Accuracy**: Percentage of correctly selected target regions.
111
  - **AUC**: Area under the ROC curve, measuring the model's ability to distinguish correct detections or tracks from incorrect ones across varying confidence thresholds.
112
 
113
  ### Evaluation Server
114
 
115
- The [VANTAGE-Bench GitHub repository](https://github.com/anon-benchmark/VANTAGE-bench) provides a sample evaluation pipeline for generating model predictions. Predictions are submitted to the official leaderboard, which will go live by the end of May 2026.
 
 
 
 
 
 
 
 
 
 
116
 
117
  ## Dataset Format
118
 
@@ -167,7 +192,9 @@ Video (mp4) and Images (jpg).
167
 
168
  ## References
169
 
170
- - HuggingFace dataset: [nvidia/PhysicalAI-VANTAGE-Bench](https://huggingface.co/datasets/nvidia/PhysicalAI-VANTAGE-Bench)
 
 
171
 
172
  <img src="./assets/vantage_bench_tasks.png" alt="VANTAGE-BENCH task overview across Semantic, Temporal, Spatial, and Spatio-Temporal understanding categories" width="100%">
173
 
 
43
 
44
  ## Dataset Description
45
 
46
+ VANTAGE-BENCH is the first public benchmark purpose-built for evaluating visual understanding on video captured by fixed infrastructure cameras. It spans three real-world domains — warehouse, smart city / Intelligent Transportation Systems (ITS), and smart spaces — across 8 tasks spanning semantic, temporal, spatial, and spatio-temporal evaluation, including video question answering (VQA), temporal grounding, dense video captioning, event verification, spatial grounding, and spatio-temporal tracking.
47
 
48
  This dataset is for evaluation purposes only.
49
 
50
+ ## Quick Links
51
+
52
+ - **Official Website:** https://vantage-bench.org/
53
+ - **Official Leaderboard:** https://huggingface.co/spaces/clemson-computing/VANTAGE-Bench-Leaderboard
54
+ - **Prepare LMUData for VLMEvalKit:**
55
+ To prepare an inference-ready, no-ground-truth LMUData layout for running VANTAGE-Bench with VLMEvalKit:
56
+
57
+ ```bash
58
+ python scripts/run_lmudata.py --all
59
+ ```
60
+
61
+ Full setup instructions, disk requirements, troubleshooting, and task-specific notes are available in:
62
+
63
+ ```text
64
+ scripts/RUN_LMUData.md
65
+ ```
66
+
67
  ## Dataset Owner(s)
68
 
69
  NVIDIA Corporation
 
106
  | Category | Task | Metric |
107
  |----------|------|--------|
108
  | Semantic | VQA | Accuracy |
109
+ | Semantic | Event Verification | Macro F1 |
110
  | Temporal | Dense Video Captioning | SODA-c |
111
+ | Temporal | Temporal Localization | mIoU |
112
  | Spatial | 2D Object Localization | F1@0.5 |
113
  | Spatial | 2D Referring Expressions | mIoU |
114
+ | Spatial | 2D Spatial Pointing | Accuracy |
115
  | Spatio-Temporal | Single Object Tracking | AUC |
116
 
117
+ Expected submission formats are described in `scripts/RUN_LMUData.md`. Results are submitted to the [official leaderboard](https://huggingface.co/spaces/clemson-computing/VANTAGE-Bench-Leaderboard).
118
 
119
  ### Metric Notes
120
 
121
  - **Accuracy**: Percentage of correct predictions.
122
  - **SODA-c**: Metric for dense video captioning quality across event coverage and language quality.
123
+ - **Macro F1**: Unweighted mean of per-class F1 scores (harmonic mean of precision and recall).
 
124
  - **F1@0.5**: F1 score at an IoU threshold of 0.5.
125
+ - **mIoU**: Mean Intersection over Union — average overlap between predicted and ground-truth bounding boxes (also used for temporal localization spans).
 
126
  - **AUC**: Area under the ROC curve, measuring the model's ability to distinguish correct detections or tracks from incorrect ones across varying confidence thresholds.
127
 
128
  ### Evaluation Server
129
 
130
+ The VANTAGE-Bench evaluation workflow is designed for inference and server-side scoring. Users should first prepare an inference-ready LMUData layout using:
131
+
132
+ ```bash
133
+ python scripts/run_lmudata.py --all
134
+ ```
135
+
136
+ Then run VLMEvalKit inference with `--mode infer`. Generated predictions can be submitted to the official leaderboard:
137
+
138
+ https://huggingface.co/spaces/clemson-computing/VANTAGE-Bench-Leaderboard
139
+
140
+ See `scripts/RUN_LMUData.md` for setup, disk requirements, troubleshooting, and task-specific notes.
141
 
142
  ## Dataset Format
143
 
 
192
 
193
  ## References
194
 
195
+ - **Official Website:** https://vantage-bench.org/
196
+ - **Official Leaderboard:** https://huggingface.co/spaces/clemson-computing/VANTAGE-Bench-Leaderboard
197
+ - **Hugging Face Dataset:** https://huggingface.co/datasets/nvidia/PhysicalAI-VANTAGE-Bench
198
 
199
  <img src="./assets/vantage_bench_tasks.png" alt="VANTAGE-BENCH task overview across Semantic, Temporal, Spatial, and Spatio-Temporal understanding categories" width="100%">
200