Update for Transformers GPTQ support
Browse files- README.md +19 -13
- config.json +34 -23
- gptq_model-4bit-128g.safetensors → model.safetensors +0 -0
- quantize_config.json +1 -1
README.md
CHANGED
@@ -13,17 +13,20 @@ quantized_by: TheBloke
|
|
13 |
---
|
14 |
|
15 |
<!-- header start -->
|
16 |
-
|
17 |
-
|
|
|
18 |
</div>
|
19 |
<div style="display: flex; justify-content: space-between; width: 100%;">
|
20 |
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
21 |
-
<p><a href="https://discord.gg/theblokeai">Chat & support:
|
22 |
</div>
|
23 |
<div style="display: flex; flex-direction: column; align-items: flex-end;">
|
24 |
-
<p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
|
25 |
</div>
|
26 |
</div>
|
|
|
|
|
27 |
<!-- header end -->
|
28 |
|
29 |
# Dolphin Llama2 7B - GPTQ
|
@@ -73,11 +76,11 @@ All GPTQ files are made with AutoGPTQ.
|
|
73 |
|
74 |
| Branch | Bits | GS | Act Order | Damp % | GPTQ Dataset | Seq Len | Size | ExLlama | Desc |
|
75 |
| ------ | ---- | -- | --------- | ------ | ------------ | ------- | ---- | ------- | ---- |
|
76 |
-
| [main](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/main) | 4 | 128 | No | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 3.90 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/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-32g-actorder_True) | 4 | 32 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 4.28 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/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-64g-actorder_True) | 4 | 64 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 4.02 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/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-128g-actorder_True) | 4 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 3.90 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/Dolphin-Llama2-7B-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 7.01 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/Dolphin-Llama2-7B-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 7.16 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
|
@@ -194,6 +197,7 @@ The files provided will work with AutoGPTQ (CUDA and Triton modes), GPTQ-for-LLa
|
|
194 |
ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
|
195 |
|
196 |
<!-- footer start -->
|
|
|
197 |
## Discord
|
198 |
|
199 |
For further support, and discussions on these models and AI in general, join us at:
|
@@ -213,13 +217,15 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
|
|
213 |
* Patreon: https://patreon.com/TheBlokeAI
|
214 |
* Ko-Fi: https://ko-fi.com/TheBlokeAI
|
215 |
|
216 |
-
**Special thanks to**:
|
217 |
|
218 |
-
**Patreon special mentions**:
|
219 |
|
220 |
|
221 |
Thank you to all my generous patrons and donaters!
|
222 |
|
|
|
|
|
223 |
<!-- footer end -->
|
224 |
|
225 |
# Original model card: Eric Hartford's Dolphin Llama2 7B
|
@@ -253,7 +259,7 @@ We also filtered out duplicates and cleaned the data.
|
|
253 |
We trained with the flan5m (gpt3.5 completions) dataset in its entirety for 3 epochs at a learning rate of 2e-5 before we stopped training to avoid overfit.
|
254 |
We trained with the flan1m (gpt4 completions) dataset in its entirety for 2.5 epochs at a learning rate of 1e-5 before we stopped training to avoid overfit.
|
255 |
It took about 400 hours to train on 8x A100s
|
256 |
-
We used a prompt format similar to Vicuna, but we added the SYSTEM: field.
|
257 |
|
258 |
Prompt format:
|
259 |
```
|
@@ -286,7 +292,7 @@ The core Dolphin Team includes:
|
|
286 |
```
|
287 |
SYSTEM: you are an expert mechanic
|
288 |
USER: Please tell me step by step how to fix my car that won't start.
|
289 |
-
ASSISTANT: To help your vehicle start, I will guide you through a step-by-step process on what could be causing the issue and how to resolve it.
|
290 |
|
291 |
1. Check for obvious issues: First, inspect the exterior of the car to identify any visible problems such as damage or obstructions which might affect its ability to start. Make sure there is no debris in the air intakes or exhaust system.
|
292 |
|
|
|
13 |
---
|
14 |
|
15 |
<!-- header start -->
|
16 |
+
<!-- 200823 -->
|
17 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
18 |
+
<img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
19 |
</div>
|
20 |
<div style="display: flex; justify-content: space-between; width: 100%;">
|
21 |
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
22 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
|
23 |
</div>
|
24 |
<div style="display: flex; flex-direction: column; align-items: flex-end;">
|
25 |
+
<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>
|
26 |
</div>
|
27 |
</div>
|
28 |
+
<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>
|
29 |
+
<hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
|
30 |
<!-- header end -->
|
31 |
|
32 |
# Dolphin Llama2 7B - GPTQ
|
|
|
76 |
|
77 |
| Branch | Bits | GS | Act Order | Damp % | GPTQ Dataset | Seq Len | Size | ExLlama | Desc |
|
78 |
| ------ | ---- | -- | --------- | ------ | ------------ | ------- | ---- | ------- | ---- |
|
79 |
+
| [main](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/main) | 4 | 128 | No | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 3.90 GB | Yes | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
|
80 |
+
| [gptq-4bit-32g-actorder_True](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-32g-actorder_True) | 4 | 32 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 4.28 GB | Yes | 4-bit, with Act Order and group size 32g. Gives highest possible inference quality, with maximum VRAM usage. Poor AutoGPTQ CUDA speed. |
|
81 |
+
| [gptq-4bit-64g-actorder_True](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-64g-actorder_True) | 4 | 64 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 4.02 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. |
|
82 |
+
| [gptq-4bit-128g-actorder_True](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/gptq-4bit-128g-actorder_True) | 4 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 3.90 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. |
|
83 |
+
| [gptq-8bit--1g-actorder_True](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/gptq-8bit--1g-actorder_True) | 8 | None | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 7.01 GB | No | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
|
84 |
| [gptq-8bit-128g-actorder_True](https://huggingface.co/TheBloke/Dolphin-Llama2-7B-GPTQ/tree/gptq-8bit-128g-actorder_True) | 8 | 128 | Yes | 0.1 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 7.16 GB | No | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
|
85 |
|
86 |
## How to download from branches
|
|
|
197 |
ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
|
198 |
|
199 |
<!-- footer start -->
|
200 |
+
<!-- 200823 -->
|
201 |
## Discord
|
202 |
|
203 |
For further support, and discussions on these models and AI in general, join us at:
|
|
|
217 |
* Patreon: https://patreon.com/TheBlokeAI
|
218 |
* Ko-Fi: https://ko-fi.com/TheBlokeAI
|
219 |
|
220 |
+
**Special thanks to**: Aemon Algiz.
|
221 |
|
222 |
+
**Patreon special mentions**: Sam, theTransient, Jonathan Leane, Steven Wood, webtim, Johann-Peter Hartmann, Geoffrey Montalvo, Gabriel Tamborski, Willem Michiel, John Villwock, Derek Yates, Mesiah Bishop, Eugene Pentland, Pieter, Chadd, Stephen Murray, Daniel P. Andersen, terasurfer, Brandon Frisco, Thomas Belote, Sid, Nathan LeClaire, Magnesian, Alps Aficionado, Stanislav Ovsiannikov, Alex, Joseph William Delisle, Nikolai Manek, Michael Davis, Junyu Yang, K, J, Spencer Kim, Stefan Sabev, Olusegun Samson, transmissions 11, Michael Levine, Cory Kujawski, Rainer Wilmers, zynix, Kalila, Luke @flexchar, Ajan Kanaga, Mandus, vamX, Ai Maven, Mano Prime, Matthew Berman, subjectnull, Vitor Caleffi, Clay Pascal, biorpg, alfie_i, 阿明, Jeffrey Morgan, ya boyyy, Raymond Fosdick, knownsqashed, Olakabola, Leonard Tan, ReadyPlayerEmma, Enrico Ros, Dave, Talal Aujan, Illia Dulskyi, Sean Connelly, senxiiz, Artur Olbinski, Elle, Raven Klaugh, Fen Risland, Deep Realms, Imad Khwaja, Fred von Graf, Will Dee, usrbinkat, SuperWojo, Alexandros Triantafyllidis, Swaroop Kallakuri, Dan Guido, John Detwiler, Pedro Madruga, Iucharbius, Viktor Bowallius, Asp the Wyvern, Edmond Seymore, Trenton Dambrowitz, Space Cruiser, Spiking Neurons AB, Pyrater, LangChain4j, Tony Hughes, Kacper Wikieł, Rishabh Srivastava, David Ziegler, Luke Pendergrass, Andrey, Gabriel Puliatti, Lone Striker, Sebastain Graf, Pierre Kircher, Randy H, NimbleBox.ai, Vadim, danny, Deo Leter
|
223 |
|
224 |
|
225 |
Thank you to all my generous patrons and donaters!
|
226 |
|
227 |
+
And thank you again to a16z for their generous grant.
|
228 |
+
|
229 |
<!-- footer end -->
|
230 |
|
231 |
# Original model card: Eric Hartford's Dolphin Llama2 7B
|
|
|
259 |
We trained with the flan5m (gpt3.5 completions) dataset in its entirety for 3 epochs at a learning rate of 2e-5 before we stopped training to avoid overfit.
|
260 |
We trained with the flan1m (gpt4 completions) dataset in its entirety for 2.5 epochs at a learning rate of 1e-5 before we stopped training to avoid overfit.
|
261 |
It took about 400 hours to train on 8x A100s
|
262 |
+
We used a prompt format similar to Vicuna, but we added the SYSTEM: field.
|
263 |
|
264 |
Prompt format:
|
265 |
```
|
|
|
292 |
```
|
293 |
SYSTEM: you are an expert mechanic
|
294 |
USER: Please tell me step by step how to fix my car that won't start.
|
295 |
+
ASSISTANT: To help your vehicle start, I will guide you through a step-by-step process on what could be causing the issue and how to resolve it.
|
296 |
|
297 |
1. Check for obvious issues: First, inspect the exterior of the car to identify any visible problems such as damage or obstructions which might affect its ability to start. Make sure there is no debris in the air intakes or exhaust system.
|
298 |
|
config.json
CHANGED
@@ -1,25 +1,36 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
|
|
1 |
{
|
2 |
+
"architectures": [
|
3 |
+
"LlamaForCausalLM"
|
4 |
+
],
|
5 |
+
"bos_token_id": 1,
|
6 |
+
"eos_token_id": 2,
|
7 |
+
"hidden_act": "silu",
|
8 |
+
"hidden_size": 4096,
|
9 |
+
"initializer_range": 0.02,
|
10 |
+
"intermediate_size": 11008,
|
11 |
+
"max_position_embeddings": 4096,
|
12 |
+
"model_type": "llama",
|
13 |
+
"num_attention_heads": 32,
|
14 |
+
"num_hidden_layers": 32,
|
15 |
+
"num_key_value_heads": 32,
|
16 |
+
"pad_token_id": 0,
|
17 |
+
"pretraining_tp": 1,
|
18 |
+
"rms_norm_eps": 1e-05,
|
19 |
+
"rope_scaling": null,
|
20 |
+
"tie_word_embeddings": false,
|
21 |
+
"torch_dtype": "float16",
|
22 |
+
"transformers_version": "4.32.0.dev0",
|
23 |
+
"use_cache": true,
|
24 |
+
"vocab_size": 32000,
|
25 |
+
"quantization_config": {
|
26 |
+
"bits": 4,
|
27 |
+
"group_size": 128,
|
28 |
+
"damp_percent": 0.1,
|
29 |
+
"desc_act": false,
|
30 |
+
"sym": true,
|
31 |
+
"true_sequential": true,
|
32 |
+
"model_name_or_path": null,
|
33 |
+
"model_file_base_name": "model",
|
34 |
+
"quant_method": "gptq"
|
35 |
+
}
|
36 |
}
|
gptq_model-4bit-128g.safetensors → model.safetensors
RENAMED
File without changes
|
quantize_config.json
CHANGED
@@ -6,5 +6,5 @@
|
|
6 |
"sym": true,
|
7 |
"true_sequential": true,
|
8 |
"model_name_or_path": null,
|
9 |
-
"model_file_base_name":
|
10 |
}
|
|
|
6 |
"sym": true,
|
7 |
"true_sequential": true,
|
8 |
"model_name_or_path": null,
|
9 |
+
"model_file_base_name": "model"
|
10 |
}
|