TheBloke commited on
Commit
b251c20
1 Parent(s): 3991971

Update for Transformers GPTQ support

Browse files
README.md CHANGED
@@ -5,17 +5,20 @@ model_type: llama
5
  ---
6
 
7
  <!-- header start -->
8
- <div style="width: 100%;">
9
- <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
 
10
  </div>
11
  <div style="display: flex; justify-content: space-between; width: 100%;">
12
  <div style="display: flex; flex-direction: column; align-items: flex-start;">
13
- <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
14
  </div>
15
  <div style="display: flex; flex-direction: column; align-items: flex-end;">
16
- <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
17
  </div>
18
  </div>
 
 
19
  <!-- header end -->
20
 
21
  # ConceptofMind's LLongMA 2 7B GPTQ
@@ -45,13 +48,13 @@ Each separate quant is in a different branch. See below for instructions on fet
45
 
46
  | Branch | Bits | Group Size | Act Order (desc_act) | File Size | ExLlama Compatible? | Made With | Description |
47
  | ------ | ---- | ---------- | -------------------- | --------- | ------------------- | --------- | ----------- |
48
- | main | 4 | 128 | False | 3.90 GB | True | AutoGPTQ | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
49
- | gptq-4bit-32g-actorder_True | 4 | 32 | True | 4.28 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. |
50
- | gptq-4bit-64g-actorder_True | 4 | 64 | True | 4.02 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. |
51
- | gptq-4bit-128g-actorder_True | 4 | 128 | True | 3.90 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. |
52
- | gptq-8bit--1g-actorder_True | 8 | None | True | 7.01 GB | False | AutoGPTQ | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
53
- | gptq-8bit-128g-actorder_False | 8 | 128 | False | 7.16 GB | False | AutoGPTQ | 8-bit, with group size 128g for higher inference quality and without Act Order to improve AutoGPTQ speed. |
54
- | gptq-8bit-128g-actorder_True | 8 | 128 | True | 7.16 GB | False | AutoGPTQ | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
55
  | gptq-8bit-64g-actorder_True | 8 | 64 | True | 7.31 GB | False | AutoGPTQ | 8-bit, with group size 64g and Act Order for maximum inference quality. Poor AutoGPTQ CUDA speed. |
56
 
57
  ## How to download from branches
@@ -95,7 +98,7 @@ from transformers import AutoTokenizer, pipeline, logging
95
  from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
96
 
97
  model_name_or_path = "TheBloke/LLongMA-2-7B-GPTQ"
98
- model_basename = "gptq_model-4bit-128g"
99
 
100
  use_triton = False
101
 
@@ -157,6 +160,7 @@ The files provided will work with AutoGPTQ (CUDA and Triton modes), GPTQ-for-LLa
157
  ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
158
 
159
  <!-- footer start -->
 
160
  ## Discord
161
 
162
  For further support, and discussions on these models and AI in general, join us at:
@@ -176,13 +180,15 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
176
  * Patreon: https://patreon.com/TheBlokeAI
177
  * Ko-Fi: https://ko-fi.com/TheBlokeAI
178
 
179
- **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
180
 
181
- **Patreon special mentions**: Slarti, Chadd, John Detwiler, Pieter, zynix, K, Mano Prime, ReadyPlayerEmma, Ai Maven, Leonard Tan, Edmond Seymore, Joseph William Delisle, Luke @flexchar, Fred von Graf, Viktor Bowallius, Rishabh Srivastava, Nikolai Manek, Matthew Berman, Johann-Peter Hartmann, ya boyyy, Greatston Gnanesh, Femi Adebogun, Talal Aujan, Jonathan Leane, terasurfer, David Flickinger, William Sang, Ajan Kanaga, Vadim, Artur Olbinski, Raven Klaugh, Michael Levine, Oscar Rangel, Randy H, Cory Kujawski, RoA, Dave, Alex, Alexandros Triantafyllidis, Fen Risland, Eugene Pentland, vamX, Elle, Nathan LeClaire, Khalefa Al-Ahmad, Rainer Wilmers, subjectnull, Junyu Yang, Daniel P. Andersen, SuperWojo, LangChain4j, Mandus, Kalila, Illia Dulskyi, Trenton Dambrowitz, Asp the Wyvern, Derek Yates, Jeffrey Morgan, Deep Realms, Imad Khwaja, Pyrater, Preetika Verma, biorpg, Gabriel Tamborski, Stephen Murray, Spiking Neurons AB, Iucharbius, Chris Smitley, Willem Michiel, Luke Pendergrass, Sebastain Graf, senxiiz, Will Dee, Space Cruiser, Karl Bernard, Clay Pascal, Lone Striker, transmissions 11, webtim, WelcomeToTheClub, Sam, theTransient, Pierre Kircher, chris gileta, John Villwock, Sean Connelly, Willian Hasse
182
 
