Improve model card: add metadata, paper info and links
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,9 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
-
#
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
## Training Data
|
| 6 |
-
We use same dataset from [Open-o3-video](https://huggingface.co/datasets/marinero4972/Open-o3-Video/tree/main)
|
|
|
|
| 7 |
| Stage | Dataset |
|
| 8 |
|-------|---------|
|
| 9 |
| SFT | STGR-SFT.json |
|
|
@@ -16,4 +35,23 @@ from transformers import AutoModelForCausalLM, AutoProcessor
|
|
| 16 |
|
| 17 |
model = AutoModelForCausalLM.from_pretrained("danaleee/VisionCoach-7B")
|
| 18 |
processor = AutoProcessor.from_pretrained("danaleee/VisionCoach-7B")
|
| 19 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: video-text-to-text
|
| 3 |
+
library_name: transformers
|
| 4 |
+
base_model: Qwen/Qwen2.5-VL-7B-Instruct
|
| 5 |
+
---
|
| 6 |
|
| 7 |
+
# VisionCoach-7B
|
| 8 |
+
|
| 9 |
+
[**VisionCoach**](https://visioncoach.github.io/) is an input-adaptive reinforcement learning (RL) framework designed to improve spatio-temporal grounding in video reasoning via visual-perception prompting as training-time guidance. The model internalizes these improvements through self-distillation, enabling grounded reasoning directly on raw videos without visual prompting at inference.
|
| 10 |
+
|
| 11 |
+
- **Paper:** [VisionCoach: Reinforcing Grounded Video Reasoning via Visual-Perception Prompting](https://huggingface.co/papers/2603.14659)
|
| 12 |
+
- **Project Page:** [https://visioncoach.github.io/](https://visioncoach.github.io/)
|
| 13 |
+
- **Repository:** [https://github.com/daeunni/VisionCoach](https://github.com/daeunni/VisionCoach)
|
| 14 |
+
|
| 15 |
+
## Model Description
|
| 16 |
+
VisionCoach addresses the challenge of reliable spatio-temporal grounding in video reasoning. It consists of two main components:
|
| 17 |
+
1. **Visual Prompt Selector:** Predicts appropriate prompt types conditioned on the video and question.
|
| 18 |
+
2. **Spatio-Temporal Reasoner:** Optimized with RL under visual prompt guidance and object-aware grounding rewards.
|
| 19 |
+
|
| 20 |
+
## Base Model
|
| 21 |
+
- [Qwen/Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct)
|
| 22 |
|
| 23 |
## Training Data
|
| 24 |
+
We use the same dataset from [Open-o3-video](https://huggingface.co/datasets/marinero4972/Open-o3-Video/tree/main).
|
| 25 |
+
|
| 26 |
| Stage | Dataset |
|
| 27 |
|-------|---------|
|
| 28 |
| SFT | STGR-SFT.json |
|
|
|
|
| 35 |
|
| 36 |
model = AutoModelForCausalLM.from_pretrained("danaleee/VisionCoach-7B")
|
| 37 |
processor = AutoProcessor.from_pretrained("danaleee/VisionCoach-7B")
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
|
| 42 |
+
If you find this work helpful, please consider citing:
|
| 43 |
+
|
| 44 |
+
```bibtex
|
| 45 |
+
@misc{lee2026visioncoachreinforcinggroundedvideo,
|
| 46 |
+
title={VisionCoach: Reinforcing Grounded Video Reasoning via Visual-Perception Prompting},
|
| 47 |
+
author={Daeun Lee and Shoubin Yu and Yue Zhang and Mohit Bansal},
|
| 48 |
+
year={2026},
|
| 49 |
+
eprint={2603.14659},
|
| 50 |
+
archivePrefix={arXiv},
|
| 51 |
+
primaryClass={cs.CV},
|
| 52 |
+
url={https://arxiv.org/abs/2603.14659},
|
| 53 |
+
}
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Acknowledgements
|
| 57 |
+
We sincerely thank the following projects for their contributions to this work: [Open-o3-Video](https://github.com/marinero4972/Open-o3-Video), [Video-R1](https://github.com/tulerfeng/Video-R1), [R1-V](https://github.com/StarsfieldAI/R1-V), and [ObjectMLLM](https://github.com/brown-palm/ObjectMLLM).
|