TheBloke commited on
Commit
a588820
1 Parent(s): ad19511

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -1
README.md CHANGED
@@ -167,6 +167,63 @@ del marcoroni-70b.Q8_0.gguf-split-a marcoroni-70b.Q8_0.gguf-split-b
167
  </details>
168
  <!-- README_GGUF.md-provided-files end -->
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <!-- README_GGUF.md-how-to-run start -->
171
  ## Example `llama.cpp` command
172
 
@@ -252,7 +309,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
252
 
253
  **Special thanks to**: Aemon Algiz.
254
 
255
- **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
256
 
257
 
258
  Thank you to all my generous patrons and donaters!
@@ -291,6 +348,8 @@ Fine-tuned from Llama-2-70B,we use Orca-style data and other open source data
291
  * [AIDC-ai-business/Marcoroni-7B](https://huggingface.co/AIDC-ai-business/Marcoroni-7B)
292
  * [AIDC-ai-business/Marcoroni-13B](https://huggingface.co/AIDC-ai-business/Marcoroni-13B)
293
 
 
 
294
 
295
  # Evulation Results ([Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard))
296
 
 
167
  </details>
168
  <!-- README_GGUF.md-provided-files end -->
169
 
170
+ <!-- README_GGUF.md-how-to-download start -->
171
+ ## How to download GGUF files
172
+
173
+ **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.
174
+
175
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
176
+ - LM Studio
177
+ - LoLLMS Web UI
178
+ - Faraday.dev
179
+
180
+ ### In `text-generation-webui`
181
+
182
+ Under Download Model, you can enter the model repo: TheBloke/Marcoroni-70B-GGUF and below it, a specific filename to download, such as: marcoroni-70b.q4_K_M.gguf.
183
+
184
+ Then click Download.
185
+
186
+ ### On the command line, including multiple files at once
187
+
188
+ I recommend using the `huggingface-hub` Python library:
189
+
190
+ ```shell
191
+ pip3 install huggingface-hub>=0.17.1
192
+ ```
193
+
194
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
195
+
196
+ ```shell
197
+ huggingface-cli download TheBloke/Marcoroni-70B-GGUF marcoroni-70b.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
198
+ ```
199
+
200
+ <details>
201
+ <summary>More advanced huggingface-cli download usage</summary>
202
+
203
+ You can also download multiple files at once with a pattern:
204
+
205
+ ```shell
206
+ huggingface-cli download TheBloke/Marcoroni-70B-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
207
+ ```
208
+
209
+ 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).
210
+
211
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
212
+
213
+ ```shell
214
+ pip3 install hf_transfer
215
+ ```
216
+
217
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
218
+
219
+ ```shell
220
+ HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Marcoroni-70B-GGUF marcoroni-70b.q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
221
+ ```
222
+
223
+ Windows CLI users: Use `set HUGGINGFACE_HUB_ENABLE_HF_TRANSFER=1` before running the download command.
224
+ </details>
225
+ <!-- README_GGUF.md-how-to-download end -->
226
+
227
  <!-- README_GGUF.md-how-to-run start -->
228
  ## Example `llama.cpp` command
229
 
 
309
 
310
  **Special thanks to**: Aemon Algiz.
311
 
312
+ **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
313
 
314
 
315
  Thank you to all my generous patrons and donaters!
 
348
  * [AIDC-ai-business/Marcoroni-7B](https://huggingface.co/AIDC-ai-business/Marcoroni-7B)
349
  * [AIDC-ai-business/Marcoroni-13B](https://huggingface.co/AIDC-ai-business/Marcoroni-13B)
350
 
351
+ We achieved the top ranker among 70B models at Sep-14th 2023.
352
+
353
 
354
  # Evulation Results ([Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard))
355