onebitquantized commited on
Commit
60787cd
1 Parent(s): 6577183

Upload of AutoGPTQ quantized model

Browse files
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "meta-llama/Llama-3.2-1B-Instruct",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 128000,
9
+ "eos_token_id": [
10
+ 128001,
11
+ 128008,
12
+ 128009
13
+ ],
14
+ "head_dim": 64,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 2048,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 8192,
19
+ "max_position_embeddings": 131072,
20
+ "mlp_bias": false,
21
+ "model_type": "llama",
22
+ "num_attention_heads": 32,
23
+ "num_hidden_layers": 16,
24
+ "num_key_value_heads": 8,
25
+ "pretraining_tp": 1,
26
+ "quantization_config": {
27
+ "bits": 4,
28
+ "checkpoint_format": "gptq",
29
+ "damp_percent": 0.01,
30
+ "desc_act": true,
31
+ "exponent_hinv": 4.0,
32
+ "group_size": -1,
33
+ "model_file_base_name": null,
34
+ "model_name_or_path": null,
35
+ "quant_method": "gptq",
36
+ "shrink": 0.0625,
37
+ "static_groups": false,
38
+ "sym": false,
39
+ "true_sequential": true
40
+ },
41
+ "rms_norm_eps": 1e-05,
42
+ "rope_scaling": {
43
+ "factor": 32.0,
44
+ "high_freq_factor": 4.0,
45
+ "low_freq_factor": 1.0,
46
+ "original_max_position_embeddings": 8192,
47
+ "rope_type": "llama3"
48
+ },
49
+ "rope_theta": 500000.0,
50
+ "tie_word_embeddings": true,
51
+ "torch_dtype": "float16",
52
+ "transformers_version": "4.44.2",
53
+ "use_cache": true,
54
+ "vocab_size": 128256
55
+ }
gptq_model-4bit--1g.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5cb559b6018a22c46d16ad70bd8a423b0d4e3d87b0b2179a61cb1df5f38e04f
3
+ size 1539653672
quantize_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": -1,
4
+ "damp_percent": 0.01,
5
+ "desc_act": true,
6
+ "static_groups": false,
7
+ "sym": false,
8
+ "true_sequential": true,
9
+ "model_name_or_path": null,
10
+ "model_file_base_name": null,
11
+ "exponent_hinv": 4.0,
12
+ "shrink": 0.0625,
13
+ "quant_method": "gptq",
14
+ "checkpoint_format": "gptq"
15
+ }