fbaldassarri commited on
Commit
ec97522
·
verified ·
1 Parent(s): 63f3744

Initial Upload

Browse files
README.md CHANGED
@@ -1,3 +1,85 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - it
4
+ - en
5
+ tags:
6
+ - pretrained
7
+ - pytorch
8
+ - causal-lm
9
+ - minerva
10
+ - autoround
11
+ - intel-autoround
12
+ - autoawq
13
+ - auto-awq
14
+ - auto_awq
15
+ - woq
16
+ - gptq
17
+ - intel
18
+ license: apache-2.0
19
+ model_name: Minerva 1B base v1.0
20
+ base_model:
21
+ - sapienzanlp/Minerva-1B-base-v1.0
22
+ inference: false
23
+ model_creator: sapienzanlp
24
+ datasets:
25
+ - uonlp/CulturaX
26
+ pipeline_tag: text-generation
27
+ prompt_template: '{prompt}
28
+ '
29
+ quantized_by: fbaldassarri
30
+ ---
31
+
32
+ ## Model Information
33
+
34
+ Quantized version of [sapienzanlp/Minerva-1B-base-v1.0](https://huggingface.co/sapienzanlp/Minerva-1B-base-v1.0) using torch.float32 for quantization tuning.
35
+ - 4 bits (INT4)
36
+ - group size = 128
37
+ - Asymmetrical Quantization
38
+ - Method AutoAWQ
39
+
40
+ Quantization framework: [Intel AutoRound](https://github.com/intel/auto-round) v0.4.3
41
+
42
+ Note: this INT4 version of Minerva-1B-base-v1.0 has been quantized to run inference through CPU.
43
+
44
+ ## Replication Recipe
45
+
46
+ ### Step 1 Install Requirements
47
+
48
+ I suggest to install requirements into a dedicated python-virtualenv or a conda enviroment.
49
+
50
+ ```
51
+ wget https://github.com/intel/auto-round/archive/refs/tags/v0.4.3.tar.gz
52
+ tar -xvzf v0.4.3.tar.gz
53
+ cd auto-round-0.4.3
54
+ pip install -r requirements-cpu.txt --upgrade
55
+ ```
56
+
57
+ ### Step 2 Build Intel AutoRound wheel from sources
58
+
59
+ ```
60
+ pip install -vvv --no-build-isolation -e .[cpu]
61
+ ```
62
+
63
+ ### Step 3 Script for Quantization
64
+
65
+ ```
66
+ from transformers import AutoModelForCausalLM, AutoTokenizer
67
+ model_name = "sapienzanlp/Minerva-1B-base-v1.0"
68
+ model = AutoModelForCausalLM.from_pretrained(model_name)
69
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
70
+ from auto_round import AutoRound
71
+ bits, group_size, sym, device, amp = 4, 128, False, 'cpu', False
72
+ 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)
73
+ autoround.quantize()
74
+ output_dir = "./AutoRound/sapienzanlp_Minerva-1B-base-v1.0-autoawq-int4-gs128-asym"
75
+ autoround.save_quantized(output_dir, format='auto_awq', inplace=True)
76
+ ```
77
+
78
+ ## License
79
+
80
+ [Apache 2.0 License](https://choosealicense.com/licenses/apache-2.0/)
81
+
82
+ ## Disclaimer
83
+
84
+ This quantized model comes with no warranty. It has been developed only for research purposes.
85
+
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "sapienzanlp/Minerva-1B-base-v1.0",
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": 2048,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 7168,
14
+ "max_position_embeddings": 16384,
15
+ "model_type": "mistral",
16
+ "num_attention_heads": 16,
17
+ "num_hidden_layers": 16,
18
+ "num_key_value_heads": 4,
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": false,
43
+ "to_quant_block_names": null,
44
+ "version": "gemm",
45
+ "zero_point": true
46
+ },
47
+ "rms_norm_eps": 1e-05,
48
+ "rope_theta": 10000.0,
49
+ "sliding_window": 2048,
50
+ "tie_word_embeddings": false,
51
+ "torch_dtype": "float32",
52
+ "transformers_version": "4.47.1",
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.47.1"
6
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:475517208f0ceb1c7b276f482910a7d551bbc35606f891d4c68d30bc71a25035
3
+ size 990429400
quantization_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "sym": false,
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": true,
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:bb411d9f702041597b9c84f0c99ee6601f02631467e2a76722db3ca1a2a77bf5
3
+ size 795167
tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": true,
36
+ "model_max_length": 2048,
37
+ "pad_token": null,
38
+ "sp_model_kwargs": {},
39
+ "spaces_between_special_tokens": false,
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": true
43
+ }