Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,40 @@
|
|
1 |
---
|
2 |
tags:
|
3 |
- vision
|
|
|
4 |
---
|
|
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
tags:
|
3 |
- vision
|
4 |
+
- image-text-to-text
|
5 |
---
|
6 |
+
NOTE: this model can only be used once https://github.com/huggingface/transformers/pull/29012 is merged
|
7 |
|
8 |
+
# LLaVa-Next (also known as LLaVa-1.6)
|
9 |
+
|
10 |
+
The LLaVA-NeXT model was proposed in [LLaVA-NeXT: Improved reasoning, OCR, and world knowledge](https://llava-vl.github.io/blog/2024-01-30-llava-next/) by Haotian Liu, Chunyuan Li, Yuheng Li, Bo Li, Yuanhan Zhang, Sheng Shen, Yong Jae Lee. LLaVa-NeXT (also called LLaVa-1.6) improves upon [LLaVa](llava) by increasing the input image resolution and training on an improved visual instruction tuning dataset to improve OCR and common sense reasoning.
|
11 |
+
|
12 |
+
Disclaimer: The team releasing LLaVa-NeXT did not write a model card for this model so this model card has been written by the Hugging Face team.
|
13 |
+
|
14 |
+
## Model description
|
15 |
+
|
16 |
+
LLaVa combines a pre-trained large language model with a pre-trained vision encoder for multimodal chatbot use cases.
|
17 |
+
|
18 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/62441d1d9fdefb55a0b7d12c/FPshq08TKYD0e-qwPLDVO.png)
|
19 |
+
|
20 |
+
## Intended uses & limitations
|
21 |
+
|
22 |
+
You can use the raw model for tasks like image captioning, visual question answering, multimodal chatbot use cases. See the [model hub](https://huggingface.co/models?search=llava-hf) to look for
|
23 |
+
other versions on a task that interests you.
|
24 |
+
|
25 |
+
### How to use
|
26 |
+
|
27 |
+
We refer to the [documentation](https://huggingface.co/transformers/main/model_doc/llava_next.html#).
|
28 |
+
|
29 |
+
### BibTeX entry and citation info
|
30 |
+
|
31 |
+
```bibtex
|
32 |
+
@misc{liu2023improved,
|
33 |
+
title={Improved Baselines with Visual Instruction Tuning},
|
34 |
+
author={Haotian Liu and Chunyuan Li and Yuheng Li and Yong Jae Lee},
|
35 |
+
year={2023},
|
36 |
+
eprint={2310.03744},
|
37 |
+
archivePrefix={arXiv},
|
38 |
+
primaryClass={cs.CV}
|
39 |
+
}
|
40 |
+
```
|