Transformers
GGUF
llama
TheBloke commited on
Commit
4eed93e
1 Parent(s): bcd2740

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -20
README.md CHANGED
@@ -1,10 +1,15 @@
1
  ---
 
2
  inference: false
3
  license: llama2
4
  model_creator: WizardLM
5
- model_link: https://huggingface.co/WizardLM/WizardLM-70B-V1.0
6
  model_name: WizardLM 70B V1.0
7
  model_type: llama
 
 
 
 
 
8
  quantized_by: TheBloke
9
  ---
10
 
@@ -29,23 +34,25 @@ quantized_by: TheBloke
29
  - Model creator: [WizardLM](https://huggingface.co/WizardLM)
30
  - Original model: [WizardLM 70B V1.0](https://huggingface.co/WizardLM/WizardLM-70B-V1.0)
31
 
 
32
  ## Description
33
 
34
  This repo contains GGUF format model files for [WizardLM's WizardLM 70B V1.0](https://huggingface.co/WizardLM/WizardLM-70B-V1.0).
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, with many features and powerful extensions.
46
- * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with full GPU accel across multiple platforms and GPU architectures. Especially good for story telling.
47
- * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
48
  * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
 
49
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
50
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
51
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
@@ -54,9 +61,9 @@ Here are a list of clients and libraries that are known to support GGUF:
54
  <!-- repositories-available start -->
55
  ## Repositories available
56
 
 
57
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-GPTQ)
58
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-GGUF)
59
- * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-GGML)
60
  * [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardLM-70B-V1.0)
61
  <!-- repositories-available end -->
62
 
@@ -69,12 +76,14 @@ A chat between a curious user and an artificial intelligence assistant. The assi
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>
@@ -147,21 +156,75 @@ del wizardlm-70b-v1.0.Q8_0.gguf-split-a wizardlm-70b-v1.0.Q8_0.gguf-split-b
147
  </details>
148
  <!-- README_GGUF.md-provided-files end -->
149
 
150
- <!-- README_GGUF.md-how-to-run start -->
151
- ## Example `llama.cpp` command
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
 
153
- Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
 
 
154
 
155
- 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.
156
 
 
 
 
 
157
  ```
158
- ./main -t 10 -ngl 32 -m wizardlm-70b-v1.0.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: {prompt} ASSISTANT:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  ```
160
- 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`.
161
 
162
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
163
 
164
- 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.
165
 
166
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
167
 
@@ -218,10 +281,12 @@ For further support, and discussions on these models and AI in general, join us
218
 
219
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
220
 
221
- ## Thanks, and how to contribute.
222
 
223
  Thanks to the [chirper.ai](https://chirper.ai) team!
224
 
 
 
225
  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.
226
 
227
  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.
@@ -233,7 +298,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
233
 
234
  **Special thanks to**: Aemon Algiz.
235
 
236
- **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
237
 
238
 
239
  Thank you to all my generous patrons and donaters!
@@ -330,6 +395,16 @@ A chat between a curious user and an artificial intelligence assistant. The assi
330
 
331
  We provide the inference WizardLM demo code [here](https://github.com/nlpxucan/WizardLM/tree/main/demo).
332
 
 
 
 
 
 
 
 
 
 
 
333
 
334
  ❗<b>To commen concern about dataset:</b>
335
 
 
1
  ---
2
+ base_model: https://huggingface.co/WizardLM/WizardLM-70B-V1.0
3
  inference: false
4
  license: llama2
5
  model_creator: WizardLM
 
6
  model_name: WizardLM 70B V1.0
7
  model_type: llama
8
+ prompt_template: 'A chat between a curious user and an artificial intelligence assistant.
9
+ The assistant gives helpful, detailed, and polite answers to the user''s questions.
10
+ USER: {prompt} ASSISTANT:
11
+
12
+ '
13
  quantized_by: TheBloke
14
  ---
15
 
 
34
  - Model creator: [WizardLM](https://huggingface.co/WizardLM)
35
  - Original model: [WizardLM 70B V1.0](https://huggingface.co/WizardLM/WizardLM-70B-V1.0)
36
 
37
+ <!-- description start -->
38
  ## Description
39
 
40
  This repo contains GGUF format model files for [WizardLM's WizardLM 70B V1.0](https://huggingface.co/WizardLM/WizardLM-70B-V1.0).
41
 
42
+ <!-- description end -->
43
  <!-- README_GGUF.md-about-gguf start -->
44
  ### About GGUF
45
 
46
+ 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. GGUF offers numerous advantages over GGML, such as better tokenisation, and support for special tokens. It is also supports metadata, and is designed to be extensible.
47
 
48
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
49
 
50
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
51
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
52
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
53
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
 
54
  * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
55
+ * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
56
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
57
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
58
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
 
61
  <!-- repositories-available start -->
62
  ## Repositories available
63
 
64
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-AWQ)
65
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-GPTQ)
66
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardLM-70B-V1.0-GGUF)
 
67
  * [WizardLM's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/WizardLM/WizardLM-70B-V1.0)
68
  <!-- repositories-available end -->
69
 
 
76
  ```
77
 
78
  <!-- prompt-template end -->
79
+
80
+
81
  <!-- compatibility_gguf start -->
82
  ## Compatibility
83
 
84
+ These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221)
85
 
86
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
87
 
88
  ## Explanation of quantisation methods
89
  <details>
 
156
  </details>
157
  <!-- README_GGUF.md-provided-files end -->
158
 
