Update README.md
Browse files
README.md
CHANGED
@@ -91,4 +91,17 @@ cont = model.generate(
|
|
91 |
)
|
92 |
text_outputs = tokenizer.batch_decode(cont, skip_special_tokens=True)
|
93 |
print(text_outputs[0])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
```
|
|
|
91 |
)
|
92 |
text_outputs = tokenizer.batch_decode(cont, skip_special_tokens=True)
|
93 |
print(text_outputs[0])
|
94 |
+
```
|
95 |
+
|
96 |
+
## Citation
|
97 |
+
|
98 |
+
If you find our repo useful for your research, please consider citing our paper:
|
99 |
+
|
100 |
+
```bibtex
|
101 |
+
@article{sun2025llava,
|
102 |
+
title={LLaVA-Scissor: Token Compression with Semantic Connected Components for Video LLMs},
|
103 |
+
author={Sun, Boyuan and Zhao, Jiaxing and Wei, Xihan and Hou, Qibin},
|
104 |
+
journal={arXiv preprint arXiv:2506.21862},
|
105 |
+
year={2025}
|
106 |
+
}
|
107 |
```
|