cjpais commited on
Commit
aad18aa
1 Parent(s): 5fc6536

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # GGUF Quantized LLaVA 1.6 Vicuna 7B
6
+
7
+ Updated quants and projector from [PR #5267](https://github.com/ggerganov/llama.cpp/pull/5267)
8
+
9
+ ## Provided files
10
+ | Name | Quant method | Bits | Size | Use case |
11
+ | ---- | ---- | ---- | ---- | ----- |
12
+ | [llava-v1.6-vicuna-7b.Q3_K_XS.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q3_K_XS.gguf) | Q3_K_XS | 3 | 2.99 GB| very small, high quality loss |
13
+ | [llava-v1.6-vicuna-7b.Q3_K_M.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q3_K_M.gguf) | Q3_K_M | 3 | 3.52 GB| very small, high quality loss |
14
+ | [llava-v1.6-vicuna-7b.Q4_K_M.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q4_K_M.gguf) | Q4_K_M | 4 | 4.37 GB| medium, balanced quality - recommended |
15
+ | [llava-v1.6-vicuna-7b.Q5_K_S.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q5_K_S.gguf) | Q5_K_S | 5 | 5.00 GB| large, low quality loss - recommended |
16
+ | [llava-v1.6-vicuna-7b.Q5_K_M.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q5_K_M.gguf) | Q5_K_M | 5 | 5.13 GB| large, very low quality loss - recommended |
17
+ | [llava-v1.6-vicuna-7b.Q6_K.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q6_K.gguf) | Q6_K | 6 | 5.94 GB| very large, extremely low quality loss |
18
+ | [llava-v1.6-vicuna-7b.Q8_0.gguf](https://huggingface.co/cjpais/llava-1.6-vicuna-7b-gguf/blob/main/llava-v1.6-vicuna-7b.Q8_0.gguf) | Q8_0 | 8 | 7.7 GB| very large, extremely low quality loss - not recommended |
19
+
20
+ <br>
21
+ <br>
22
+
23
+ # ORIGINAL LLaVA Model Card
24
+
25
+ ## Model details
26
+
27
+ **Model type:**
28
+ LLaVA is an open-source chatbot trained by fine-tuning LLM on multimodal instruction-following data.
29
+ It is an auto-regressive language model, based on the transformer architecture.
30
+ Base LLM: [lmsys/vicuna-7b-v1.5](https://huggingface.co/lmsys/vicuna-7b-v1.5)
31
+
32
+ **Model date:**
33
+ LLaVA-v1.6-Vicuna-7B was trained in December 2023.
34
+
35
+ **Paper or resources for more information:**
36
+ https://llava-vl.github.io/
37
+
38
+ ## License
39
+ Llama 2 is licensed under the LLAMA 2 Community License,
40
+ Copyright (c) Meta Platforms, Inc. All Rights Reserved.
41
+
42
+ **Where to send questions or comments about the model:**
43
+ https://github.com/haotian-liu/LLaVA/issues
44
+
45
+ ## Intended use
46
+ **Primary intended uses:**
47
+ The primary use of LLaVA is research on large multimodal models and chatbots.
48
+
49
+ **Primary intended users:**
50
+ The primary intended users of the model are researchers and hobbyists in computer vision, natural language processing, machine learning, and artificial intelligence.
51
+
52
+ ## Training dataset
53
+ - 558K filtered image-text pairs from LAION/CC/SBU, captioned by BLIP.
54
+ - 158K GPT-generated multimodal instruction-following data.
55
+ - 500K academic-task-oriented VQA data mixture.
56
+ - 50K GPT-4V data mixture.
57
+ - 40K ShareGPT data.
58
+
59
+ ## Evaluation dataset
60
+ A collection of 12 benchmarks, including 5 academic VQA benchmarks and 7 recent benchmarks specifically proposed for instruction-following LMMs.