159
+ <!-- README_GGUF.md-how-to-download start -->
160
+ ## How to download GGUF files
161
+
162
+ **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file.
163
+
164
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
165
+ - LM Studio
166
+ - LoLLMS Web UI
167
+ - Faraday.dev
168
+
169
+ ### In `text-generation-webui`
170
+
171
+ Under Download Model, you can enter the model repo: TheBloke/WizardLM-70B-V1.0-GGUF and below it, a specific filename to download, such as: wizardlm-70b-v1.0.q4_K_M.gguf.
172
+
173
+ Then click Download.
174
+
175
+ ### On the command line, including multiple files at once
176
+
177
+ I recommend using the `huggingface-hub` Python library:
178
+
179
+ ```shell
180
+ pip3 install huggingface-hub>=0.17.1
181
+ ```
182
+
183
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
184
+
185
+ ```shell
186
+ huggingface-cli download TheBloke/WizardLM-70B-V1.0-GGUF wizardlm-70b-v1.0.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
187
+ ```
188
+
189
+ <details>
190
+ <summary>More advanced huggingface-cli download usage</summary>
191
+
192
+ You can also download multiple files at once with a pattern:
193
 
194
+ ```shell
195
+ huggingface-cli download TheBloke/WizardLM-70B-V1.0-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
196
+ ```
197
 
198
+ For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli).
199
 
200
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
201
+
202
+ ```shell
203
+ pip3 install hf_transfer
204
  ```
205
+
206
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
207
+
208
+ ```shell
209
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/WizardLM-70B-V1.0-GGUF wizardlm-70b-v1.0.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
210
+ ```
211
+
212
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
213
+ </details>
214
+ <!-- README_GGUF.md-how-to-download end -->
215
+
216
+ <!-- README_GGUF.md-how-to-run start -->
217
+ ## Example `llama.cpp` command
218
+
219
+ Make sure you are using `llama.cpp` from commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
220
+
221
+ ```shell
222
+ ./main -ngl 32 -m wizardlm-70b-v1.0.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: {prompt} ASSISTANT:"
223
  ```
 
224
 
225
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
226
 
227
+ Change `-c 4096` to the desired sequence length. 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.
228
 
229
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
230
 
 
281
 
282
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
283
 
284
+ ## Thanks, and how to contribute
285
 
286
  Thanks to the [chirper.ai](https://chirper.ai) team!
287
 
288
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
289
+
290
  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.
291
 
292
  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.
 
298
 
299
  **Special thanks to**: Aemon Algiz.
300
 
301
+ **Patreon special mentions**: Alicia Loh, Stephen Murray, K, Ajan Kanaga, RoA, Magnesian, Deo Leter, Olakabola, Eugene Pentland, zynix, Deep Realms, Raymond Fosdick, Elijah Stavena, Iucharbius, Erik Bjäreholt, Luis Javier Navarrete Lozano, Nicholas, theTransient, John Detwiler, alfie_i, knownsqashed, Mano Prime, Willem Michiel, Enrico Ros, LangChain4j, OG, Michael Dempsey, Pierre Kircher, Pedro Madruga, James Bentley, Thomas Belote, Luke @flexchar, Leonard Tan, Johann-Peter Hartmann, Illia Dulskyi, Fen Risland, Chadd, S_X, Jeff Scroggin, Ken Nordquist, Sean Connelly, Artur Olbinski, Swaroop Kallakuri, Jack West, Ai Maven, David Ziegler, Russ Johnson, transmissions 11, John Villwock, Alps Aficionado, Clay Pascal, Viktor Bowallius, Subspace Studios, Rainer Wilmers, Trenton Dambrowitz, vamX, Michael Levine, 준교 김, Brandon Frisco, Kalila, Trailburnt, Randy H, Talal Aujan, Nathan Dryer, Vadim, 阿明, ReadyPlayerEmma, Tiffany J. Kim, George Stoitzev, Spencer Kim, Jerry Meng, Gabriel Tamborski, Cory Kujawski, Jeffrey Morgan, Spiking Neurons AB, Edmond Seymore, Alexandros Triantafyllidis, Lone Striker, Cap'n Zoog, Nikolai Manek, danny, ya boyyy, Derek Yates, usrbinkat, Mandus, TL, Nathan LeClaire, subjectnull, Imad Khwaja, webtim, Raven Klaugh, Asp the Wyvern, Gabriel Puliatti, Caitlyn Gatomon, Joseph William Delisle, Jonathan Leane, Luke Pendergrass, SuperWojo, Sebastain Graf, Will Dee, Fred von Graf, Andrey, Dan Guido, Daniel P. Andersen, Nitin Borwankar, Elle, Vitor Caleffi, biorpg, jjj, NimbleBox.ai, Pieter, Matthew Berman, terasurfer, Michael Davis, Alex, Stanislav Ovsiannikov
302
 
303
 
304
  Thank you to all my generous patrons and donaters!
 
395
 
396
  We provide the inference WizardLM demo code [here](https://github.com/nlpxucan/WizardLM/tree/main/demo).
397
 
398
+ Please cite the paper if you use the data or code from WizardLM.
399
+
400
+ ```
401
+ @article{xu2023wizardlm,
402
+ title={Wizardlm: Empowering large language models to follow complex instructions},
403
+ author={Xu, Can and Sun, Qingfeng and Zheng, Kai and Geng, Xiubo and Zhao, Pu and Feng, Jiazhan and Tao, Chongyang and Jiang, Daxin},
404
+ journal={arXiv preprint arXiv:2304.12244},
405
+ year={2023}
406
+ }
407
+ ```
408
 
409
  ❗<b>To commen concern about dataset:</b>
410