Improve model card: add metadata, paper link, and GitHub repository
Browse filesThis PR improves the model card for **ST-Evidence-7B** by:
- Adding the `video-text-to-text` pipeline tag to make the model discoverable on the Hub.
- Specifying the `cc-by-nc-4.0` license in the YAML metadata.
- Linking the model card to the corresponding paper: [Evidence-Backed Video Question Answering](https://huggingface.co/papers/2607.11862).
- Linking to the official GitHub repository and relevant datasets on the Hub.
- Including the official BibTeX citation.
README.md
CHANGED
|
@@ -1,14 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# ST-Evidence-7B
|
| 2 |
|
| 3 |
We propose **Evidence-Backed Video Question Answering** (E-VQA), a task where multimodal models are designed to jointly produce a semantic **textual answer** and associated spatiotemporal evidence. This evidence includes **temporal segments** and **dense, tracked object segmentation masklets**. A masklet is defined as a temporal sequence of object segmentation masks tracked over time.
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
|
| 7 |
This was released for research purposes only, in support of the academic paper *Evidence-Backed Video Question Answering*.
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
## License
|
| 11 |
|
| 12 |
CC-BY-NC 4.0
|
| 13 |
|
|
|
|
|
|
|
|
|
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pipeline_tag: video-text-to-text
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
# ST-Evidence-7B
|
| 7 |
|
| 8 |
We propose **Evidence-Backed Video Question Answering** (E-VQA), a task where multimodal models are designed to jointly produce a semantic **textual answer** and associated spatiotemporal evidence. This evidence includes **temporal segments** and **dense, tracked object segmentation masklets**. A masklet is defined as a temporal sequence of object segmentation masks tracked over time.
|
| 9 |
|
| 10 |
+
This model is presented in the paper [Evidence-Backed Video Question Answering](https://huggingface.co/papers/2607.11862) (ECCV 2026).
|
| 11 |
+
|
| 12 |
+
ST-Evidence-7B was fine-tuned from UniPixel, which is built upon Qwen2.5-VL and SAM 2.1. UniPixel is a unified model designed to handle both video question answering and mask generation.
|
| 13 |
|
| 14 |
This was released for research purposes only, in support of the academic paper *Evidence-Backed Video Question Answering*.
|
| 15 |
|
| 16 |
+
## Resources
|
| 17 |
+
|
| 18 |
+
- **Repository:** [SalesforceAIResearch/EVQA](https://github.com/SalesforceAIResearch/EVQA)
|
| 19 |
+
- **Paper:** [Evidence-Backed Video Question Answering](https://huggingface.co/papers/2607.11862)
|
| 20 |
+
- **Benchmark (ST-Evidence):** [Salesforce/ST-Evidence-Bench](https://huggingface.co/datasets/Salesforce/ST-Evidence-Bench)
|
| 21 |
+
- **SFT Dataset (ST-Evidence-Instruct):** [Salesforce/ST-Evidence-Instruct](https://huggingface.co/datasets/Salesforce/ST-Evidence-Instruct)
|
| 22 |
|
| 23 |
## License
|
| 24 |
|
| 25 |
CC-BY-NC 4.0
|
| 26 |
|
| 27 |
+
## Citation
|
| 28 |
+
|
| 29 |
+
If you find this work useful for your research, please cite our paper:
|
| 30 |
|
| 31 |
+
```bibtex
|
| 32 |
+
@inproceedings{wang2026evidence,
|
| 33 |
+
title={Evidence-Backed Video Question Answering},
|
| 34 |
+
author={Wang, Shijie and Zhou, Honglu and Wang, Ziyang and Xu, Ran and Xiong, Caiming and Savarese, Silvio and Sun, Chen and Niebles, Juan Carlos},
|
| 35 |
+
booktitle={European Conference on Computer Vision (ECCV)},
|
| 36 |
+
year={2026}
|
| 37 |
+
}
|
| 38 |
+
```
|