TheBloke commited on
Commit
53efa71
1 Parent(s): b4ccc58

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. README.md +259 -0
README.md ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datesets:
3
+ - rombodawg/LosslessMegaCodeTrainingV2_1m_Evol_Uncensored
4
+ inference: false
5
+ license: other
6
+ model_creator: Rombo Dawg
7
+ model_link: https://huggingface.co/rombodawg/LosslessMegaCoder-llama2-13b-mini
8
+ model_name: LosslessMegaCoder Llama2 13B Mini
9
+ model_type: llama
10
+ quantized_by: TheBloke
11
+ ---
12
+
13
+ <!-- header start -->
14
+ <div style="width: 100%;">
15
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
16
+ </div>
17
+ <div style="display: flex; justify-content: space-between; width: 100%;">
18
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
19
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
20
+ </div>
21
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
22
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
23
+ </div>
24
+ </div>
25
+ <!-- header end -->
26
+
27
+ # LosslessMegaCoder Llama2 13B Mini - GPTQ
28
+ - Model creator: [Rombo Dawg](https://huggingface.co/rombodawg)
29
+ - Original model: [LosslessMegaCoder Llama2 13B Mini](https://huggingface.co/rombodawg/LosslessMegaCoder-llama2-13b-mini)
30
+
31
+ ## Description
32
+
33
+ This repo contains GPTQ model files for [Rombo Dawg's LosslessMegaCoder Llama2 13B Mini](https://huggingface.co/rombodawg/LosslessMegaCoder-llama2-13b-mini).
34
+
35
+ Multiple GPTQ parameter permutations are provided; see Provided Files below for details of the options provided, their parameters, and the software used to create them.
36
+
37
+ ## Repositories available
38
+
39
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ)
40
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GGML)
41
+ * [Rombo Dawg's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/rombodawg/LosslessMegaCoder-llama2-13b-mini)
42
+
43
+ ## Prompt template: ChatML
44
+
45
+ ```
46
+ <|im_start|>system
47
+ {system_message}<|im_end|>
48
+ <|im_start|>user
49
+ {prompt}<|im_end|>
50
+ <|im_start|>assistant
51
+ ```
52
+
53
+ ## Provided files and GPTQ parameters
54
+
55
+ Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
56
+
57
+ Each separate quant is in a different branch. See below for instructions on fetching from different branches.
58
+
59
+ All GPTQ files are made with AutoGPTQ.
60
+
61
+ <details>
62
+ <summary>Explanation of GPTQ parameters</summary>
63
+
64
+ - Bits: The bit size of the quantised model.
65
+ - GS: GPTQ group size. Higher numbers use less VRAM, but have lower quantisation accuracy. "None" is the lowest possible value.
66
+ - Act Order: True or False. Also known as `desc_act`. True results in better quantisation accuracy. Some GPTQ clients have issues with models that use Act Order plus Group Size.
67
+ - Damp %: A GPTQ parameter that affects how samples are processed for quantisation. 0.01 is default, but 0.1 results in slightly better accuracy.
68
+ - GPTQ dataset: The dataset used for quantisation. Using a dataset more appropriate to the model's training can improve quantisation accuracy. Note that the GPTQ dataset is not the same as the dataset used to train the model - please refer to the original model repo for details of the training dataset(s).
69
+ - Sequence Length: The length of the dataset sequences used for quantisation. Ideally this is the same as the model sequence length. For some very long sequence models (16+K), a lower sequence length may have to be used. Note that a lower sequence length does not limit the sequence length of the quantised model. It only impacts the quantisation accuracy on longer inference sequences.
70
+ - ExLlama Compatibility: Whether this file can be loaded with ExLlama, which currently only supports Llama models in 4-bit.
71
+
72
+ </details>
73
+
74
+ | Branch | Bits | GS | Act Order | Damp % | GPTQ Dataset | Seq Len | Size | ExLlama | Desc |
75
+ | ------ | ---- | -- | --------- | ------ | ------------ | ------- | ---- | ------- | ---- |
76
+ | [main](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/main) | 4 | 128 | No | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 7.26 GB | Yes | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
77
+ | [gptq-4bit-32g-actorder_True](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/gptq-4bit-32g-actorder_True) | 4 | 32 | Yes | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 8.00 GB | Yes | 4-bit, with Act Order and group size 32g. Gives highest possible inference quality, with maximum VRAM usage. Poor AutoGPTQ CUDA speed. |
78
+ | [gptq-4bit-64g-actorder_True](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/gptq-4bit-64g-actorder_True) | 4 | 64 | Yes | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 7.51 GB | Yes | 4-bit, with Act Order and group size 64g. Uses less VRAM than 32g, but with slightly lower accuracy. Poor AutoGPTQ CUDA speed. |
79
+ | [gptq-4bit-128g-actorder_True](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/gptq-4bit-128g-actorder_True) | 4 | 128 | Yes | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 7.26 GB | Yes | 4-bit, with Act Order and group size 128g. Uses even less VRAM than 64g, but with slightly lower accuracy. Poor AutoGPTQ CUDA speed. |
80
+ | [gptq-8bit--1g-actorder_True](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 13.36 GB | No | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
81
+ | [gptq-8bit-128g-actorder_True](https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [Evol Instruct Code](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) | 4096 | 13.65 GB | No | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
82
+
83
+ ## How to download from branches
84
+
85
+ - In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ:gptq-4bit-32g-actorder_True`
86
+ - With Git, you can clone a branch with:
87
+ ```
88
+ git clone --single-branch --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ
89
+ ```
90
+ - In Python Transformers code, the branch is the `revision` parameter; see below.
91
+
92
+ ## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
93
+
94
+ Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
95
+
96
+ It is strongly recommended to use the text-generation-webui one-click-installers unless you know how to make a manual install.
97
+
98
+ 1. Click the **Model tab**.
99
+ 2. Under **Download custom model or LoRA**, enter `TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ`.
100
+ - To download from a specific branch, enter for example `TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ:gptq-4bit-32g-actorder_True`
101
+ - see Provided Files above for the list of branches for each option.
102
+ 3. Click **Download**.
103
+ 4. The model will start downloading. Once it's finished it will say "Done"
104
+ 5. In the top left, click the refresh icon next to **Model**.
105
+ 6. In the **Model** dropdown, choose the model you just downloaded: `LosslessMegaCoder-Llama2-13B-Mini-GPTQ`
106
+ 7. The model will automatically load, and is now ready for use!
107
+ 8. If you want any custom settings, set them and then click **Save settings for this model** followed by **Reload the Model** in the top right.
108
+ * Note that you do not need to set GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
109
+ 9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
110
+
111
+ ## How to use this GPTQ model from Python code
112
+
113
+ First make sure you have [AutoGPTQ](https://github.com/PanQiWei/AutoGPTQ) 0.3.1 or later installed:
114
+
115
+ ```
116
+ pip3 install auto-gptq
117
+ ```
118
+
119
+ If you have problems installing AutoGPTQ, please build from source instead:
120
+ ```
121
+ pip3 uninstall -y auto-gptq
122
+ git clone https://github.com/PanQiWei/AutoGPTQ
123
+ cd AutoGPTQ
124
+ pip3 install .
125
+ ```
126
+
127
+ Then try the following example code:
128
+
129
+ ```python
130
+ from transformers import AutoTokenizer, pipeline, logging
131
+ from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
132
+
133
+ model_name_or_path = "TheBloke/LosslessMegaCoder-Llama2-13B-Mini-GPTQ"
134
+
135
+ use_triton = False
136
+
137
+ tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)
138
+
139
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
140
+ use_safetensors=True,
141
+ trust_remote_code=False,
142
+ device="cuda:0",
143
+ use_triton=use_triton,
144
+ quantize_config=None)
145
+
146
+ """
147
+ # To download from a specific branch, use the revision parameter, as in this example:
148
+ # Note that `revision` requires AutoGPTQ 0.3.1 or later!
149
+
150
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
151
+ revision="gptq-4bit-32g-actorder_True",
152
+ use_safetensors=True,
153
+ trust_remote_code=False,
154
+ device="cuda:0",
155
+ quantize_config=None)
156
+ """
157
+
158
+ prompt = "Tell me about AI"
159
+ prompt_template=f'''<|im_start|>system
160
+ {system_message}<|im_end|>
161
+ <|im_start|>user
162
+ {prompt}<|im_end|>
163
+ <|im_start|>assistant
164
+ '''
165
+
166
+ print("\n\n*** Generate:")
167
+
168
+ input_ids = tokenizer(prompt_template, return_tensors='pt').input_ids.cuda()
169
+ output = model.generate(inputs=input_ids, temperature=0.7, max_new_tokens=512)
170
+ print(tokenizer.decode(output[0]))
171
+
172
+ # Inference can also be done using transformers' pipeline
173
+
174
+ # Prevent printing spurious transformers error when using pipeline with AutoGPTQ
175
+ logging.set_verbosity(logging.CRITICAL)
176
+
177
+ print("*** Pipeline:")
178
+ pipe = pipeline(
179
+ "text-generation",
180
+ model=model,
181
+ tokenizer=tokenizer,
182
+ max_new_tokens=512,
183
+ temperature=0.7,
184
+ top_p=0.95,
185
+ repetition_penalty=1.15
186
+ )
187
+
188
+ print(pipe(prompt_template)[0]['generated_text'])
189
+ ```
190
+
191
+ ## Compatibility
192
+
193
+ The files provided will work with AutoGPTQ (CUDA and Triton modes), GPTQ-for-LLaMa (only CUDA has been tested), and Occ4m's GPTQ-for-LLaMa fork.
194
+
195
+ ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
196
+
197
+ <!-- footer start -->
198
+ ## Discord
199
+
200
+ For further support, and discussions on these models and AI in general, join us at:
201
+
202
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
203
+
204
+ ## Thanks, and how to contribute.
205
+
206
+ Thanks to the [chirper.ai](https://chirper.ai) team!
207
+
208
+ 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.
209
+
210
+ 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.
211
+
212
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
213
+
214
+ * Patreon: https://patreon.com/TheBlokeAI
215
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
216
+
217
+ **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
218
+
219
+ **Patreon special mentions**: Ajan Kanaga, David Ziegler, Raymond Fosdick, SuperWojo, Sam, webtim, Steven Wood, knownsqashed, Tony Hughes, Junyu Yang, J, Olakabola, Dan Guido, Stephen Murray, John Villwock, vamX, William Sang, Sean Connelly, LangChain4j, Olusegun Samson, Fen Risland, Derek Yates, Karl Bernard, transmissions 11, Trenton Dambrowitz, Pieter, Preetika Verma, Swaroop Kallakuri, Andrey, Slarti, Jonathan Leane, Michael Levine, Kalila, Joseph William Delisle, Rishabh Srivastava, Deo Leter, Luke Pendergrass, Spencer Kim, Geoffrey Montalvo, Thomas Belote, Jeffrey Morgan, Mandus, ya boyyy, Matthew Berman, Magnesian, Ai Maven, senxiiz, Alps Aficionado, Luke @flexchar, Raven Klaugh, Imad Khwaja, Gabriel Puliatti, Johann-Peter Hartmann, usrbinkat, Spiking Neurons AB, Artur Olbinski, chris gileta, danny, Willem Michiel, WelcomeToTheClub, Deep Realms, alfie_i, Dave, Leonard Tan, NimbleBox.ai, Randy H, Daniel P. Andersen, Pyrater, Will Dee, Elle, Space Cruiser, Gabriel Tamborski, Asp the Wyvern, Illia Dulskyi, Nikolai Manek, Sid, Brandon Frisco, Nathan LeClaire, Edmond Seymore, Enrico Ros, Pedro Madruga, Eugene Pentland, John Detwiler, Mano Prime, Stanislav Ovsiannikov, Alex, Vitor Caleffi, K, biorpg, Michael Davis, Lone Striker, Pierre Kircher, theTransient, Fred von Graf, Sebastain Graf, Vadim, Iucharbius, Clay Pascal, Chadd, Mesiah Bishop, terasurfer, Rainer Wilmers, Alexandros Triantafyllidis, Stefan Sabev, Talal Aujan, Cory Kujawski, Viktor Bowallius, subjectnull, ReadyPlayerEmma, zynix
220
+
221
+
222
+ Thank you to all my generous patrons and donaters!
223
+
224
+ <!-- footer end -->
225
+
226
+ # Original model card: Rombo Dawg's LosslessMegaCoder Llama2 13B Mini
227
+
228
+ This is one of the first models trained on the LosslessMegaCodeTrainingV2_1m_Evol_Uncensored dataset. The version of the dataset used for this model was poorly filtered on some loose parameters that arent anything to write home about but plans for much more refined filtering are in the works
229
+
230
+ - This model was made as a colaboration between me and andreaskoepf who is an affiliate of Open Assistant.
231
+
232
+ Prompt template:
233
+
234
+ - chatml format is used: "<|im_start|>system\n{system message}<|im_end|>\n<|im_start|>user\n{user prompt}<|im_end|>\n<|im_start|>assistant\n{Assistant answer}<|im_end|>\n"
235
+
236
+ multi-line:
237
+ ```
238
+ <|im_start|>system
239
+ {system message}<|im_end|>
240
+ <|im_start|>user
241
+ {user prompt}<|im_end|>
242
+ <|im_start|>assistant
243
+ {Assistant answer}<|im_end|>
244
+ ```
245
+ Training data:
246
+
247
+ - https://wandb.ai/open-assistant/epfl-mt-sft/runs/run34_megacode2_min100_13b
248
+
249
+ The link for the full dataset is bellow:
250
+
251
+ - https://huggingface.co/datasets/rombodawg/LosslessMegaCodeTrainingV2_1m_Evol_Uncensored
252
+
253
+ Link for the filtered dataset used to make this model are bellow:
254
+
255
+ - https://huggingface.co/datasets/andreaskoepf/megacode2-min100
256
+
257
+ The original posting for this model was uploaded at the link bellow.
258
+
259
+ - https://huggingface.co/andreaskoepf/llama2-13b-megacode2_min100