Update README.md
Browse files
README.md
CHANGED
@@ -161,4 +161,17 @@ cont = model.generate(
|
|
161 |
)
|
162 |
text_outputs = tokenizer.batch_decode(cont, skip_special_tokens=True)
|
163 |
print(text_outputs[0])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
```
|
|
|
161 |
)
|
162 |
text_outputs = tokenizer.batch_decode(cont, skip_special_tokens=True)
|
163 |
print(text_outputs[0])
|
164 |
+
```
|
165 |
+
|
166 |
+
## Citation
|
167 |
+
|
168 |
+
If you find our repo useful for your research, please consider citing our paper:
|
169 |
+
|
170 |
+
```bibtex
|
171 |
+
@article{sun2025llava,
|
172 |
+
title={LLaVA-Scissor: Token Compression with Semantic Connected Components for Video LLMs},
|
173 |
+
author={Sun, Boyuan and Zhao, Jiaxing and Wei, Xihan and Hou, Qibin},
|
174 |
+
journal={arXiv preprint arXiv:2506.21862},
|
175 |
+
year={2025}
|
176 |
+
}
|
177 |
```
|