TheBloke commited on
Commit
71dc61f
1 Parent(s): d5ceb48

Initial GGML model commit

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ license: other
4
+ model_creator: Austism
5
+ model_link: https://huggingface.co/Austism/chronos-hermes-13b-v2
6
+ model_name: Chronos Hermes 13B v2
7
+ model_type: llama
8
+ quantized_by: TheBloke
9
+ tags:
10
+ - llama
11
+ - llama-2
12
+ - pytorch
13
+ - chatbot
14
+ - storywriting
15
+ - generalist-model
16
+ ---
17
+
18
+ <!-- header start -->
19
+ <div style="width: 100%;">
20
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
21
+ </div>
22
+ <div style="display: flex; justify-content: space-between; width: 100%;">
23
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
24
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
25
+ </div>
26
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
27
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
28
+ </div>
29
+ </div>
30
+ <!-- header end -->
31
+
32
+ # Chronos Hermes 13B v2 - GGML
33
+ - Model creator: [Austism](https://huggingface.co/Austism)
34
+ - Original model: [Chronos Hermes 13B v2](https://huggingface.co/Austism/chronos-hermes-13b-v2)
35
+
36
+ ## Description
37
+
38
+ This repo contains GGML format model files for [Austism's Chronos Hermes 13B v2](https://huggingface.co/Austism/chronos-hermes-13b-v2).
39
+
40
+ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/ggerganov/llama.cpp) and libraries and UIs which support this format, such as:
41
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most popular web UI. Supports NVidia CUDA GPU acceleration.
42
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a powerful GGML web UI with GPU acceleration on all platforms (CUDA and OpenCL). Especially good for story telling.
43
+ * [LM Studio](https://lmstudio.ai/), a fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
44
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with CUDA GPU acceleration via the c_transformers backend.
45
+ * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
46
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
47
+
48
+ ## Repositories available
49
+
50
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/Austism/chronos-hermes-13b-v2-GPTQ)
51
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML)
52
+ * [Austism's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Austism/chronos-hermes-13b-v2)
53
+
54
+ ## Prompt template: Alpaca
55
+
56
+ ```
57
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
58
+
59
+ ### Instruction:
60
+ {prompt}
61
+
62
+ ### Response:
63
+ ```
64
+
65
+ <!-- compatibility_ggml start -->
66
+ ## Compatibility
67
+
68
+ ### Original llama.cpp quant methods: `q4_0, q4_1, q5_0, q5_1, q8_0`
69
+
70
+ These are guaranteed to be compatible with any UIs, tools and libraries released since late May. They may be phased out soon, as they are largely superseded by the new k-quant methods.
71
+
72
+ ### New k-quant methods: `q2_K, q3_K_S, q3_K_M, q3_K_L, q4_K_S, q4_K_M, q5_K_S, q6_K`
73
+
74
+ These new quantisation methods are compatible with llama.cpp as of June 6th, commit `2d43387`.
75
+
76
+ They are now also compatible with recent releases of text-generation-webui, KoboldCpp, llama-cpp-python, ctransformers, rustformers and most others. For compatibility with other tools and libraries, please check their documentation.
77
+
78
+ ## Explanation of the new k-quant methods
79
+ <details>
80
+ <summary>Click to see details</summary>
81
+
82
+ The new methods available are:
83
+ * 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)
84
+ * 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.
85
+ * 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.
86
+ * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw
87
+ * 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
88
+ * GGML_TYPE_Q8_K - "type-0" 8-bit quantization. Only used for quantizing intermediate results. The difference to the existing Q8_0 is that the block size is 256. All 2-6 bit dot products are implemented for this quantization type.
89
+
90
+ Refer to the Provided Files table below to see what files use which methods, and how.
91
+ </details>
92
+ <!-- compatibility_ggml end -->
93
+
94
+ ## Provided files
95
+
96
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
97
+ | ---- | ---- | ---- | ---- | ---- | ----- |
98
+ | [chronos-hermes-13b-v2.ggmlv3.q2_K.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q2_K.bin) | q2_K | 2 | 5.74 GB| 8.24 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.vw and feed_forward.w2 tensors, GGML_TYPE_Q2_K for the other tensors. |
99
+ | [chronos-hermes-13b-v2.ggmlv3.q3_K_L.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q3_K_L.bin) | q3_K_L | 3 | 7.14 GB| 9.64 GB | New k-quant method. Uses GGML_TYPE_Q5_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
100
+ | [chronos-hermes-13b-v2.ggmlv3.q3_K_M.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q3_K_M.bin) | q3_K_M | 3 | 6.53 GB| 9.03 GB | New k-quant method. Uses GGML_TYPE_Q4_K for the attention.wv, attention.wo, and feed_forward.w2 tensors, else GGML_TYPE_Q3_K |
101
+ | [chronos-hermes-13b-v2.ggmlv3.q3_K_S.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q3_K_S.bin) | q3_K_S | 3 | 5.87 GB| 8.37 GB | New k-quant method. Uses GGML_TYPE_Q3_K for all tensors |
102
+ | [chronos-hermes-13b-v2.ggmlv3.q4_0.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q4_0.bin) | q4_0 | 4 | 7.32 GB| 9.82 GB | Original quant method, 4-bit. |
103
+ | [chronos-hermes-13b-v2.ggmlv3.q4_1.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q4_1.bin) | q4_1 | 4 | 8.14 GB| 10.64 GB | Original quant method, 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
104
+ | [chronos-hermes-13b-v2.ggmlv3.q4_K_M.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q4_K_M.bin) | q4_K_M | 4 | 8.06 GB| 10.56 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q4_K |
105
+ | [chronos-hermes-13b-v2.ggmlv3.q4_K_S.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q4_K_S.bin) | q4_K_S | 4 | 7.56 GB| 10.06 GB | New k-quant method. Uses GGML_TYPE_Q4_K for all tensors |
106
+ | [chronos-hermes-13b-v2.ggmlv3.q5_0.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q5_0.bin) | q5_0 | 5 | 8.95 GB| 11.45 GB | Original quant method, 5-bit. Higher accuracy, higher resource usage and slower inference. |
107
+ | [chronos-hermes-13b-v2.ggmlv3.q5_1.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q5_1.bin) | q5_1 | 5 | 9.76 GB| 12.26 GB | Original quant method, 5-bit. Even higher accuracy, resource usage and slower inference. |
108
+ | [chronos-hermes-13b-v2.ggmlv3.q5_K_M.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q5_K_M.bin) | q5_K_M | 5 | 9.40 GB| 11.90 GB | New k-quant method. Uses GGML_TYPE_Q6_K for half of the attention.wv and feed_forward.w2 tensors, else GGML_TYPE_Q5_K |
109
+ | [chronos-hermes-13b-v2.ggmlv3.q5_K_S.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q5_K_S.bin) | q5_K_S | 5 | 9.15 GB| 11.65 GB | New k-quant method. Uses GGML_TYPE_Q5_K for all tensors |
110
+ | [chronos-hermes-13b-v2.ggmlv3.q6_K.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q6_K.bin) | q6_K | 6 | 10.83 GB| 13.33 GB | New k-quant method. Uses GGML_TYPE_Q8_K for all tensors - 6-bit quantization |
111
+ | [chronos-hermes-13b-v2.ggmlv3.q8_0.bin](https://huggingface.co/TheBloke/Chronos-Hermes-13B-v2-GGML/blob/main/chronos-hermes-13b-v2.ggmlv3.q8_0.bin) | q8_0 | 8 | 13.83 GB| 16.33 GB | Original quant method, 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
112
+
113
+ **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.
114
+
115
+ ## How to run in `llama.cpp`
116
+
117
+ I use the following command line; adjust for your tastes and needs:
118
+
119
+ ```
120
+ ./main -t 10 -ngl 32 -m chronos-hermes-13b-v2.ggmlv3.q4_K_M.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
121
+ ```
122
+ 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`.
123
+
124
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
125
+
126
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
127
+
128
+ ## How to run in `text-generation-webui`
129
+
130
+ Further instructions here: [text-generation-webui/docs/llama.cpp-models.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp-models.md).
131
+
132
+ <!-- footer start -->
133
+ ## Discord
134
+
135
+ For further support, and discussions on these models and AI in general, join us at:
136
+
137
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
138
+
139
+ ## Thanks, and how to contribute.
140
+
141
+ Thanks to the [chirper.ai](https://chirper.ai) team!
142
+
143
+ 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.
144
+
145
+ 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.
146
+
147
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
148
+
149
+ * Patreon: https://patreon.com/TheBlokeAI
150
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
151
+
152
+ **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
153
+
154
+ **Patreon special mentions**: Willem Michiel, Ajan Kanaga, Cory Kujawski, Alps Aficionado, Nikolai Manek, Jonathan Leane, Stanislav Ovsiannikov, Michael Levine, Luke Pendergrass, Sid, K, Gabriel Tamborski, Clay Pascal, Kalila, William Sang, Will Dee, Pieter, Nathan LeClaire, ya boyyy, David Flickinger, vamX, Derek Yates, Fen Risland, Jeffrey Morgan, webtim, Daniel P. Andersen, Chadd, Edmond Seymore, Pyrater, Olusegun Samson, Lone Striker, biorpg, alfie_i, Mano Prime, Chris Smitley, Dave, zynix, Trenton Dambrowitz, Johann-Peter Hartmann, Magnesian, Spencer Kim, John Detwiler, Iucharbius, Gabriel Puliatti, LangChain4j, Luke @flexchar, Vadim, Rishabh Srivastava, Preetika Verma, Ai Maven, Femi Adebogun, WelcomeToTheClub, Leonard Tan, Imad Khwaja, Steven Wood, Stefan Sabev, Sebastain Graf, usrbinkat, Dan Guido, Sam, Eugene Pentland, Mandus, transmissions 11, Slarti, Karl Bernard, Spiking Neurons AB, Artur Olbinski, Joseph William Delisle, ReadyPlayerEmma, Olakabola, Asp the Wyvern, Space Cruiser, Matthew Berman, Randy H, subjectnull, danny, John Villwock, Illia Dulskyi, Rainer Wilmers, theTransient, Pierre Kircher, Alexandros Triantafyllidis, Viktor Bowallius, terasurfer, Deep Realms, SuperWojo, senxiiz, Oscar Rangel, Alex, Stephen Murray, Talal Aujan, Raven Klaugh, Sean Connelly, Raymond Fosdick, Fred von Graf, chris gileta, Junyu Yang, Elle
155
+
156
+
157
+ Thank you to all my generous patrons and donaters!
158
+
159
+ <!-- footer end -->
160
+
161
+ # Original model card: Austism's Chronos Hermes 13B v2
162
+
163
+ # chronos-hermes-13b-v2
164
+ ([chronos-13b-v2](https://huggingface.co/elinas/chronos-13b-v2) + [Nous-Hermes-Llama2-13b](https://huggingface.co/NousResearch/Nous-Hermes-Llama2-13b)) 75/25 merge
165
+
166
+ This offers the imaginative writing style of chronos while still retaining coherency and being capable. Outputs are long and utilize exceptional prose.
167
+ Supports a maxium context length of 4096.
168
+
169
+ - [GPTQ Quantized Weights](https://huggingface.co/Austism/chronos-hermes-13b-v2-GPTQ)
170
+
171
+ ## Prompt Format
172
+
173
+ The model follows the Alpaca prompt format:
174
+ ```
175
+ ### Instruction:
176
+ <prompt>
177
+
178
+ ### Response:
179
+
180
+ ```
181
+ This is an adaption of [chronos-hermes-13b](https://huggingface.co/Austism/chronos-hermes-13b) for llama-2.