TheBloke commited on
Commit
4fdbfb2
1 Parent(s): dbec1dc

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -20
README.md CHANGED
@@ -1,16 +1,21 @@
1
  ---
 
2
  datasets:
3
  - Fredithefish/openassistant-guanaco-unfiltered
4
  inference: false
5
  language:
6
  - en
7
  library_name: transformers
8
- license: llama2
9
  model_creator: Fredithefish
10
- model_link: https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored
11
  model_name: Guanaco 13B Uncensored
12
  model_type: llama
13
  pipeline_tag: conversational
 
 
 
 
 
14
  quantized_by: TheBloke
15
  ---
16
 
@@ -35,23 +40,25 @@ quantized_by: TheBloke
35
  - Model creator: [Fredithefish](https://huggingface.co/Fredithefish)
36
  - Original model: [Guanaco 13B Uncensored](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored)
37
 
 
38
  ## Description
39
 
40
  This repo contains GGUF format model files for [Fredithefish's Guanaco 13B Uncensored](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored).
41
 
 
42
  <!-- README_GGUF.md-about-gguf start -->
43
  ### About GGUF
44
 
45
- 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.
46
 
47
- 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.
48
 
49
- Here are a list of clients and libraries that are known to support GGUF:
50
- * [llama.cpp](https://github.com/ggerganov/llama.cpp).
51
- * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
52
- * [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.
53
- * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
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
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
56
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
57
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
@@ -60,6 +67,7 @@ Here are a list of clients and libraries that are known to support GGUF:
60
  <!-- repositories-available start -->
61
  ## Repositories available
62
 
 
63
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GPTQ)
64
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GGUF)
65
  * [Fredithefish's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored)
@@ -75,12 +83,21 @@ Here are a list of clients and libraries that are known to support GGUF:
75
  ```
76
 
77
  <!-- prompt-template end -->
 
 
 
 
 
 
 
 
 
78
  <!-- compatibility_gguf start -->
79
  ## Compatibility
80
 
81
- 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)
82
 
83
- They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
84
 
85
  ## Explanation of quantisation methods
86
  <details>
@@ -121,21 +138,75 @@ Refer to the Provided Files table below to see what files use which methods, and
121
 
122
  <!-- README_GGUF.md-provided-files end -->
123
 
124
- <!-- README_GGUF.md-how-to-run start -->
125
- ## Example `llama.cpp` command
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
- Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
 
 
 
 
 
 
 
 
 
 
 
 
128
 
129
- 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.
130
 
 
 
131
  ```
132
- ./main -t 10 -ngl 32 -m guanaco-13b-uncensored.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Human: {prompt}\n### Assistant:"
 
 
 
 
 
 
 
 
 
 
 
133
  ```
134
- 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`.
135
 
136
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
137
 
138
- 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.
139
 
140
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
141
 
@@ -192,10 +263,12 @@ For further support, and discussions on these models and AI in general, join us
192
 
193
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
194
 
195
- ## Thanks, and how to contribute.
196
 
197
  Thanks to the [chirper.ai](https://chirper.ai) team!
198
 
 
 
199
  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.
200
 
201
  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.
@@ -207,7 +280,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
207
 
208
  **Special thanks to**: Aemon Algiz.
209
 
210
- **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
211
 
212
 
213
  Thank you to all my generous patrons and donaters!
@@ -232,6 +305,8 @@ Guanaco-13B-Uncensored has been fine-tuned for 4 epochs on the [Unfiltered Guana
232
  ## Special thanks
233
  I would like to thank AutoMeta for providing me with the computing power necessary to train this model.
234
 
 
 
235
 
236
  ### Prompt Template
237
  ```
 
1
  ---
2
+ base_model: https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored
3
  datasets:
4
  - Fredithefish/openassistant-guanaco-unfiltered
5
  inference: false
6
  language:
7
  - en
8
  library_name: transformers
9
+ license: apache-2.0
10
  model_creator: Fredithefish
 
11
  model_name: Guanaco 13B Uncensored
12
  model_type: llama
13
  pipeline_tag: conversational
14
+ prompt_template: '### Human: {prompt}
15
+
16
+ ### Assistant:
17
+
18
+ '
19
  quantized_by: TheBloke
20
  ---
21
 
 
40
  - Model creator: [Fredithefish](https://huggingface.co/Fredithefish)
41
  - Original model: [Guanaco 13B Uncensored](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored)
42
 
43
+ <!-- description start -->
44
  ## Description
45
 
46
  This repo contains GGUF format model files for [Fredithefish's Guanaco 13B Uncensored](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored).
47
 
48
+ <!-- description end -->
49
  <!-- README_GGUF.md-about-gguf start -->
50
  ### About GGUF
51
 
52
+ 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.
53
 
54
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
55
 
56
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
57
+ * [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.
58
+ * [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.
59
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
 
60
  * [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.
61
+ * [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.
62
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
63
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
64
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
 
67
  <!-- repositories-available start -->
68
  ## Repositories available
69
 
70
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-AWQ)
71
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GPTQ)
72
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GGUF)
73
  * [Fredithefish's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored)
 
83
  ```
84
 
85
  <!-- prompt-template end -->
86
+ <!-- licensing start -->
87
+ ## Licensing
88
+
89
+ The creator of the source model has listed its license as `apache-2.0`, and this quantization has therefore used that same license.
90
+
91
+ As this model is based on Llama 2, it is also subject to the Meta Llama 2 license terms, and the license files for that are additionally included. It should therefore be considered as being claimed to be licensed under both licenses. I contacted Hugging Face for clarification on dual licensing but they do not yet have an official position. Should this change, or should Meta provide any feedback on this situation, I will update this section accordingly.
92
+
93
+ In the meantime, any questions regarding licensing, and in particular how these two licenses might interact, should be directed to the original model repository: [Fredithefish's Guanaco 13B Uncensored](https://huggingface.co/Fredithefish/Guanaco-13B-Uncensored).
94
+ <!-- licensing end -->
95
  <!-- compatibility_gguf start -->
96
  ## Compatibility
97
 
98
+ 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)
99
 
100
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
101
 
102
  ## Explanation of quantisation methods
103
  <details>
 
138
 
139
  <!-- README_GGUF.md-provided-files end -->
140
 
141
+ <!-- README_GGUF.md-how-to-download start -->
142
+ ## How to download GGUF files
143
+
144
+ **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.
145
+
146
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
147
+ - LM Studio
148
+ - LoLLMS Web UI
149
+ - Faraday.dev
150
+
151
+ ### In `text-generation-webui`
152
+
153
+ Under Download Model, you can enter the model repo: TheBloke/Guanaco-13B-Uncensored-GGUF and below it, a specific filename to download, such as: guanaco-13b-uncensored.q4_K_M.gguf.
154
+
155
+ Then click Download.
156
+
157
+ ### On the command line, including multiple files at once
158
+
159
+ I recommend using the `huggingface-hub` Python library:
160
+
161
+ ```shell
162
+ pip3 install huggingface-hub>=0.17.1
163
+ ```
164
+
165
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
166
+
167
+ ```shell
168
+ huggingface-cli download TheBloke/Guanaco-13B-Uncensored-GGUF guanaco-13b-uncensored.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
169
+ ```
170
+
171
+ <details>
172
+ <summary>More advanced huggingface-cli download usage</summary>
173
 
174
+ You can also download multiple files at once with a pattern:
175
+
176
+ ```shell
177
+ huggingface-cli download TheBloke/Guanaco-13B-Uncensored-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
178
+ ```
179
+
180
+ 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).
181
+
182
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
183
+
184
+ ```shell
185
+ pip3 install hf_transfer
186
+ ```
187
 
188
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
189
 
190
+ ```shell
191
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Guanaco-13B-Uncensored-GGUF guanaco-13b-uncensored.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
192
  ```
193
+
194
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
195
+ </details>
196
+ <!-- README_GGUF.md-how-to-download end -->
197
+
198
+ <!-- README_GGUF.md-how-to-run start -->
199
+ ## Example `llama.cpp` command
200
+
201
+ Make sure you are using `llama.cpp` from commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
202
+
203
+ ```shell
204
+ ./main -ngl 32 -m guanaco-13b-uncensored.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Human: {prompt}\n### Assistant:"
205
  ```
 
206
 
207
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
208
 
209
+ 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.
210
 
211
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
212
 
 
263
 
264
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
265
 
266
+ ## Thanks, and how to contribute
267
 
268
  Thanks to the [chirper.ai](https://chirper.ai) team!
269
 
270
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
271
+
272
  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.
273
 
274
  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.
 
280
 
281
  **Special thanks to**: Aemon Algiz.
282
 
283
+ **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
284
 
285
 
286
  Thank you to all my generous patrons and donaters!
 
305
  ## Special thanks
306
  I would like to thank AutoMeta for providing me with the computing power necessary to train this model.
307
 
308
+ Also thanks to TheBloke for creating [the GGUF](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GGUF) and [the GPTQ](https://huggingface.co/TheBloke/Guanaco-13B-Uncensored-GPTQ) quantizations for this model
309
+
310
 
311
  ### Prompt Template
312
  ```