TheBloke commited on
Commit
4d917e8
1 Parent(s): fa22cd0

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. README.md +233 -0
README.md ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ language:
4
+ - en
5
+ license: other
6
+ model_type: llama
7
+ ---
8
+
9
+ <!-- header start -->
10
+ <div style="width: 100%;">
11
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
12
+ </div>
13
+ <div style="display: flex; justify-content: space-between; width: 100%;">
14
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
15
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
16
+ </div>
17
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
18
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
19
+ </div>
20
+ </div>
21
+ <!-- header end -->
22
+
23
+ # Gryphe's MythoLogic 13B GPTQ
24
+
25
+ These files are GPTQ model files for [Gryphe's MythoLogic 13B](https://huggingface.co/Gryphe/MythoLogic-13b).
26
+
27
+ 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.
28
+
29
+ These files were quantised using hardware kindly provided by [Latitude.sh](https://www.latitude.sh/accelerate).
30
+
31
+ ## Repositories available
32
+
33
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/MythoLogic-13B-GPTQ)
34
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/MythoLogic-13B-GGML)
35
+ * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Gryphe/MythoLogic-13b)
36
+
37
+ ## Prompt template: Alpaca
38
+
39
+ ```
40
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
41
+
42
+ ### Instruction: {prompt}
43
+
44
+ ### Response:
45
+ ```
46
+
47
+ ## Provided files
48
+
49
+ Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.
50
+
51
+ Each separate quant is in a different branch. See below for instructions on fetching from different branches.
52
+
53
+ | Branch | Bits | Group Size | Act Order (desc_act) | File Size | ExLlama Compatible? | Made With | Description |
54
+ | ------ | ---- | ---------- | -------------------- | --------- | ------------------- | --------- | ----------- |
55
+ | main | 4 | 128 | False | 7.45 GB | True | GPTQ-for-LLaMa | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
56
+ | gptq-4bit-32g-actorder_True | 4 | 32 | True | 8.00 GB | True | AutoGPTQ | 4-bit, with Act Order and group size. 32g gives highest possible inference quality, with maximum VRAM usage. Poor AutoGPTQ CUDA speed. |
57
+ | gptq-4bit-64g-actorder_True | 4 | 64 | True | 7.51 GB | True | AutoGPTQ | 4-bit, with Act Order and group size. 64g uses less VRAM than 32g, but with slightly lower accuracy. Poor AutoGPTQ CUDA speed. |
58
+ | gptq-4bit-128g-actorder_True | 4 | 128 | True | 7.26 GB | True | AutoGPTQ | 4-bit, with Act Order and group size. 128g uses even less VRAM, but with slightly lower accuracy. Poor AutoGPTQ CUDA speed. |
59
+ | gptq-8bit--1g-actorder_True | 8 | None | True | 13.36 GB | False | AutoGPTQ | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
60
+ | gptq-8bit-128g-actorder_False | 8 | 128 | False | 13.65 GB | False | AutoGPTQ | 8-bit, with group size 128g for higher inference quality and without Act Order to improve AutoGPTQ speed. |
61
+
62
+ ## How to download from branches
63
+
64
+ - In text-generation-webui, you can add `:branch` to the end of the download name, eg `TheBloke/MythoLogic-13B-GPTQ:gptq-4bit-32g-actorder_True`
65
+ - With Git, you can clone a branch with:
66
+ ```
67
+ git clone --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/MythoLogic-13B-GPTQ`
68
+ ```
69
+ - In Python Transformers code, the branch is the `revision` parameter; see below.
70
+
71
+ ## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
72
+
73
+ Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui).
74
+
75
+ It is strongly recommended to use the text-generation-webui one-click-installers unless you know how to make a manual install.
76
+
77
+ 1. Click the **Model tab**.
78
+ 2. Under **Download custom model or LoRA**, enter `TheBloke/MythoLogic-13B-GPTQ`.
79
+ - To download from a specific branch, enter for example `TheBloke/MythoLogic-13B-GPTQ:gptq-4bit-32g-actorder_True`
80
+ - see Provided Files above for the list of branches for each option.
81
+ 3. Click **Download**.
82
+ 4. The model will start downloading. Once it's finished it will say "Done"
83
+ 5. In the top left, click the refresh icon next to **Model**.
84
+ 6. In the **Model** dropdown, choose the model you just downloaded: `MythoLogic-13B-GPTQ`
85
+ 7. The model will automatically load, and is now ready for use!
86
+ 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.
87
+ * Note that you do not need to set GPTQ parameters any more. These are set automatically from the file `quantize_config.json`.
88
+ 9. Once you're ready, click the **Text Generation tab** and enter a prompt to get started!
89
+
90
+ ## How to use this GPTQ model from Python code
91
+
92
+ First make sure you have [AutoGPTQ](https://github.com/PanQiWei/AutoGPTQ) installed:
93
+
94
+ `GITHUB_ACTIONS=true pip install auto-gptq`
95
+
96
+ Then try the following example code:
97
+
98
+ ```python
99
+ from transformers import AutoTokenizer, pipeline, logging
100
+ from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
101
+
102
+ model_name_or_path = "TheBloke/MythoLogic-13B-GPTQ"
103
+ model_basename = "mythologic-13b-GPTQ-4bit-128g.no-act.order"
104
+
105
+ use_triton = False
106
+
107
+ tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)
108
+
109
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
110
+ model_basename=model_basename
111
+ use_safetensors=True,
112
+ trust_remote_code=True,
113
+ device="cuda:0",
114
+ use_triton=use_triton,
115
+ quantize_config=None)
116
+
117
+ """
118
+ To download from a specific branch, use the revision parameter, as in this example:
119
+
120
+ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
121
+ revision="gptq-4bit-32g-actorder_True",
122
+ model_basename=model_basename,
123
+ use_safetensors=True,
124
+ trust_remote_code=True,
125
+ device="cuda:0",
126
+ quantize_config=None)
127
+ """
128
+
129
+ prompt = "Tell me about AI"
130
+ prompt_template=f'''Below is an instruction that describes a task. Write a response that appropriately completes the request.
131
+
132
+ ### Instruction: {prompt}
133
+
134
+ ### Response:
135
+ '''
136
+
137
+ print("\n\n*** Generate:")
138
+
139
+ input_ids = tokenizer(prompt_template, return_tensors='pt').input_ids.cuda()
140
+ output = model.generate(inputs=input_ids, temperature=0.7, max_new_tokens=512)
141
+ print(tokenizer.decode(output[0]))
142
+
143
+ # Inference can also be done using transformers' pipeline
144
+
145
+ # Prevent printing spurious transformers error when using pipeline with AutoGPTQ
146
+ logging.set_verbosity(logging.CRITICAL)
147
+
148
+ print("*** Pipeline:")
149
+ pipe = pipeline(
150
+ "text-generation",
151
+ model=model,
152
+ tokenizer=tokenizer,
153
+ max_new_tokens=512,
154
+ temperature=0.7,
155
+ top_p=0.95,
156
+ repetition_penalty=1.15
157
+ )
158
+
159
+ print(pipe(prompt_template)[0]['generated_text'])
160
+ ```
161
+
162
+ ## Compatibility
163
+
164
+ 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.
165
+
166
+ ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
167
+
168
+ <!-- footer start -->
169
+ ## Discord
170
+
171
+ For further support, and discussions on these models and AI in general, join us at:
172
+
173
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
174
+
175
+ ## Thanks, and how to contribute.
176
+
177
+ Thanks to the [chirper.ai](https://chirper.ai) team!
178
+
179
+ 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.
180
+
181
+ 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.
182
+
183
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
184
+
185
+ * Patreon: https://patreon.com/TheBlokeAI
186
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
187
+
188
+ **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
189
+
190
+ **Patreon special mentions**: Space Cruiser, Nikolai Manek, Sam, Chris McCloskey, Rishabh Srivastava, Kalila, Spiking Neurons AB, Khalefa Al-Ahmad, WelcomeToTheClub, Chadd, Lone Striker, Viktor Bowallius, Edmond Seymore, Ai Maven, Chris Smitley, Dave, Alexandros Triantafyllidis, Luke @flexchar, Elle, ya boyyy, Talal Aujan, Alex , Jonathan Leane, Deep Realms, Randy H, subjectnull, Preetika Verma, Joseph William Delisle, Michael Levine, chris gileta, K, Oscar Rangel, LangChain4j, Trenton Dambrowitz, Eugene Pentland, Johann-Peter Hartmann, Femi Adebogun, Illia Dulskyi, senxiiz, Daniel P. Andersen, Sean Connelly, Artur Olbinski, RoA, Mano Prime, Derek Yates, Raven Klaugh, David Flickinger, Willem Michiel, Pieter, Willian Hasse, vamX, Luke Pendergrass, webtim, Ghost , Rainer Wilmers, Nathan LeClaire, Will Dee, Cory Kujawski, John Detwiler, Fred von Graf, biorpg, Iucharbius , Imad Khwaja, Pierre Kircher, terasurfer , Asp the Wyvern, John Villwock, theTransient, zynix , Gabriel Tamborski, Fen Risland, Gabriel Puliatti, Matthew Berman, Pyrater, SuperWojo, Stephen Murray, Karl Bernard, Ajan Kanaga, Greatston Gnanesh, Junyu Yang.
191
+
192
+ Thank you to all my generous patrons and donaters!
193
+
194
+ <!-- footer end -->
195
+
196
+ # Original model card: Gryphe's MythoLogic 13B
197
+
198
+ An experiment with gradient merges using [the following script](https://github.com/TehVenomm/LM_Transformers_BlockMerge), with [Chronos](https://huggingface.co/elinas/chronos-13b) as its primary model, augmented by [Hermes](https://huggingface.co/NousResearch/Nous-Hermes-13b) and [Wizard-Vicuna Uncensored](https://huggingface.co/TheBloke/Wizard-Vicuna-13B-Uncensored-HF).
199
+
200
+ Chronos is a wonderfully verbose model, though it definitely seems to lack in the logic department. Hermes and WizardLM have been merged gradually, primarily in the higher layers (10+) in an attempt to rectify some of this behaviour.
201
+
202
+ The main objective was to create an all-round model with improved story generation and roleplaying capabilities.
203
+
204
+ Below is an illustration to showcase a rough approximation of the gradients I used to create MythoLogic:
205
+
206
+ ![](approximation.png)
207
+
208
+ This model primarily uses Alpaca formatting, so for optimal model performance, use:
209
+ ```
210
+ ### Instruction:
211
+ Your instruction or question here.
212
+ ### Response:
213
+ ```
214
+
215
+ For chat/roleplay conversations, I suggest the following structure instead:
216
+ ```
217
+ You are <AI NAME>, a friendly and supportive AI language model. We discuss all subjects freely and without bias or restrictions.
218
+ I am <YOUR NAME>, the user interacting with you through a chat conversation. Start with greeting me.
219
+
220
+ ### Instruction:
221
+ Write <AI NAME>'s next reply in a chat between <YOUR NAME> and <AI NAME>. Write a single reply only.
222
+
223
+ ### Chat History:
224
+ <AI NAME>: Good day, <YOUR NAME>! How can I assist you today?
225
+ (Etc, etc)
226
+
227
+ ### Response:
228
+ <AI NAME>:
229
+ ```
230
+
231
+ ---
232
+ license: other
233
+ ---