TheBloke commited on
Commit
ac41348
1 Parent(s): 82b1968

Initial GGUF model commit

Browse files
Files changed (1) hide show
  1. README.md +235 -0
README.md ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ language:
4
+ - en
5
+ license: llama2
6
+ model_creator: Sao10K
7
+ model_link: https://huggingface.co/Sao10K/Mythical-Destroyer-V2-L2-13B
8
+ model_name: Mythical Destroyer V2 L2 13B
9
+ model_type: llama
10
+ quantized_by: TheBloke
11
+ ---
12
+
13
+ <!-- header start -->
14
+ <!-- 200823 -->
15
+ <div style="width: auto; margin-left: auto; margin-right: auto">
16
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
17
+ </div>
18
+ <div style="display: flex; justify-content: space-between; width: 100%;">
19
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
20
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
21
+ </div>
22
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
23
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
24
+ </div>
25
+ </div>
26
+ <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div>
27
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
28
+ <!-- header end -->
29
+
30
+ # Mythical Destroyer V2 L2 13B - GGUF
31
+ - Model creator: [Sao10K](https://huggingface.co/Sao10K)
32
+ - Original model: [Mythical Destroyer V2 L2 13B](https://huggingface.co/Sao10K/Mythical-Destroyer-V2-L2-13B)
33
+
34
+ ## Description
35
+
36
+ This repo contains GGUF format model files for [Sao10K's Mythical Destroyer V2 L2 13B](https://huggingface.co/Sao10K/Mythical-Destroyer-V2-L2-13B).
37
+
38
+ <!-- README_GGUF.md-about-gguf start -->
39
+ ### About GGUF
40
+
41
+ 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.
42
+
43
+ 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.
44
+
45
+ As of August 25th, here is a list of clients and libraries that are known to support GGUF:
46
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp).
47
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI. Supports GGUF with GPU acceleration via the ctransformers backend - llama-cpp-python backend should work soon too.
48
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), now supports GGUF as of release 1.41! A powerful GGML web UI, with full GPU accel. Especially good for story telling.
49
+ * [LM Studio](https://lmstudio.ai/), version 0.2.2 and later support GGUF. A fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
50
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), should now work, choose the `c_transformers` backend. A great web UI with many interesting features. Supports CUDA GPU acceleration.
51
+ * [ctransformers](https://github.com/marella/ctransformers), now supports GGUF as of version 0.2.24! A Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
52
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), supports GGUF as of version 0.1.79. A Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
53
+ * [candle](https://github.com/huggingface/candle), added GGUF support on August 22nd. Candle is a Rust ML framework with a focus on performance, including GPU support, and ease of use.
54
+
55
+ The clients and libraries below are expecting to add GGUF support shortly:
56
+ <!-- README_GGUF.md-about-gguf end -->
57
+
58
+ <!-- repositories-available start -->
59
+ ## Repositories available
60
+
61
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GPTQ)
62
+ * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF)
63
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference (deprecated)](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGML)
64
+ * [Sao10K's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Sao10K/Mythical-Destroyer-V2-L2-13B)
65
+ <!-- repositories-available end -->
66
+
67
+ <!-- prompt-template start -->
68
+ ## Prompt template: Alpaca
69
+
70
+ ```
71
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
72
+
73
+ ### Instruction:
74
+ {prompt}
75
+
76
+ ### Response:
77
+
78
+ ```
79
+
80
+ <!-- prompt-template end -->
81
+ <!-- compatibility_gguf start -->
82
+ ## Compatibility
83
+
84
+ 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)
85
+
86
+ As of August 24th 2023 they are now compatible with KoboldCpp, release 1.41 and later.
87
+
88
+ They are are not yet compatible with any other third-party UIS, libraries or utilities but this is expected to change very soon.
89
+
90
+ ## Explanation of quantisation methods
91
+ <details>
92
+ <summary>Click to see details</summary>
93
+
94
+ The new methods available are:
95
+ * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw)
96
+ * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw.
97
+ * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw.
98
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
99
+ * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw
100
+
101
+ Refer to the Provided Files table below to see what files use which methods, and how.
102
+ </details>
103
+ <!-- compatibility_gguf end -->
104
+
105
+ <!-- README_GGUF.md-provided-files start -->
106
+ ## Provided files
107
+
108
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
109
+ | ---- | ---- | ---- | ---- | ---- | ----- |
110
+ | [mythical-destroyer-v2-l2-13b.Q2_K.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q2_K.gguf) | Q2_K | 2 | 5.43 GB| 7.93 GB | smallest, significant quality loss - not recommended for most purposes |
111
+ | [mythical-destroyer-v2-l2-13b.Q3_K_S.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q3_K_S.gguf) | Q3_K_S | 3 | 5.66 GB| 8.16 GB | very small, high quality loss |
112
+ | [mythical-destroyer-v2-l2-13b.Q3_K_M.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q3_K_M.gguf) | Q3_K_M | 3 | 6.34 GB| 8.84 GB | very small, high quality loss |
113
+ | [mythical-destroyer-v2-l2-13b.Q3_K_L.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q3_K_L.gguf) | Q3_K_L | 3 | 6.93 GB| 9.43 GB | small, substantial quality loss |
114
+ | [mythical-destroyer-v2-l2-13b.Q4_K_S.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q4_K_S.gguf) | Q4_K_S | 4 | 7.41 GB| 9.91 GB | small, greater quality loss |
115
+ | [mythical-destroyer-v2-l2-13b.Q4_K_M.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q4_K_M.gguf) | Q4_K_M | 4 | 7.87 GB| 10.37 GB | medium, balanced quality - recommended |
116
+ | [mythical-destroyer-v2-l2-13b.Q5_K_S.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q5_K_S.gguf) | Q5_K_S | 5 | 8.97 GB| 11.47 GB | large, low quality loss - recommended |
117
+ | [mythical-destroyer-v2-l2-13b.Q5_K_M.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q5_K_M.gguf) | Q5_K_M | 5 | 9.23 GB| 11.73 GB | large, very low quality loss - recommended |
118
+ | [mythical-destroyer-v2-l2-13b.Q6_K.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q6_K.gguf) | Q6_K | 6 | 10.68 GB| 13.18 GB | very large, extremely low quality loss |
119
+ | [mythical-destroyer-v2-l2-13b.Q8_0.gguf](https://huggingface.co/TheBloke/Mythical-Destroyer-V2-L2-13B-GGUF/blob/main/mythical-destroyer-v2-l2-13b.Q8_0.gguf) | Q8_0 | 8 | 13.83 GB| 16.33 GB | very large, extremely low quality loss - not recommended |
120
+
121
+ **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
122
+ <!-- README_GGUF.md-provided-files end -->
123
+
124
+ <!-- README_GGUF.md-how-to-run start -->
125
+ ## How to run in `llama.cpp`
126
+
127
+ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
128
+
129
+ For compatibility with older versions of llama.cpp, or for use with third-party clients and libaries, please use GGML files instead.
130
+
131
+ ```
132
+ ./main -t 10 -ngl 32 -m mythical-destroyer-v2-l2-13b.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\nWrite a story about llamas\n\n### Response:"
133
+ ```
134
+ 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`.
135
+
136
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
137
+
138
+ 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.
139
+
140
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
141
+
142
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)
143
+
144
+ ## How to run in `text-generation-webui`
145
+
146
+ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md).
147
+ <!-- README_GGUF.md-how-to-run end -->
148
+
149
+ <!-- footer start -->
150
+ <!-- 200823 -->
151
+ ## Discord
152
+
153
+ For further support, and discussions on these models and AI in general, join us at:
154
+
155
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
156
+
157
+ ## Thanks, and how to contribute.
158
+
159
+ Thanks to the [chirper.ai](https://chirper.ai) team!
160
+
161
+ 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.
162
+
163
+ 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.
164
+
165
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
166
+
167
+ * Patreon: https://patreon.com/TheBlokeAI
168
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
169
+
170
+ **Special thanks to**: Aemon Algiz.
171
+
172
+ **Patreon special mentions**: Kacper Wikieł, knownsqashed, Leonard Tan, Asp the Wyvern, Daniel P. Andersen, Luke Pendergrass, Stanislav Ovsiannikov, RoA, Dave, Ai Maven, Kalila, Will Dee, Imad Khwaja, Nitin Borwankar, Joseph William Delisle, Tony Hughes, Cory Kujawski, Rishabh Srivastava, Russ Johnson, Stephen Murray, Lone Striker, Johann-Peter Hartmann, Elle, J, Deep Realms, SuperWojo, Raven Klaugh, Sebastain Graf, ReadyPlayerEmma, Alps Aficionado, Mano Prime, Derek Yates, Gabriel Puliatti, Mesiah Bishop, Magnesian, Sean Connelly, biorpg, Iucharbius, Olakabola, Fen Risland, Space Cruiser, theTransient, Illia Dulskyi, Thomas Belote, Spencer Kim, Pieter, John Detwiler, Fred von Graf, Michael Davis, Swaroop Kallakuri, subjectnull, Clay Pascal, Subspace Studios, Chris Smitley, Enrico Ros, usrbinkat, Steven Wood, alfie_i, David Ziegler, Willem Michiel, Matthew Berman, Andrey, Pyrater, Jeffrey Morgan, vamX, LangChain4j, Luke @flexchar, Trenton Dambrowitz, Pierre Kircher, Alex, Sam, James Bentley, Edmond Seymore, Eugene Pentland, Pedro Madruga, Rainer Wilmers, Dan Guido, Nathan LeClaire, Spiking Neurons AB, Talal Aujan, zynix, Artur Olbinski, Michael Levine, 阿明, K, John Villwock, Nikolai Manek, Femi Adebogun, senxiiz, Deo Leter, NimbleBox.ai, Viktor Bowallius, Geoffrey Montalvo, Mandus, Ajan Kanaga, ya boyyy, Jonathan Leane, webtim, Brandon Frisco, danny, Alexandros Triantafyllidis, Gabriel Tamborski, Randy H, terasurfer, Vadim, Junyu Yang, Vitor Caleffi, Chadd, transmissions 11
173
+
174
+
175
+ Thank you to all my generous patrons and donaters!
176
+
177
+ And thank you again to a16z for their generous grant.
178
+
179
+ <!-- footer end -->
180
+
181
+ <!-- original-model-card start -->
182
+ # Original model card: Sao10K's Mythical Destroyer V2 L2 13B
183
+
184
+
185
+
186
+ <br>A Merge done for @dampf
187
+
188
+ **FULL FP16 Model**
189
+
190
+
191
+ **V2 Model**
192
+ <br>Changelog:
193
+ <br>REMOVED - Llama-2-13B-Chat-fp16 (reason: censored, likely amplified base model quirks)
194
+ <br>ADDED - jondurbin/airoboros-l2-13b-2.1 (ghost attention, improved RP and instruction)
195
+
196
+ <br>Base Model [TheBloke/Llama-2-13B-fp16](https://huggingface.co/TheBloke/Llama-2-13B-fp16)
197
+ <br> **MERGED WITH**
198
+ <br>-----[Gryphe/MythoMax-L2-13b](https://huggingface.co/Gryphe/MythoMax-L2-13b)
199
+ <br>-----[totally-not-an-llm/PuddleJumper-13b](https://huggingface.co/totally-not-an-llm/PuddleJumper-13b)
200
+ <br>-----[jondurbin/airoboros-l2-13b-2.1](https://huggingface.co/jondurbin/airoboros-l2-13b-2.1)
201
+ <br>-----[rombodawg/LosslessMegaCoder-llama2-13b-mini](https://huggingface.co/rombodawg/LosslessMegaCoder-llama2-13b-mini)
202
+ <br>-----[The-Face-Of-Goonery/Chronos-Beluga-v2-13bfp16](https://huggingface.co/The-Face-Of-Goonery/Chronos-Beluga-v2-13bfp16)
203
+ <br>*using ties-merge*
204
+
205
+
206
+
207
+ ```
208
+ Dampf's Rationale:
209
+ I did receive feedback from some users that it likes to add notes and morality to erp stories.
210
+ i will kick llama 2 chat and make an uncensored V2 version
211
+ in llama 2 chat's place will be the freshly released airboros 2.1
212
+ ---
213
+ well it was not bad, it was just censored because of llama 2 13b chat
214
+ i guess charles was really serious about each model retaining its shape
215
+ i was expecting parts of it to get watered down, but judging from the strong influence of llama chat that wasn't the case
216
+ ```
217
+
218
+ Alpaca should be its main format, but also can be used with others. Vicuna 1.1 should work well too.
219
+ ```
220
+ ### Instruction:
221
+ Your instruction or question here.
222
+ For roleplay purposes, I suggest the following - Write <CHAR NAME>'s next reply in a chat between <YOUR NAME> and <CHAR NAME>. Write a single reply only.
223
+
224
+ ### Response:
225
+ ```
226
+
227
+ <br>Script used to Merge [here](https://github.com/cg123/ties-merge)
228
+ <br>Thank you for the easy to set up script, [Chargoddard](https://huggingface.co/chargoddard). Also I want to thank all these hard working model creators for their contributions to the Open Source community!
229
+
230
+ Command:
231
+ ```
232
+ python ties_merge.py TheBloke/Llama-2-13B-fp16 ./Mythical-Destroyer-V2-13B --merge Gryphe/MythoMax-L2-13b --merge totally-not-an-llm/PuddleJumper-13b --merge jondurbin/airoboros-l2-13b-2.1 --merge rombodawg/LosslessMegaCoder-llama2-13b-mini --merge The-Face-Of-Goonery/Chronos-Beluga-v2-13bfp16 --cuda
233
+ ```
234
+
235
+ <!-- original-model-card end -->