TheBloke commited on
Commit
4eb50cd
1 Parent(s): 6e83f97

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. README.md +289 -0
README.md ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ license: llama2
4
+ model_creator: Nick Perez
5
+ model_link: https://huggingface.co/nkpz/llama2-22b-daydreamer-v3
6
+ model_name: Llama2 22B Daydreamer2 v3
7
+ model_type: llama
8
+ quantized_by: TheBloke
9
+ ---
10
+
11
+ <!-- header start -->
12
+ <div style="width: 100%;">
13
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
14
+ </div>
15
+ <div style="display: flex; justify-content: space-between; width: 100%;">
16
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
17
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
18
+ </div>
19
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
20
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
21
+ </div>
22
+ </div>
23
+ <!-- header end -->
24
+
25
+ # Llama2 22B Daydreamer2 v3 - GPTQ
26
+ - Model creator: [Nick Perez](https://huggingface.co/nkpz)
27
+ - Original model: [Llama2 22B Daydreamer2 v3](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3)
28
+
29
+ ## Description
30
+
31
+ This repo contains GPTQ model files for [Nick Perez's Llama2 22B Daydreamer2 v3](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3).
32
+
33
+ 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.
34
+
35
+ ## Repositories available
36
+
37
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ)
38
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GGML)
39
+ * [Nick Perez's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/nkpz/llama2-22b-daydreamer-v3)
40
+
41
+ ## Prompt template: Alpaca
42
+
43
+ ```
44
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
45
+
46
+ ### Instruction:
47
+ {prompt}
48
+
49
+ ### Response:
50
+ ```
51
+
52
+ ## Provided files and GPTQ parameters
53
+
54
+ Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
55
+
56
+ Each separate quant is in a different branch. See below for instructions on fetching from different branches.
57
+
58
+ All GPTQ files are made with AutoGPTQ.
59
+
60
+ <details>
61
+ <summary>Explanation of GPTQ parameters</summary>
62
+
63
+ - Bits: The bit size of the quantised model.
64
+ - GS: GPTQ group size. Higher numbers use less VRAM, but have lower quantisation accuracy. "None" is the lowest possible value.
65
+ - 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.
66
+ - Damp %: A GPTQ parameter that affects how samples are processed for quantisation. 0.01 is default, but 0.1 results in slightly better accuracy.
67
+ - 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).
68
+ - 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.
69
+ - ExLlama Compatibility: Whether this file can be loaded with ExLlama, which currently only supports Llama models in 4-bit.
70
+
71
+ </details>
72
+
73
+ | Branch | Bits | GS | Act Order | Damp % | GPTQ Dataset | Seq Len | Size | ExLlama | Desc |
74
+ | ------ | ---- | -- | --------- | ------ | ------------ | ------- | ---- | ------- | ---- |
75
+ | [main](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/main) | 4 | 128 | No | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 11.99 GB | Yes | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
76
+ | [gptq-4bit-32g-actorder_True](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/gptq-4bit-32g-actorder_True) | 4 | 32 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 13.24 GB | Yes | 4-bit, with Act Order and group size 32g. Gives highest possible inference quality, with maximum VRAM usage. Poor AutoGPTQ CUDA speed. |
77
+ | [gptq-4bit-64g-actorder_True](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/gptq-4bit-64g-actorder_True) | 4 | 64 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 12.40 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. |
78
+ | [gptq-4bit-128g-actorder_True](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/gptq-4bit-128g-actorder_True) | 4 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 11.99 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. |
79
+ | [gptq-8bit--1g-actorder_True](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 22.28 GB | No | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
80
+ | [gptq-8bit-128g-actorder_True](https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 22.77 GB | No | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
81
+
82
+ ## How to download from branches
83
+
84
+ - In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/Llama2-22B-Daydreamer-v3-GPTQ:gptq-4bit-32g-actorder_True`
85
+ - With Git, you can clone a branch with:
86
+ ```
87
+ git clone --single-branch --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/Llama2-22B-Daydreamer-v3-GPTQ
88
+ ```
89
+ - In Python Transformers code, the branch is the `revision` parameter; see below.
90
+
91
+ ## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
92
+
93
+ Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
94
+
95
+ It is strongly recommended to use the text-generation-webui one-click-installers unless you know how to make a manual install.
96
+
97
+ 1. Click the **Model tab**.
98
+ 2. Under **Download custom model or LoRA**, enter `TheBloke/Llama2-22B-Daydreamer-v3-GPTQ`.
99
+ - To download from a specific branch, enter for example `TheBloke/Llama2-22B-Daydreamer-v3-GPTQ:gptq-4bit-32g-actorder_True`
100
+ - see Provided Files above for the list of branches for each option.
101
+ 3. Click **Download**.
102
+ 4. The model will start downloading. Once it's finished it will say "Done"
103
+ 5. In the top left, click the refresh icon next to **Model**.
104
+ 6. In the **Model** dropdown, choose the model you just downloaded: `Llama2-22B-Daydreamer-v3-GPTQ`
105
+ 7. The model will automatically load, and is now ready for use!
106
+ 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.
107
+ * Note that you do not need to set GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
108
+ 9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
109
+
110
+ ## How to use this GPTQ model from Python code
111
+
112
+ First make sure you have [AutoGPTQ](https://github.com/PanQiWei/AutoGPTQ) 0.3.1 or later installed:
113
+
114
+ ```
115
+ pip3 install auto-gptq
116
+ ```
117
+
118
+ If you have problems installing AutoGPTQ, please build from source instead:
119
+ ```
120
+ pip3 uninstall -y auto-gptq
121
+ git clone https://github.com/PanQiWei/AutoGPTQ
122
+ cd AutoGPTQ
123
+ pip3 install .
124
+ ```
125
+
126
+ Then try the following example code:
127
+
128
+ ```python
129
+ from transformers import AutoTokenizer, pipeline, logging
130
+ from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
131
+
132
+ model_name_or_path = "TheBloke/Llama2-22B-Daydreamer-v3-GPTQ"
133
+
134
+ use_triton = False
135
+
136
+ tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)
137
+
138
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
139
+ use_safetensors=True,
140
+ trust_remote_code=False,
141
+ device="cuda:0",
142
+ use_triton=use_triton,
143
+ quantize_config=None)
144
+
145
+ """
146
+ # To download from a specific branch, use the revision parameter, as in this example:
147
+ # Note that `revision` requires AutoGPTQ 0.3.1 or later!
148
+
149
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
150
+ revision="gptq-4bit-32g-actorder_True",
151
+ use_safetensors=True,
152
+ trust_remote_code=False,
153
+ device="cuda:0",
154
+ quantize_config=None)
155
+ """
156
+
157
+ prompt = "Tell me about AI"
158
+ prompt_template=f'''Below is an instruction that describes a task. Write a response that appropriately completes the request.
159
+
160
+ ### Instruction:
161
+ {prompt}
162
+
163
+ ### Response:
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**: 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: Nick Perez's Llama2 22B Daydreamer2 v3
227
+
228
+ Continuation of https://huggingface.co/nkpz/llama2-22b-daydreamer-v2
229
+
230
+ Gave it an epoch of https://huggingface.co/datasets/jondurbin/airoboros-gpt4-1.4.1-mpt which it had never seen before - it had only seen Airoboros 2.0.
231
+ I excluded all coding rows from this dataset - a dedicated model is better for that imo. I wanted it to focus on answering well in English.
232
+
233
+ I thought this was pretty good improvement. Its ability to roleplay and imitate speech styles was enhanced and I feel like it's still sharpening up its problem solving skills.
234
+
235
+ Its output style is right where I want it - dry and accurate enough when it's being asked for information, but has a lot character when it's answering fun prompts.
236
+
237
+ For input, it's flexible. It understands the Alpaca format well, but has been trained to handle a variety of input styles at this point.
238
+
239
+ I don't know what's next. I think I need to start benchmarking so I can more formally identify its weak points.
240
+
241
+ Examples edited with additional newlines to make it easier to read here.
242
+
243
+ **Example 1: Q&A**
244
+ ```
245
+ Question: What is happening to the newspaper industry? Respond in a pirate accent.
246
+ Answer:
247
+ The newspaper industry is being plundered by scurvy dogs and buccaneers like ye!
248
+ They're pillagin' yer booty with their fancy digital devices, like smartphones and tablets,
249
+ which make it easier for them to read online content instead of buyin' printed copies from us.
250
+ And don't forget about those pesky social media sites that are spreading rumors faster than the
251
+ winds on a galleon! So it's all hands on deck as we fight back against these scoundrels, or else
252
+ we'll be walkin' the plank soon enough! Avast ye landlubbers!
253
+ ```
254
+
255
+ **Example 2: Alpaca Instruction**
256
+ ```
257
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
258
+
259
+ ### Instruction:
260
+ Angrily explain why pizza shouldn't be made with bad tomatoes.
261
+
262
+ ### Response:
263
+
264
+ Listen, I know you think it's funny to make pizza with those rotten tomatoes, but let me tell you something -
265
+ bad tomatoes are not only disgusting and unhealthy, they also ruin the flavor of your pizza! You want a
266
+ delicious pie with fresh, juicy tomatoes that burst in your mouth, right?
267
+ Well, then, stop using those nasty tomatoes and stick to good quality ingredients for a truly satisfying pizza experience!
268
+ Trust me, once you try it, you won't go back! So please, don't even bother wasting your time making pizza with bad tomatoes
269
+ anymore; it's just not worth it. It makes me angry just thinking about it!
270
+ ```
271
+
272
+ **Example 3: Chat / Roleplay**
273
+ ```
274
+ You are speaking to Andre The Giant.
275
+ You: Hey, you're that wrestler guy, right?
276
+ Andre The Giant: Yes, I am indeed Andre the Giant. How can I help you?
277
+ You: So, how tall are you really? Like, what's your height in feet and inches?
278
+ Andre The Giant: Well, let's see... I stand at 7 ft 4 in (229 cm) tall.
279
+ You: Wow! That's so tall! And how much do you weigh?
280
+ Andre The Giant: I weigh around 500 lbs (227 kg). It's quite heavy, isn't it?
281
+ You: Yeah, I guess so. You must be strong too, considering your size.
282
+ Andre The Giant: Thank you for saying that. Strength is definitely important when dealing with my profession.
283
+ You: What made you decide to become a professional wrestler?
284
+ Andre The Giant: Well, I grew up watching wrestling on television, and I always admired the athleticism
285
+ and showmanship involved. When I got older, I decided to pursue it myself.
286
+ You: That's cool. Do you have any advice for aspiring wrestlers out there?
287
+ Andre The Giant: Absolutely! Always stay dedicated and focused, train hard, and never give up on yourself
288
+ or your dreams. Remember, anything is possible if you believe in yourself.
289
+ ```