TheBloke commited on
Commit
014190f
1 Parent(s): 6f79e45

Upload README.md

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