jjaegii commited on
Commit
8418b2a
1 Parent(s): a5cb093

AutoGPTQ model for jjaegii/Llama-3.1-8B-LoRA-kolon-sg-v2-merged: 4bits, gr128, desc_act=False

Browse files
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "jjaegii/Llama-3.1-8B-LoRA-kolon-sg-v2-merged",
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": 128,
15
+ "hidden_act": "silu",
16
+ "hidden_size": 4096,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 14336,
19
+ "max_position_embeddings": 131072,
20
+ "mlp_bias": false,
21
+ "model_type": "llama",
22
+ "num_attention_heads": 32,
23
+ "num_hidden_layers": 32,
24
+ "num_key_value_heads": 8,
25
+ "pretraining_tp": 1,
26
+ "quantization_config": {
27
+ "bits": 4,
28
+ "damp_percent": 0.01,
29
+ "desc_act": false,
30
+ "group_size": 128,
31
+ "is_marlin_format": false,
32
+ "model_file_base_name": "gptq_model-4bit-128g",
33
+ "model_name_or_path": "Llama-3.1-8B-LoRA-kolon-sg-v2-merged-GPTQ-INT4",
34
+ "quant_method": "gptq",
35
+ "static_groups": false,
36
+ "sym": true,
37
+ "true_sequential": true
38
+ },
39
+ "rms_norm_eps": 1e-05,
40
+ "rope_scaling": {
41
+ "factor": 8.0,
42
+ "high_freq_factor": 4.0,
43
+ "low_freq_factor": 1.0,
44
+ "original_max_position_embeddings": 8192,
45
+ "rope_type": "llama3"
46
+ },
47
+ "rope_theta": 500000.0,
48
+ "tie_word_embeddings": false,
49
+ "torch_dtype": "float16",
50
+ "transformers_version": "4.45.2",
51
+ "use_cache": true,
52
+ "vocab_size": 128256
53
+ }
gptq_model-4bit-128g.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f0f5c616ad863140bd17f626f978950a036f305061109e4bf6ccefd1f70830b
3
+ size 5735720552
quantize_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "damp_percent": 0.01,
5
+ "desc_act": false,
6
+ "static_groups": false,
7
+ "sym": true,
8
+ "true_sequential": true,
9
+ "model_name_or_path": "Llama-3.1-8B-LoRA-kolon-sg-v2-merged-GPTQ-INT4",
10
+ "model_file_base_name": "gptq_model-4bit-128g",
11
+ "is_marlin_format": false,
12
+ "quant_method": "gptq"
13
+ }