onebitquantized commited on
Commit
4b1eb33
1 Parent(s): f9d75d3

Upload of AutoGPTQ quantized model

Browse files
config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "mistralai/Mistral-Small-Instruct-2409",
3
+ "architectures": [
4
+ "MistralForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 1,
8
+ "eos_token_id": 2,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 6144,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 16384,
14
+ "max_position_embeddings": 32768,
15
+ "model_type": "mistral",
16
+ "num_attention_heads": 48,
17
+ "num_hidden_layers": 56,
18
+ "num_key_value_heads": 8,
19
+ "quantization_config": {
20
+ "bits": 4,
21
+ "checkpoint_format": "gptq",
22
+ "damp_percent": 0.05,
23
+ "desc_act": true,
24
+ "exponent_hinv": 4.0,
25
+ "group_size": 128,
26
+ "model_file_base_name": null,
27
+ "model_name_or_path": null,
28
+ "quant_method": "gptq",
29
+ "shrink": 0.0625,
30
+ "static_groups": false,
31
+ "sym": false,
32
+ "true_sequential": true
33
+ },
34
+ "rms_norm_eps": 1e-05,
35
+ "rope_theta": 1000000.0,
36
+ "sliding_window": null,
37
+ "tie_word_embeddings": false,
38
+ "torch_dtype": "float16",
39
+ "transformers_version": "4.45.2",
40
+ "use_cache": true,
41
+ "vocab_size": 32768
42
+ }
gptq_model-4bit-128g.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebf9dbb76ae7e1c0e2c88ee78f6ebb48a70f51c702e6c4e601b5e5cae5579049
3
+ size 12167420832
quantize_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "damp_percent": 0.05,
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
+ }