183
 
184
  Thank you to all my generous patrons and donaters!
185
 
 
 
186
  <!-- footer end -->
187
 
188
  # Original model card: ConceptofMind's LLongMA 2 7B
 
5
  ---
6
 
7
  <!-- header start -->
8
+ <!-- 200823 -->
9
+ <div style="width: auto; margin-left: auto; margin-right: auto">
10
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
11
  </div>
12
  <div style="display: flex; justify-content: space-between; width: 100%;">
13
  <div style="display: flex; flex-direction: column; align-items: flex-start;">
14
+ <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p>
15
  </div>
16
  <div style="display: flex; flex-direction: column; align-items: flex-end;">
17
+ <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>
18
  </div>
19
  </div>
20
+ <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>
21
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
22
  <!-- header end -->
23
 
24
  # ConceptofMind's LLongMA 2 7B GPTQ
 
48
 
49
  | Branch | Bits | Group Size | Act Order (desc_act) | File Size | ExLlama Compatible? | Made With | Description |
50
  | ------ | ---- | ---------- | -------------------- | --------- | ------------------- | --------- | ----------- |
51
+ | main | 4 | 128 | False | 3.90 GB | True | AutoGPTQ | Most compatible option. Good inference speed in AutoGPTQ and GPTQ-for-LLaMa. Lower inference quality than other options. |
52
+ | gptq-4bit-32g-actorder_True | 4 | 32 | True | 4.28 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. |
53
+ | gptq-4bit-64g-actorder_True | 4 | 64 | True | 4.02 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. |
54
+ | gptq-4bit-128g-actorder_True | 4 | 128 | True | 3.90 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. |
55
+ | gptq-8bit--1g-actorder_True | 8 | None | True | 7.01 GB | False | AutoGPTQ | 8-bit, with Act Order. No group size, to lower VRAM requirements and to improve AutoGPTQ speed. |
56
+ | gptq-8bit-128g-actorder_False | 8 | 128 | False | 7.16 GB | False | AutoGPTQ | 8-bit, with group size 128g for higher inference quality and without Act Order to improve AutoGPTQ speed. |
57
+ | gptq-8bit-128g-actorder_True | 8 | 128 | True | 7.16 GB | False | AutoGPTQ | 8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy. Poor AutoGPTQ CUDA speed. |
58
  | gptq-8bit-64g-actorder_True | 8 | 64 | True | 7.31 GB | False | AutoGPTQ | 8-bit, with group size 64g and Act Order for maximum inference quality. Poor AutoGPTQ CUDA speed. |
59
 
60
  ## How to download from branches
 
98
  from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig
99
 
100
  model_name_or_path = "TheBloke/LLongMA-2-7B-GPTQ"
101
+ model_basename = "model"
102
 
103
  use_triton = False
104
 
 
160
  ExLlama works with Llama models in 4-bit. Please see the Provided Files table above for per-file compatibility.
161
 
162
  <!-- footer start -->
163
+ <!-- 200823 -->
164
  ## Discord
165
 
166
  For further support, and discussions on these models and AI in general, join us at:
 
180
  * Patreon: https://patreon.com/TheBlokeAI
181
  * Ko-Fi: https://ko-fi.com/TheBlokeAI
182
 
183
+ **Special thanks to**: Aemon Algiz.
184
 
185
+ **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
186
 
187
 
188
  Thank you to all my generous patrons and donaters!
189
 
190
+ And thank you again to a16z for their generous grant.
191
+
192
  <!-- footer end -->
193
 
194
  # Original model card: ConceptofMind's LLongMA 2 7B
config.json CHANGED
@@ -1,35 +1,46 @@
1
  {
2
- "_name_or_path": "NousResearch/Llama-2-7b-hf",
3
- "architectures": [
4
- "LlamaForCausalLM"
5
- ],
6
- "auto_map": {
7
- "AutoConfig": "configuration_llama.LlamaConfig",
8
- "AutoModel": "modeling_llama.LlamaModel",
9
- "AutoModelForCausalLM": "modeling_llama.LlamaForCausalLM",
10
- "AutoModelForSequenceClassification": "modeling_llama.LlamaForSequenceClassification"
11
- },
12
- "bos_token_id": 1,
13
- "eos_token_id": 2,
14
- "hidden_act": "silu",
15
- "hidden_size": 4096,
16
- "initializer_range": 0.02,
17
- "intermediate_size": 11008,
18
- "max_position_embeddings": 8192,
19
- "model_type": "llama",
20
- "num_attention_heads": 32,
21
- "num_hidden_layers": 32,
22
- "num_key_value_heads": 32,
23
- "pad_token_id": 0,
24
- "pretraining_tp": 1,
25
- "rms_norm_eps": 1e-05,
26
- "rope_scaling": {
27
- "type": "linear",
28
- "factor": 2.0
29
- },
30
- "tie_word_embeddings": false,
31
- "torch_dtype": "bfloat16",
32
- "transformers_version": "4.32.0.dev0",
33
- "use_cache": true,
34
- "vocab_size": 32000
 
 
 
 
 
 
 
 
 
 
 
35
  }
 
1
  {
2
+ "_name_or_path": "NousResearch/Llama-2-7b-hf",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_llama.LlamaConfig",
8
+ "AutoModel": "modeling_llama.LlamaModel",
9
+ "AutoModelForCausalLM": "modeling_llama.LlamaForCausalLM",
10
+ "AutoModelForSequenceClassification": "modeling_llama.LlamaForSequenceClassification"
11
+ },
12
+ "bos_token_id": 1,
13
+ "eos_token_id": 2,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 4096,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 11008,
18
+ "max_position_embeddings": 8192,
19
+ "model_type": "llama",
20
+ "num_attention_heads": 32,
21
+ "num_hidden_layers": 32,
22
+ "num_key_value_heads": 32,
23
+ "pad_token_id": 0,
24
+ "pretraining_tp": 1,
25
+ "rms_norm_eps": 1e-05,
26
+ "rope_scaling": {
27
+ "type": "linear",
28
+ "factor": 2.0
29
+ },
30
+ "tie_word_embeddings": false,
31
+ "torch_dtype": "bfloat16",
32
+ "transformers_version": "4.32.0.dev0",
33
+ "use_cache": true,
34
+ "vocab_size": 32000,
35
+ "quantization_config": {
36
+ "bits": 4,
37
+ "group_size": 128,
38
+ "damp_percent": 0.1,
39
+ "desc_act": false,
40
+ "sym": true,
41
+ "true_sequential": true,
42
+ "model_name_or_path": null,
43
+ "model_file_base_name": "model",
44
+ "quant_method": "gptq"
45
+ }
46
  }
gptq_model-4bit-128g.safetensors → model.safetensors RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:93feab3a506c9f444de9bd0c6a08bf4f0e6e85063eb184d999025e6202ffba55
3
- size 3896726080
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d8a4281d4fe60ede97855bdc063fdf14810a55aa12876d32ed9dc7f21a6cba3
3
+ size 3896726136
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": null
10
  }
 
6
  "sym": true,
7
  "true_sequential": true,
8
  "model_name_or_path": null,
9
+ "model_file_base_name": "model"
10
  }