Add pipeline tag and citation to model card
Browse filesHi! I'm Niels from the community science team at Hugging Face. This PR improves the model card for SVI-Bench by adding the `video-text-to-text` pipeline tag to the metadata, which helps users discover the model when filtering by task on the Hub. I've also added the official BibTeX citation and organized the resource links for better accessibility.
README.md
CHANGED
|
@@ -1,14 +1,33 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# SVI-Bench
|
| 6 |
|
| 7 |
**SVI-Bench** is a benchmark for **Strategic Video Intelligence**: evaluating whether multimodal models can move from seeing what happens in complex multi-agent sports video to explaining why it happens, simulating alternatives, and autonomously integrating evidence for higher-level analysis.
|
| 8 |
|
| 9 |
-
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
- π **Project page:** [svi-bench.github.io](https://svi-bench.github.io/)
|
| 13 |
- π **Paper (arXiv):** [arxiv.org/abs/2605.31529](https://arxiv.org/abs/2605.31529)
|
| 14 |
- π» **Code:** [github.com/Texaser/SVI-Bench](https://github.com/Texaser/SVI-Bench)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: video-text-to-text
|
| 4 |
---
|
| 5 |
|
| 6 |
# SVI-Bench
|
| 7 |
|
| 8 |
**SVI-Bench** is a benchmark for **Strategic Video Intelligence**: evaluating whether multimodal models can move from seeing what happens in complex multi-agent sports video to explaining why it happens, simulating alternatives, and autonomously integrating evidence for higher-level analysis.
|
| 9 |
|
| 10 |
+
It leverages team sports (basketball, soccer, and hockey) as a dynamic microworld to evaluate four cognitive pillars: Perception, Reasoning, Simulation, and Agency.
|
| 11 |
|
| 12 |
+
## Resources
|
| 13 |
+
|
| 14 |
+
- π **Dataset:** [MVP-Group/SVI-Bench](https://huggingface.co/datasets/MVP-Group/SVI-Bench)
|
| 15 |
- π **Project page:** [svi-bench.github.io](https://svi-bench.github.io/)
|
| 16 |
- π **Paper (arXiv):** [arxiv.org/abs/2605.31529](https://arxiv.org/abs/2605.31529)
|
| 17 |
- π» **Code:** [github.com/Texaser/SVI-Bench](https://github.com/Texaser/SVI-Bench)
|
| 18 |
+
|
| 19 |
+
## Citation
|
| 20 |
+
|
| 21 |
+
If you use SVI-Bench in your research, please cite the following paper:
|
| 22 |
+
|
| 23 |
+
```bibtex
|
| 24 |
+
@misc{pan2026svibenchdynamicmicroworldstrategic,
|
| 25 |
+
title={SVI-Bench: A Dynamic Microworld for Strategic Video Intelligence},
|
| 26 |
+
author={Yulu Pan and Han Yi and Seongsu Ha and Md Mohaiminul Islam and Benjamin Zhang and Lorenzo Torresani and Gedas Bertasius},
|
| 27 |
+
year={2026},
|
| 28 |
+
eprint={2605.31529},
|
| 29 |
+
archivePrefix={arXiv},
|
| 30 |
+
primaryClass={cs.CV},
|
| 31 |
+
url={https://arxiv.org/abs/2605.31529},
|
| 32 |
+
}
|
| 33 |
+
```
|