fbaldassarri commited on
Commit
c4a3590
·
verified ·
1 Parent(s): c26aff2

Initial Upload

Browse files
README.md CHANGED
@@ -1,3 +1,84 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - fr
5
+ tags:
6
+ - pytorch
7
+ - causal-lm
8
+ - mistral
9
+ - autoround
10
+ - auto-round
11
+ - intel-autoround
12
+ - awq
13
+ - autoawq
14
+ - auto-awq
15
+ - woq
16
+ - intel
17
+ - pytorch
18
+ - mistralai
19
+ license: apache-2.0
20
+ model_name: Mistral 7B v0.3
21
+ base_model:
22
+ - mistralai/Mistral-7B-v0.3
23
+ inference: false
24
+ model_creator: mistralai
25
+ pipeline_tag: text-generation
26
+ prompt_template: '{prompt}
27
+ '
28
+ quantized_by: fbaldassarri
29
+ ---
30
+
31
+ ## Model Information
32
+
33
+ Quantized version of [mistralai/Mistral-7B-v0.3](https://huggingface.co/mistralai/Mistral-7B-v0.3) using torch.float32 for quantization tuning.
34
+ - 4 bits (INT4)
35
+ - group size = 128
36
+ - Symmetrical Quantization
37
+ - Method AutoAWQ
38
+
39
+ Quantization framework: [Intel AutoRound](https://github.com/intel/auto-round) v0.4.3
40
+
41
+ Note: this INT4 version of Mistral-7B-v0.3 has been quantized to run inference through CPU.
42
+
43
+ ## Replication Recipe
44
+
45
+ ### Step 1 Install Requirements
46
+
47
+ I suggest to install requirements into a dedicated python-virtualenv or a conda enviroment.
48
+
49
+ ```
50
+ wget https://github.com/intel/auto-round/archive/refs/tags/v0.4.3.tar.gz
51
+ tar -xvzf v0.4.3.tar.gz
52
+ cd auto-round-0.4.3
53
+ pip install -r requirements-cpu.txt --upgrade
54
+ ```
55
+
56
+ ### Step 2 Build Intel AutoRound wheel from sources
57
+
58
+ ```
59
+ pip install -vvv --no-build-isolation -e .[cpu]
60
+ ```
61
+
62
+ ### Step 3 Script for Quantization
63
+
64
+ ```
65
+ from transformers import AutoModelForCausalLM, AutoTokenizer
66
+ model_name = "mistralai/Mistral-7B-v0.3"
67
+ model = AutoModelForCausalLM.from_pretrained(model_name)
68
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
69
+ from auto_round import AutoRound
70
+ bits, group_size, sym, device, amp = 4, 128, True, 'cpu', False
71
+ autoround = AutoRound(model, tokenizer, nsamples=128, iters=200, seqlen=512, batch_size=4, bits=bits, group_size=group_size, sym=sym, device=device, amp=amp)
72
+ autoround.quantize()
73
+ output_dir = "./AutoRound/mistralai_Mistral-7B-v0.3-autoawq-int4-gs128-sym"
74
+ autoround.save_quantized(output_dir, format='auto_awq', inplace=True)
75
+ ```
76
+
77
+ ## License
78
+
79
+ [Apache 2.0 License](https://choosealicense.com/licenses/apache-2.0/)
80
+
81
+ ## Disclaimer
82
+
83
+ This quantized model comes with no warranty. It has been developed only for research purposes.
84
+
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "mistralai/Mistral-7B-v0.3",
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": 4096,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 14336,
14
+ "max_position_embeddings": 32768,
15
+ "model_type": "mistral",
16
+ "num_attention_heads": 32,
17
+ "num_hidden_layers": 32,
18
+ "num_key_value_heads": 8,
19
+ "quantization_config": {
20
+ "amp": false,
21
+ "autoround_version": "0.4.3",
22
+ "batch_size": 4,
23
+ "bits": 4,
24
+ "data_type": "int",
25
+ "dataset": "NeelNanda/pile-10k",
26
+ "enable_minmax_tuning": true,
27
+ "enable_norm_bias_tuning": false,
28
+ "enable_quanted_input": true,
29
+ "gradient_accumulate_steps": 1,
30
+ "group_size": 128,
31
+ "iters": 200,
32
+ "low_gpu_mem_usage": false,
33
+ "lr": 0.005,
34
+ "minmax_lr": 0.005,
35
+ "modules_to_not_convert": [
36
+ "lm_head"
37
+ ],
38
+ "nsamples": 128,
39
+ "quant_method": "awq",
40
+ "scale_dtype": "torch.float16",
41
+ "seqlen": 512,
42
+ "sym": true,
43
+ "to_quant_block_names": null,
44
+ "version": "gemm",
45
+ "zero_point": false
46
+ },
47
+ "rms_norm_eps": 1e-05,
48
+ "rope_theta": 1000000.0,
49
+ "sliding_window": null,
50
+ "tie_word_embeddings": false,
51
+ "torch_dtype": "float32",
52
+ "transformers_version": "4.48.0",
53
+ "use_cache": true,
54
+ "vocab_size": 32768
55
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.48.0"
6
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a061a96b6d73b7c1dfff37a99d34450f7ffa2dc5b57a20efaa30b3a1d825f8c7
3
+ size 4700866808
quantization_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "sym": true,
5
+ "data_type": "int",
6
+ "enable_quanted_input": true,
7
+ "enable_minmax_tuning": true,
8
+ "seqlen": 512,
9
+ "batch_size": 4,
10
+ "scale_dtype": "torch.float16",
11
+ "lr": 0.005,
12
+ "minmax_lr": 0.005,
13
+ "gradient_accumulate_steps": 1,
14
+ "iters": 200,
15
+ "amp": false,
16
+ "nsamples": 128,
17
+ "low_gpu_mem_usage": false,
18
+ "to_quant_block_names": null,
19
+ "enable_norm_bias_tuning": false,
20
+ "dataset": "NeelNanda/pile-10k",
21
+ "autoround_version": "0.4.3",
22
+ "quant_method": "awq",
23
+ "zero_point": false,
24
+ "version": "gemm",
25
+ "modules_to_not_convert": [
26
+ "lm_head"
27
+ ]
28
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f00374dea48658ee8f5d0f21895b9bc55cb0103939607c8185bfd1c6ca1f89
3
+ size 587404
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff