TheBloke commited on
Commit
09705a9
1 Parent(s): 3992798

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -19
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  inference: false
3
  license: llama2
4
  model-index:
@@ -15,9 +16,21 @@ model-index:
15
  task:
16
  type: text-generation
17
  model_creator: Phind
18
- model_link: https://huggingface.co/Phind/Phind-CodeLlama-34B-v2
19
  model_name: CodeLlama 34B v2
20
  model_type: llama
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  quantized_by: TheBloke
22
  tags:
23
  - code llama
@@ -44,23 +57,25 @@ tags:
44
  - Model creator: [Phind](https://huggingface.co/Phind)
45
  - Original model: [CodeLlama 34B v2](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2)
46
 
 
47
  ## Description
48
 
49
  This repo contains GGUF format model files for [Phind's CodeLlama 34B v2](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2).
50
 
 
51
  <!-- README_GGUF.md-about-gguf start -->
52
  ### About GGUF
53
 
54
- 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.
55
 
56
- 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.
57
 
58
- Here are a list of clients and libraries that are known to support GGUF:
59
- * [llama.cpp](https://github.com/ggerganov/llama.cpp).
60
- * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
61
- * [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.
62
- * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
63
  * [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.
 
64
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
65
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
66
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
@@ -69,6 +84,7 @@ Here are a list of clients and libraries that are known to support GGUF:
69
  <!-- repositories-available start -->
70
  ## Repositories available
71
 
 
72
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-GPTQ)
73
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-GGUF)
74
  * [Phind's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2)
@@ -89,12 +105,14 @@ Here are a list of clients and libraries that are known to support GGUF:
89
  ```
90
 
91
  <!-- prompt-template end -->
 
 
92
  <!-- compatibility_gguf start -->
93
  ## Compatibility
94
 
95
- 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)
96
 
97
- They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
98
 
99
  ## Explanation of quantisation methods
100
  <details>
@@ -135,21 +153,75 @@ Refer to the Provided Files table below to see what files use which methods, and
135
 
136
  <!-- README_GGUF.md-provided-files end -->
137
 
138
- <!-- README_GGUF.md-how-to-run start -->
139
- ## Example `llama.cpp` command
 
 
 
 
 
 
 
 
 
 
 
140
 
141
- Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
142
 
143
- 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.
144
 
 
 
 
 
145
  ```
146
- ./main -t 10 -ngl 32 -m phind-codellama-34b-v2.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### System Prompt\n{system_message}\n\n### User Message\n{prompt}\n\n### Assistant"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  ```
148
- 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`.
149
 
150
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
151
 
152
- 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.
153
 
154
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
155
 
@@ -206,10 +278,12 @@ For further support, and discussions on these models and AI in general, join us
206
 
207
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
208
 
209
- ## Thanks, and how to contribute.
210
 
211
  Thanks to the [chirper.ai](https://chirper.ai) team!
212
 
 
 
213
  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.
214
 
215
  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.
@@ -221,7 +295,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
221
 
222
  **Special thanks to**: Aemon Algiz.
223
 
224
- **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
225
 
226
 
227
  Thank you to all my generous patrons and donaters!
 
1
  ---
2
+ base_model: https://huggingface.co/Phind/Phind-CodeLlama-34B-v2
3
  inference: false
4
  license: llama2
5
  model-index:
 
16
  task:
17
  type: text-generation
18
  model_creator: Phind
 
19
  model_name: CodeLlama 34B v2
20
  model_type: llama
21
+ prompt_template: '### System Prompt
22
+
23
+ {system_message}
24
+
25
+
26
+ ### User Message
27
+
28
+ {prompt}
29
+
30
+
31
+ ### Assistant
32
+
33
+ '
34
  quantized_by: TheBloke
35
  tags:
36
  - code llama
 
57
  - Model creator: [Phind](https://huggingface.co/Phind)
58
  - Original model: [CodeLlama 34B v2](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2)
59
 
60
+ <!-- description start -->
61
  ## Description
62
 
63
  This repo contains GGUF format model files for [Phind's CodeLlama 34B v2](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2).
64
 
65
+ <!-- description end -->
66
  <!-- README_GGUF.md-about-gguf start -->
67
  ### About GGUF
68
 
69
+ 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.
70
 
71
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
72
 
73
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
74
+ * [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.
75
+ * [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.
76
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
 
77
  * [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.
78
+ * [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.
79
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
80
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
81
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
 
84
  <!-- repositories-available start -->
85
  ## Repositories available
86
 
87
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-AWQ)
88
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-GPTQ)
89
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-GGUF)
90
  * [Phind's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2)
 
105
  ```
106
 
107
  <!-- prompt-template end -->
108
+
109
+
110
  <!-- compatibility_gguf start -->
111
  ## Compatibility
112
 
113
+ 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)
114
 
115
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
116
 
117
  ## Explanation of quantisation methods
118
  <details>
 
153
 
154
  <!-- README_GGUF.md-provided-files end -->
155
 
156
+ <!-- README_GGUF.md-how-to-download start -->
157
+ ## How to download GGUF files
158
+
159
+ **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.
160
+
161
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
162
+ - LM Studio
163
+ - LoLLMS Web UI
164
+ - Faraday.dev
165
+
166
+ ### In `text-generation-webui`
167
+
168
+ Under Download Model, you can enter the model repo: TheBloke/Phind-CodeLlama-34B-v2-GGUF and below it, a specific filename to download, such as: phind-codellama-34b-v2.q4_K_M.gguf.
169
 
170
+ Then click Download.
171
 
172
+ ### On the command line, including multiple files at once
173
 
174
+ I recommend using the `huggingface-hub` Python library:
175
+
176
+ ```shell
177
+ pip3 install huggingface-hub>=0.17.1
178
  ```
179
+
180
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
181
+
182
+ ```shell
183
+ huggingface-cli download TheBloke/Phind-CodeLlama-34B-v2-GGUF phind-codellama-34b-v2.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
184
+ ```
185
+
186
+ <details>
187
+ <summary>More advanced huggingface-cli download usage</summary>
188
+
189
+ You can also download multiple files at once with a pattern:
190
+
191
+ ```shell
192
+ huggingface-cli download TheBloke/Phind-CodeLlama-34B-v2-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
193
+ ```
194
+
195
+ 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).
196
+
197
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
198
+
199
+ ```shell
200
+ pip3 install hf_transfer
201
+ ```
202
+
203
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
204
+
205
+ ```shell
206
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Phind-CodeLlama-34B-v2-GGUF phind-codellama-34b-v2.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
207
+ ```
208
+
209
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
210
+ </details>
211
+ <!-- README_GGUF.md-how-to-download end -->
212
+
213
+ <!-- README_GGUF.md-how-to-run start -->
214
+ ## Example `llama.cpp` command
215
+
216
+ Make sure you are using `llama.cpp` from commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
217
+
218
+ ```shell
219
+ ./main -ngl 32 -m phind-codellama-34b-v2.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### System Prompt\n{system_message}\n\n### User Message\n{prompt}\n\n### Assistant"
220
  ```
 
221
 
222
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
223
 
224
+ 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.
225
 
226
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
227
 
 
278
 
279
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
280
 
281
+ ## Thanks, and how to contribute
282
 
283
  Thanks to the [chirper.ai](https://chirper.ai) team!
284
 
285
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
286
+
287
  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.
288
 
289
  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.
 
295
 
296
  **Special thanks to**: Aemon Algiz.
297
 
298
+ **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
299
 
300
 
301
  Thank you to all my generous patrons and donaters!