TheBloke commited on
Commit
1ca3e83
·
1 Parent(s): 5167a85

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -8
README.md CHANGED
@@ -75,15 +75,8 @@ ASSISTANT:
75
  ```
76
 
77
  <!-- prompt-template end -->
78
- <!-- licensing start -->
79
- ## Licensing
80
 
81
- The creator of the source model has listed its license as `llama2`, and this quantization has therefore used that same license.
82
 
83
- 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.
84
-
85
- In the meantime, any questions regarding licensing, and in particular how these two licenses might interact, should be directed to the original model repository: [Sao10k's JanniesBasedLigma L2 13B](https://huggingface.co/Sao10K/JanniesBasedLigma-L2-13B).
86
- <!-- licensing end -->
87
  <!-- compatibility_gguf start -->
88
  ## Compatibility
89
 
@@ -130,6 +123,63 @@ Refer to the Provided Files table below to see what files use which methods, and
130
 
131
  <!-- README_GGUF.md-provided-files end -->
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  <!-- README_GGUF.md-how-to-run start -->
134
  ## Example `llama.cpp` command
135
 
@@ -215,7 +265,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
215
 
216
  **Special thanks to**: Aemon Algiz.
217
 
218
- **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
219
 
220
 
221
  Thank you to all my generous patrons and donaters!
 
75
  ```
76
 
77
  <!-- prompt-template end -->
 
 
78
 
 
79
 
 
 
 
 
80
  <!-- compatibility_gguf start -->
81
  ## Compatibility
82
 
 
123
 
124
  <!-- README_GGUF.md-provided-files end -->
125
 
126
+ <!-- README_GGUF.md-how-to-download start -->
127
+ ## How to download GGUF files
128
+
129
+ **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.
130
+
131
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
132
+ - LM Studio
133
+ - LoLLMS Web UI
134
+ - Faraday.dev
135
+
136
+ ### In `text-generation-webui`
137
+
138
+ Under Download Model, you can enter the model repo: TheBloke/JanniesBasedLigma-L2-13B-GGUF and below it, a specific filename to download, such as: janniesbasedligma-l2-13b.q4_K_M.gguf.
139
+
140
+ Then click Download.
141
+
142
+ ### On the command line, including multiple files at once
143
+
144
+ I recommend using the `huggingface-hub` Python library:
145
+
146
+ ```shell
147
+ pip3 install huggingface-hub>=0.17.1
148
+ ```
149
+
150
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
151
+
152
+ ```shell
153
+ huggingface-cli download TheBloke/JanniesBasedLigma-L2-13B-GGUF janniesbasedligma-l2-13b.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
154
+ ```
155
+
156
+ <details>
157
+ <summary>More advanced huggingface-cli download usage</summary>
158
+
159
+ You can also download multiple files at once with a pattern:
160
+
161
+ ```shell
162
+ huggingface-cli download TheBloke/JanniesBasedLigma-L2-13B-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
163
+ ```
164
+
165
+ 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).
166
+
167
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
168
+
169
+ ```shell
170
+ pip3 install hf_transfer
171
+ ```
172
+
173
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
174
+
175
+ ```shell
176
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/JanniesBasedLigma-L2-13B-GGUF janniesbasedligma-l2-13b.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
177
+ ```
178
+
179
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
180
+ </details>
181
+ <!-- README_GGUF.md-how-to-download end -->
182
+
183
  <!-- README_GGUF.md-how-to-run start -->
184
  ## Example `llama.cpp` command
185
 
 
265
 
266
  **Special thanks to**: Aemon Algiz.
267
 
268
+ **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
269
 
270
 
271
  Thank you to all my generous patrons and donaters!