TheBloke commited on
Commit
142e28c
1 Parent(s): c77dc2c

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -8
README.md CHANGED
@@ -84,15 +84,8 @@ Here is an incomplate list of clients and libraries that are known to support GG
84
  ```
85
 
86
  <!-- prompt-template end -->
87
- <!-- licensing start -->
88
- ## Licensing
89
 
90
- The creator of the source model has listed its license as `llama2`, and this quantization has therefore used that same license.
91
 
92
- 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.
93
-
94
- In the meantime, any questions regarding licensing, and in particular how these two licenses might interact, should be directed to the original model repository: [Riiid's Sheep Duck Llama 2](https://huggingface.co/Riiid/sheep-duck-llama-2).
95
- <!-- licensing end -->
96
  <!-- compatibility_gguf start -->
97
  ## Compatibility
98
 
@@ -171,6 +164,63 @@ del sheep-duck-llama-2.Q8_0.gguf-split-a sheep-duck-llama-2.Q8_0.gguf-split-b
171
  </details>
172
  <!-- README_GGUF.md-provided-files end -->
173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  <!-- README_GGUF.md-how-to-run start -->
175
  ## Example `llama.cpp` command
176
 
@@ -256,7 +306,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
256
 
257
  **Special thanks to**: Aemon Algiz.
258
 
259
- **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
260
 
261
 
262
  Thank you to all my generous patrons and donaters!
 
84
  ```
85
 
86
  <!-- prompt-template end -->
 
 
87
 
 
88
 
 
 
 
 
89
  <!-- compatibility_gguf start -->
90
  ## Compatibility
91
 
 
164
  </details>
165
  <!-- README_GGUF.md-provided-files end -->
166
 
167
+ <!-- README_GGUF.md-how-to-download start -->
168
+ ## How to download GGUF files
169
+
170
+ **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.
171
+
172
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
173
+ - LM Studio
174
+ - LoLLMS Web UI
175
+ - Faraday.dev
176
+
177
+ ### In `text-generation-webui`
178
+
179
+ Under Download Model, you can enter the model repo: TheBloke/Sheep-Duck-Llama-2-70B-GGUF and below it, a specific filename to download, such as: sheep-duck-llama-2.q4_K_M.gguf.
180
+
181
+ Then click Download.
182
+
183
+ ### On the command line, including multiple files at once
184
+
185
+ I recommend using the `huggingface-hub` Python library:
186
+
187
+ ```shell
188
+ pip3 install huggingface-hub>=0.17.1
189
+ ```
190
+
191
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
192
+
193
+ ```shell
194
+ huggingface-cli download TheBloke/Sheep-Duck-Llama-2-70B-GGUF sheep-duck-llama-2.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
195
+ ```
196
+
197
+ <details>
198
+ <summary>More advanced huggingface-cli download usage</summary>
199
+
200
+ You can also download multiple files at once with a pattern:
201
+
202
+ ```shell
203
+ huggingface-cli download TheBloke/Sheep-Duck-Llama-2-70B-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
204
+ ```
205
+
206
+ 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).
207
+
208
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
209
+
210
+ ```shell
211
+ pip3 install hf_transfer
212
+ ```
213
+
214
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
215
+
216
+ ```shell
217
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Sheep-Duck-Llama-2-70B-GGUF sheep-duck-llama-2.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
218
+ ```
219
+
220
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
221
+ </details>
222
+ <!-- README_GGUF.md-how-to-download end -->
223
+
224
  <!-- README_GGUF.md-how-to-run start -->
225
  ## Example `llama.cpp` command
226
 
 
306
 
307
  **Special thanks to**: Aemon Algiz.
308
 
309
+ **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
310
 
311
 
312
  Thank you to all my generous patrons and donaters!