TheBloke commited on
Commit
9faa959
1 Parent(s): c18573f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +261 -0
README.md ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ license: llama2
4
+ model_creator: lmsys
5
+ model_link: https://huggingface.co/lmsys/vicuna-13b-v1.5
6
+ model_name: Vicuna 13B v1.5
7
+ model_type: llama
8
+ quantized_by: TheBloke
9
+ ---
10
+
11
+ <!-- header start -->
12
+ <!-- 200823 -->
13
+ <div style="width: auto; margin-left: auto; margin-right: auto">
14
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
15
+ </div>
16
+ <div style="display: flex; justify-content: space-between; width: 100%;">
17
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
18
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
19
+ </div>
20
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
21
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
22
+ </div>
23
+ </div>
24
+ <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div>
25
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
26
+ <!-- header end -->
27
+
28
+ # Vicuna 13B v1.5 - GGUF
29
+ - Model creator: [lmsys](https://huggingface.co/lmsys)
30
+ - Original model: [Vicuna 13B v1.5](https://huggingface.co/lmsys/vicuna-13b-v1.5)
31
+
32
+ ## Description
33
+
34
+ This repo contains GGUF format model files for [lmsys's Vicuna 13B v1.5](https://huggingface.co/lmsys/vicuna-13b-v1.5).
35
+
36
+ <!-- README_GGUF.md-about-gguf start -->
37
+ ### About GGUF
38
+
39
+ GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
40
+
41
+ The key benefit of GGUF is that it is a extensible, future-proof format which stores more information about the model as metadata. It also includes significantly improved tokenization code, including for the first time full support for special tokens. This should improve performance, especially with models that use new special tokens and implement custom prompt templates.
42
+
43
+ Here are a list of clients and libraries that are known to support GGUF:
44
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp).
45
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI. Supports GGUF with GPU acceleration via the ctransformers backend - llama-cpp-python backend should work soon too.
46
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), now supports GGUF as of release 1.41! A powerful GGML web UI, with full GPU accel. Especially good for story telling.
47
+ * [LM Studio](https://lmstudio.ai/), version 0.2.2 and later support GGUF. A fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
48
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), should now work, choose the `c_transformers` backend. A great web UI with many interesting features. Supports CUDA GPU acceleration.
49
+ * [ctransformers](https://github.com/marella/ctransformers), now supports GGUF as of version 0.2.24! A Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
50
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), supports GGUF as of version 0.1.79. A Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
51
+ * [candle](https://github.com/huggingface/candle), added GGUF support on August 22nd. Candle is a Rust ML framework with a focus on performance, including GPU support, and ease of use.
52
+
53
+ <!-- README_GGUF.md-about-gguf end -->
54
+ <!-- repositories-available start -->
55
+ ## Repositories available
56
+
57
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GPTQ)
58
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF)
59
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGML)
60
+ * [lmsys's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/lmsys/vicuna-13b-v1.5)
61
+ <!-- repositories-available end -->
62
+
63
+ <!-- prompt-template start -->
64
+ ## Prompt template: Vicuna
65
+
66
+ ```
67
+ A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: {prompt} ASSISTANT:
68
+
69
+ ```
70
+
71
+ <!-- prompt-template end -->
72
+ <!-- compatibility_gguf start -->
73
+ ## Compatibility
74
+
75
+ These quantised GGUF files are compatible with llama.cpp from August 21st 2023 onwards, as of commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9)
76
+
77
+ They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
78
+
79
+ ## Explanation of quantisation methods
80
+ <details>
81
+ <summary>Click to see details</summary>
82
+
83
+ The new methods available are:
84
+ * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw)
85
+ * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw.
86
+ * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw.
87
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
88
+ * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw
89
+
90
+ Refer to the Provided Files table below to see what files use which methods, and how.
91
+ </details>
92
+ <!-- compatibility_gguf end -->
93
+
94
+ <!-- README_GGUF.md-provided-files start -->
95
+ ## Provided files
96
+
97
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
98
+ | ---- | ---- | ---- | ---- | ---- | ----- |
99
+ | [vicuna-13b-v1.5.Q2_K.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q2_K.gguf) | Q2_K | 2 | 5.43 GB| 7.93 GB | smallest, significant quality loss - not recommended for most purposes |
100
+ | [vicuna-13b-v1.5.Q3_K_S.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q3_K_S.gguf) | Q3_K_S | 3 | 5.66 GB| 8.16 GB | very small, high quality loss |
101
+ | [vicuna-13b-v1.5.Q3_K_M.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q3_K_M.gguf) | Q3_K_M | 3 | 6.34 GB| 8.84 GB | very small, high quality loss |
102
+ | [vicuna-13b-v1.5.Q3_K_L.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q3_K_L.gguf) | Q3_K_L | 3 | 6.93 GB| 9.43 GB | small, substantial quality loss |
103
+ | [vicuna-13b-v1.5.Q4_0.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q4_0.gguf) | Q4_0 | 4 | 7.37 GB| 9.87 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
104
+ | [vicuna-13b-v1.5.Q4_K_S.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q4_K_S.gguf) | Q4_K_S | 4 | 7.41 GB| 9.91 GB | small, greater quality loss |
105
+ | [vicuna-13b-v1.5.Q4_K_M.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q4_K_M.gguf) | Q4_K_M | 4 | 7.87 GB| 10.37 GB | medium, balanced quality - recommended |
106
+ | [vicuna-13b-v1.5.Q5_0.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q5_0.gguf) | Q5_0 | 5 | 8.97 GB| 11.47 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
107
+ | [vicuna-13b-v1.5.Q5_K_S.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q5_K_S.gguf) | Q5_K_S | 5 | 8.97 GB| 11.47 GB | large, low quality loss - recommended |
108
+ | [vicuna-13b-v1.5.Q5_K_M.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q5_K_M.gguf) | Q5_K_M | 5 | 9.23 GB| 11.73 GB | large, very low quality loss - recommended |
109
+ | [vicuna-13b-v1.5.Q6_K.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q6_K.gguf) | Q6_K | 6 | 10.68 GB| 13.18 GB | very large, extremely low quality loss |
110
+ | [vicuna-13b-v1.5.Q8_0.gguf](https://huggingface.co/TheBloke/vicuna-13B-v1.5-GGUF/blob/main/vicuna-13b-v1.5.Q8_0.gguf) | Q8_0 | 8 | 13.83 GB| 16.33 GB | very large, extremely low quality loss - not recommended |
111
+
112
+ **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
113
+
114
+
115
+
116
+ <!-- README_GGUF.md-provided-files end -->
117
+
118
+ <!-- README_GGUF.md-how-to-run start -->
119
+ ## Example `llama.cpp` command
120
+
121
+ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
122
+
123
+ For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
124
+
125
+ ```
126
+ ./main -t 10 -ngl 32 -m vicuna-13b-v1.5.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: Write a story about llamas ASSISTANT:"
127
+ ```
128
+ Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`. If offloading all layers to GPU, set `-t 1`.
129
+
130
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
131
+
132
+ Change `-c 4096` to the desired sequence length for this model. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically.
133
+
134
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
135
+
136
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)
137
+
138
+ ## How to run in `text-generation-webui`
139
+
140
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
141
+
142
+ ## How to run from Python code
143
+
144
+ You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries.
145
+
146
+ ### How to load this model from Python using ctransformers
147
+
148
+ #### First install the package
149
+
150
+ ```bash
151
+ # Base ctransformers with no GPU acceleration
152
+ pip install ctransformers>=0.2.24
153
+ # Or with CUDA GPU acceleration
154
+ pip install ctransformers[cuda]>=0.2.24
155
+ # Or with ROCm GPU acceleration
156
+ CT_HIPBLAS=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
157
+ # Or with Metal GPU acceleration for macOS systems
158
+ CT_METAL=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
159
+ ```
160
+
161
+ #### Simple example code to load one of these GGUF models
162
+
163
+ ```python
164
+ from ctransformers import AutoModelForCausalLM
165
+
166
+ # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
167
+ llm = AutoModelForCausalLM.from_pretrained("TheBloke/vicuna-13B-v1.5-GGML", model_file="vicuna-13b-v1.5.q4_K_M.gguf", model_type="llama", gpu_layers=50)
168
+
169
+ print(llm("AI is going to"))
170
+ ```
171
+
172
+ ## How to use with LangChain
173
+
174
+ Here's guides on using llama-cpp-python or ctransformers with LangChain:
175
+
176
+ * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
177
+ * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
178
+
179
+ <!-- README_GGUF.md-how-to-run end -->
180
+
181
+ <!-- footer start -->
182
+ <!-- 200823 -->
183
+ ## Discord
184
+
185
+ For further support, and discussions on these models and AI in general, join us at:
186
+
187
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
188
+
189
+ ## Thanks, and how to contribute.
190
+
191
+ Thanks to the [chirper.ai](https://chirper.ai) team!
192
+
193
+ I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
194
+
195
+ If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
196
+
197
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
198
+
199
+ * Patreon: https://patreon.com/TheBlokeAI
200
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
201
+
202
+ **Special thanks to**: Aemon Algiz.
203
+
204
+ **Patreon special mentions**: Russ Johnson, J, alfie_i, Alex, NimbleBox.ai, Chadd, Mandus, Nikolai Manek, Ken Nordquist, ya boyyy, Illia Dulskyi, Viktor Bowallius, vamX, Iucharbius, zynix, Magnesian, Clay Pascal, Pierre Kircher, Enrico Ros, Tony Hughes, Elle, Andrey, knownsqashed, Deep Realms, Jerry Meng, Lone Striker, Derek Yates, Pyrater, Mesiah Bishop, James Bentley, Femi Adebogun, Brandon Frisco, SuperWojo, Alps Aficionado, Michael Dempsey, Vitor Caleffi, Will Dee, Edmond Seymore, usrbinkat, LangChain4j, Kacper Wikieł, Luke Pendergrass, John Detwiler, theTransient, Nathan LeClaire, Tiffany J. Kim, biorpg, Eugene Pentland, Stanislav Ovsiannikov, Fred von Graf, terasurfer, Kalila, Dan Guido, Nitin Borwankar, 阿明, Ai Maven, John Villwock, Gabriel Puliatti, Stephen Murray, Asp the Wyvern, danny, Chris Smitley, ReadyPlayerEmma, S_X, Daniel P. Andersen, Olakabola, Jeffrey Morgan, Imad Khwaja, Caitlyn Gatomon, webtim, Alicia Loh, Trenton Dambrowitz, Swaroop Kallakuri, Erik Bjäreholt, Leonard Tan, Spiking Neurons AB, Luke @flexchar, Ajan Kanaga, Thomas Belote, Deo Leter, RoA, Willem Michiel, transmissions 11, subjectnull, Matthew Berman, Joseph William Delisle, David Ziegler, Michael Davis, Johann-Peter Hartmann, Talal Aujan, senxiiz, Artur Olbinski, Rainer Wilmers, Spencer Kim, Fen Risland, Cap'n Zoog, Rishabh Srivastava, Michael Levine, Geoffrey Montalvo, Sean Connelly, Alexandros Triantafyllidis, Pieter, Gabriel Tamborski, Sam, Subspace Studios, Junyu Yang, Pedro Madruga, Vadim, Cory Kujawski, K, Raven Klaugh, Randy H, Mano Prime, Sebastain Graf, Space Cruiser
205
+
206
+
207
+ Thank you to all my generous patrons and donaters!
208
+
209
+ And thank you again to a16z for their generous grant.
210
+
211
+ <!-- footer end -->
212
+
213
+ <!-- original-model-card start -->
214
+ # Original model card: lmsys's Vicuna 13B v1.5
215
+
216
+
217
+ # Vicuna Model Card
218
+
219
+ ## Model Details
220
+
221
+ Vicuna is a chat assistant trained by fine-tuning Llama 2 on user-shared conversations collected from ShareGPT.
222
+
223
+ - **Developed by:** [LMSYS](https://lmsys.org/)
224
+ - **Model type:** An auto-regressive language model based on the transformer architecture
225
+ - **License:** Llama 2 Community License Agreement
226
+ - **Finetuned from model:** [Llama 2](https://arxiv.org/abs/2307.09288)
227
+
228
+ ### Model Sources
229
+
230
+ - **Repository:** https://github.com/lm-sys/FastChat
231
+ - **Blog:** https://lmsys.org/blog/2023-03-30-vicuna/
232
+ - **Paper:** https://arxiv.org/abs/2306.05685
233
+ - **Demo:** https://chat.lmsys.org/
234
+
235
+ ## Uses
236
+
237
+ The primary use of Vicuna is research on large language models and chatbots.
238
+ The primary intended users of the model are researchers and hobbyists in natural language processing, machine learning, and artificial intelligence.
239
+
240
+ ## How to Get Started with the Model
241
+
242
+ - Command line interface: https://github.com/lm-sys/FastChat#vicuna-weights
243
+ - APIs (OpenAI API, Huggingface API): https://github.com/lm-sys/FastChat/tree/main#api
244
+
245
+ ## Training Details
246
+
247
+ Vicuna v1.5 is fine-tuned from Llama 2 with supervised instruction fine-tuning.
248
+ The training data is around 125K conversations collected from ShareGPT.com.
249
+ See more details in the "Training Details of Vicuna Models" section in the appendix of this [paper](https://arxiv.org/pdf/2306.05685.pdf).
250
+
251
+ ## Evaluation
252
+
253
+ ![Evaluation Results](https://github.com/lm-sys/lm-sys.github.io/blob/main/public/images/webdata/vicuna_v1.5_eval.png?raw=true)
254
+
255
+ Vicuna is evaluated with standard benchmarks, human preference, and LLM-as-a-judge. See more details in this [paper](https://arxiv.org/pdf/2306.05685.pdf) and [leaderboard](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard).
256
+
257
+ ## Difference between different versions of Vicuna
258
+
259
+ See [vicuna_weights_version.md](https://github.com/lm-sys/FastChat/blob/main/docs/vicuna_weights_version.md)
260
+
261
+ <!-- original-model-card end -->