TheBloke commited on
Commit
650abd7
1 Parent(s): eba3a1f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -20
README.md CHANGED
@@ -1,13 +1,18 @@
1
  ---
 
2
  inference: false
3
  language:
4
  - en
5
  license: llama2
6
  model_creator: Mikael
7
- model_link: https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16
8
  model_name: Llama2 7B Guanaco QLoRA
9
  model_type: llama
10
  pipeline_tag: text-classification
 
 
 
 
 
11
  quantized_by: TheBloke
12
  tags:
13
  - llama-2
@@ -34,25 +39,27 @@ tags:
34
  - Model creator: [Mikael](https://huggingface.co/Mikael110)
35
  - Original model: [Llama2 7B Guanaco QLoRA](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16)
36
 
 
37
  ## Description
38
 
39
  This repo contains GGUF format model files for [Mikael10's Llama2 7B Guanaco QLoRA](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16).
40
 
41
  Many thanks to William Beauchamp from [Chai](https://chai-research.com/) for providing the hardware used to make and upload these files!
42
 
 
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.
47
 
48
- 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.
49
 
50
- Here are a list of clients and libraries that are known to support GGUF:
51
- * [llama.cpp](https://github.com/ggerganov/llama.cpp).
52
- * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
53
- * [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.
54
- * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
55
  * [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.
 
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,9 +68,9 @@ Here are a list of clients and libraries that are known to support GGUF:
61
  <!-- repositories-available start -->
62
  ## Repositories available
63
 
 
64
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GPTQ)
65
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF)
66
- * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGML)
67
  * [Mikael's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16)
68
  <!-- repositories-available end -->
69
 
@@ -77,12 +84,14 @@ Here are a list of clients and libraries that are known to support GGUF:
77
  ```
78
 
79
  <!-- prompt-template end -->
 
 
80
  <!-- compatibility_gguf start -->
81
  ## Compatibility
82
 
83
- 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)
84
 
85
- They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
86
 
87
  ## Explanation of quantisation methods
88
  <details>
@@ -123,21 +132,75 @@ Refer to the Provided Files table below to see what files use which methods, and
123
 
124
  <!-- README_GGUF.md-provided-files end -->
125
 
126
- <!-- README_GGUF.md-how-to-run start -->
127
- ## Example `llama.cpp` command
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
 
129
- Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
 
130
 
131
- 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.
132
 
 
 
133
  ```
134
- ./main -t 10 -ngl 32 -m llama-2-7b-guanaco-qlora.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Human: {prompt}\n### Assistant:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  ```
136
- 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`.
137
 
138
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
139
 
140
- 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.
141
 
142
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
143
 
@@ -194,10 +257,12 @@ For further support, and discussions on these models and AI in general, join us
194
 
195
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
196
 
197
- ## Thanks, and how to contribute.
198
 
199
  Thanks to the [chirper.ai](https://chirper.ai) team!
200
 
 
 
201
  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.
202
 
203
  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.
@@ -209,7 +274,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
209
 
210
  **Special thanks to**: Aemon Algiz.
211
 
212
- **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
213
 
214
 
215
  Thank you to all my generous patrons and donaters!
 
1
  ---
2
+ base_model: https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16
3
  inference: false
4
  language:
5
  - en
6
  license: llama2
7
  model_creator: Mikael
 
8
  model_name: Llama2 7B Guanaco QLoRA
9
  model_type: llama
10
  pipeline_tag: text-classification
11
+ prompt_template: '### Human: {prompt}
12
+
13
+ ### Assistant:
14
+
15
+ '
16
  quantized_by: TheBloke
17
  tags:
18
  - llama-2
 
39
  - Model creator: [Mikael](https://huggingface.co/Mikael110)
40
  - Original model: [Llama2 7B Guanaco QLoRA](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16)
41
 
42
+ <!-- description start -->
43
  ## Description
44
 
45
  This repo contains GGUF format model files for [Mikael10's Llama2 7B Guanaco QLoRA](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16).
46
 
47
  Many thanks to William Beauchamp from [Chai](https://chai-research.com/) for providing the hardware used to make and upload these files!
48
 
49
+ <!-- description end -->
50
  <!-- README_GGUF.md-about-gguf start -->
51
  ### About GGUF
52
 
53
+ 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.
54
 
55
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
56
 
57
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
58
+ * [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.
59
+ * [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.
60
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
 
61
  * [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.
62
+ * [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.
63
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
64
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
65
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
 
68
  <!-- repositories-available start -->
69
  ## Repositories available
70
 
71
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-AWQ)
72
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GPTQ)
73
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF)
 
74
  * [Mikael's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Mikael110/llama-2-7b-guanaco-fp16)
75
  <!-- repositories-available end -->
76
 
 
84
  ```
85
 
86
  <!-- prompt-template end -->
87
+
88
+
89
  <!-- compatibility_gguf start -->
90
  ## Compatibility
91
 
92
+ 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)
93
 
94
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
95
 
96
  ## Explanation of quantisation methods
97
  <details>
 
132
 
133
  <!-- README_GGUF.md-provided-files end -->
134
 
135
+ <!-- README_GGUF.md-how-to-download start -->
136
+ ## How to download GGUF files
137
+
138
+ **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.
139
+
140
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
141
+ - LM Studio
142
+ - LoLLMS Web UI
143
+ - Faraday.dev
144
+
145
+ ### In `text-generation-webui`
146
+
147
+ Under Download Model, you can enter the model repo: TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF and below it, a specific filename to download, such as: llama-2-7b-guanaco-qlora.q4_K_M.gguf.
148
+
149
+ Then click Download.
150
+
151
+ ### On the command line, including multiple files at once
152
+
153
+ I recommend using the `huggingface-hub` Python library:
154
+
155
+ ```shell
156
+ pip3 install huggingface-hub>=0.17.1
157
+ ```
158
+
159
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
160
+
161
+ ```shell
162
+ huggingface-cli download TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF llama-2-7b-guanaco-qlora.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
163
+ ```
164
 
165
+ <details>
166
+ <summary>More advanced huggingface-cli download usage</summary>
167
 
168
+ You can also download multiple files at once with a pattern:
169
 
170
+ ```shell
171
+ huggingface-cli download TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
172
  ```
173
+
174
+ 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).
175
+
176
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
177
+
178
+ ```shell
179
+ pip3 install hf_transfer
180
+ ```
181
+
182
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
183
+
184
+ ```shell
185
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF llama-2-7b-guanaco-qlora.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
186
+ ```
187
+
188
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
189
+ </details>
190
+ <!-- README_GGUF.md-how-to-download end -->
191
+
192
+ <!-- README_GGUF.md-how-to-run start -->
193
+ ## Example `llama.cpp` command
194
+
195
+ Make sure you are using `llama.cpp` from commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
196
+
197
+ ```shell
198
+ ./main -ngl 32 -m llama-2-7b-guanaco-qlora.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Human: {prompt}\n### Assistant:"
199
  ```
 
200
 
201
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
202
 
203
+ 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.
204
 
205
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
206
 
 
257
 
258
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
259
 
260
+ ## Thanks, and how to contribute
261
 
262
  Thanks to the [chirper.ai](https://chirper.ai) team!
263
 
264
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
265
+
266
  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.
267
 
268
  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.
 
274
 
275
  **Special thanks to**: Aemon Algiz.
276
 
277
+ **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
278
 
279
 
280
  Thank you to all my generous patrons and donaters!