TheBloke commited on
Commit
066b158
1 Parent(s): ef072c0

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -1
README.md CHANGED
@@ -5,6 +5,9 @@ license: llama2
5
  model_creator: oh-yeontaek
6
  model_name: Llama 2 13B LoRA Assemble
7
  model_type: llama
 
 
 
8
  quantized_by: TheBloke
9
  ---
10
 
@@ -56,6 +59,7 @@ Here is an incomplate list of clients and libraries that are known to support GG
56
  <!-- repositories-available start -->
57
  ## Repositories available
58
 
 
59
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Llama-2-13B-LoRA-Assemble-GPTQ)
60
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Llama-2-13B-LoRA-Assemble-GGUF)
61
  * [oh-yeontaek's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/oh-yeontaek/llama-2-13b-LoRA-assemble)
@@ -118,6 +122,63 @@ Refer to the Provided Files table below to see what files use which methods, and
118
 
119
  <!-- README_GGUF.md-provided-files end -->
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  <!-- README_GGUF.md-how-to-run start -->
122
  ## Example `llama.cpp` command
123
 
@@ -203,7 +264,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
203
 
204
  **Special thanks to**: Aemon Algiz.
205
 
206
- **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
207
 
208
 
209
  Thank you to all my generous patrons and donaters!
 
5
  model_creator: oh-yeontaek
6
  model_name: Llama 2 13B LoRA Assemble
7
  model_type: llama
8
+ prompt_template: '{prompt}
9
+
10
+ '
11
  quantized_by: TheBloke
12
  ---
13
 
 
59
  <!-- repositories-available start -->
60
  ## Repositories available
61
 
62
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Llama-2-13B-LoRA-Assemble-AWQ)
63
  * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Llama-2-13B-LoRA-Assemble-GPTQ)
64
  * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Llama-2-13B-LoRA-Assemble-GGUF)
65
  * [oh-yeontaek's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/oh-yeontaek/llama-2-13b-LoRA-assemble)
 
122
 
123
  <!-- README_GGUF.md-provided-files end -->
124
 
125
+ <!-- README_GGUF.md-how-to-download start -->
126
+ ## How to download GGUF files
127
+
128
+ **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.
129
+
130
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
131
+ - LM Studio
132
+ - LoLLMS Web UI
133
+ - Faraday.dev
134
+
135
+ ### In `text-generation-webui`
136
+
137
+ Under Download Model, you can enter the model repo: TheBloke/Llama-2-13B-LoRA-Assemble-GGUF and below it, a specific filename to download, such as: llama-2-13b-lora-assemble.q4_K_M.gguf.
138
+
139
+ Then click Download.
140
+
141
+ ### On the command line, including multiple files at once
142
+
143
+ I recommend using the `huggingface-hub` Python library:
144
+
145
+ ```shell
146
+ pip3 install huggingface-hub>=0.17.1
147
+ ```
148
+
149
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
150
+
151
+ ```shell
152
+ huggingface-cli download TheBloke/Llama-2-13B-LoRA-Assemble-GGUF llama-2-13b-lora-assemble.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
153
+ ```
154
+
155
+ <details>
156
+ <summary>More advanced huggingface-cli download usage</summary>
157
+
158
+ You can also download multiple files at once with a pattern:
159
+
160
+ ```shell
161
+ huggingface-cli download TheBloke/Llama-2-13B-LoRA-Assemble-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
162
+ ```
163
+
164
+ 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).
165
+
166
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
167
+
168
+ ```shell
169
+ pip3 install hf_transfer
170
+ ```
171
+
172
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
173
+
174
+ ```shell
175
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Llama-2-13B-LoRA-Assemble-GGUF llama-2-13b-lora-assemble.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
176
+ ```
177
+
178
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
179
+ </details>
180
+ <!-- README_GGUF.md-how-to-download end -->
181
+
182
  <!-- README_GGUF.md-how-to-run start -->
183
  ## Example `llama.cpp` command
184
 
 
264
 
265
  **Special thanks to**: Aemon Algiz.
266
 
267
+ **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
268
 
269
 
270
  Thank you to all my generous patrons and donaters!