Video-Text-to-Text
Transformers
Safetensors
qwen3_vl
image-text-to-text
video
temporal-grounding
qwen3-vl
Instructions to use MCG-NJU/TimeLens2-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MCG-NJU/TimeLens2-4B with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("MCG-NJU/TimeLens2-4B") model = AutoModelForMultimodalLM.from_pretrained("MCG-NJU/TimeLens2-4B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
docs: add TimeLens2 paper citation
Browse files
README.md
CHANGED
|
@@ -17,6 +17,10 @@ The model is built on [Qwen3-VL-4B-Instruct](https://huggingface.co/Qwen/Qwen3-V
|
|
| 17 |
|
| 18 |
Despite its compact size, **TimeLens2-4B delivers state-of-the-art performance among similarly sized models** and outperforms substantially larger open and proprietary baselines.
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
## Benchmark Results
|
| 21 |
|
| 22 |

|
|
@@ -114,3 +118,17 @@ response = processor.batch_decode(
|
|
| 114 |
)
|
| 115 |
print(response[0])
|
| 116 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
Despite its compact size, **TimeLens2-4B delivers state-of-the-art performance among similarly sized models** and outperforms substantially larger open and proprietary baselines.
|
| 19 |
|
| 20 |
+
## Paper
|
| 21 |
+
|
| 22 |
+
[TimeLens2: Generalist Video Temporal Grounding with Multimodal LLMs](https://arxiv.org/abs/2607.17423)
|
| 23 |
+
|
| 24 |
## Benchmark Results
|
| 25 |
|
| 26 |

|
|
|
|
| 118 |
)
|
| 119 |
print(response[0])
|
| 120 |
```
|
| 121 |
+
|
| 122 |
+
## Citation
|
| 123 |
+
|
| 124 |
+
```bibtex
|
| 125 |
+
@misc{zhu2026timelens2,
|
| 126 |
+
title={TimeLens2: Generalist Video Temporal Grounding with Multimodal LLMs},
|
| 127 |
+
author={Yuhan Zhu and Changlian Ma and Xiangyu Zeng and Xinhao Li and Zhiqiu Zhang and Songze Li and Jun Zhang and Tianxiang Jiang and Yuandong Yang and Ziang Yan and Zikang Wang and Xinyu Chen and Haoran Chen and Shaowei Zhang and Limin Wang},
|
| 128 |
+
year={2026},
|
| 129 |
+
eprint={2607.17423},
|
| 130 |
+
archivePrefix={arXiv},
|
| 131 |
+
primaryClass={cs.CV},
|
| 132 |
+
url={https://arxiv.org/abs/2607.17423},
|
| 133 |
+
}
|
| 134 |
+
```
|