AWQ model commit
Browse files- added_tokens.json +7 -0
- config.json +42 -0
- generation_config.json +7 -0
- h2oai_pipeline.py +42 -0
- model.safetensors +3 -0
- quant_config.json +6 -0
- special_tokens_map.json +15 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +68 -0
added_tokens.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</s>": 2,
|
3 |
+
"<s>": 1,
|
4 |
+
"<unk>": 0,
|
5 |
+
"<|im_end|>": 32000,
|
6 |
+
"<|im_start|>": 32001
|
7 |
+
}
|
config.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/workspace/process/paixai_astrid-mistral-7b/source",
|
3 |
+
"architectures": [
|
4 |
+
"MistralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"custom_pipelines": {
|
9 |
+
"text-generation": {
|
10 |
+
"impl": "h2oai_pipeline.H2OTextGenerationPipeline",
|
11 |
+
"pt": "AutoModelForCausalLM"
|
12 |
+
}
|
13 |
+
},
|
14 |
+
"eos_token_id": 32000,
|
15 |
+
"hidden_act": "silu",
|
16 |
+
"hidden_dropout_prob": 0.0,
|
17 |
+
"hidden_size": 4096,
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 14336,
|
20 |
+
"max_position_embeddings": 32768,
|
21 |
+
"model_type": "mistral",
|
22 |
+
"num_attention_heads": 32,
|
23 |
+
"num_hidden_layers": 32,
|
24 |
+
"num_key_value_heads": 8,
|
25 |
+
"pad_token_id": 0,
|
26 |
+
"pretraining_tp": 1,
|
27 |
+
"quantization_config": {
|
28 |
+
"bits": 4,
|
29 |
+
"group_size": 128,
|
30 |
+
"quant_method": "awq",
|
31 |
+
"version": "gemm",
|
32 |
+
"zero_point": true
|
33 |
+
},
|
34 |
+
"rms_norm_eps": 1e-05,
|
35 |
+
"rope_theta": 10000.0,
|
36 |
+
"sliding_window": 4096,
|
37 |
+
"tie_word_embeddings": false,
|
38 |
+
"torch_dtype": "float16",
|
39 |
+
"transformers_version": "4.35.2",
|
40 |
+
"use_cache": true,
|
41 |
+
"vocab_size": 32002
|
42 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"eos_token_id": 32000,
|
5 |
+
"pad_token_id": 0,
|
6 |
+
"transformers_version": "4.34.0"
|
7 |
+
}
|
h2oai_pipeline.py
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import TextGenerationPipeline
|
2 |
+
from transformers.pipelines.text_generation import ReturnType
|
3 |
+
|
4 |
+
STYLE = "<|prompt|>{instruction}<|im_end|><|answer|>"
|
5 |
+
|
6 |
+
|
7 |
+
class H2OTextGenerationPipeline(TextGenerationPipeline):
|
8 |
+
def __init__(self, *args, **kwargs):
|
9 |
+
super().__init__(*args, **kwargs)
|
10 |
+
self.prompt = STYLE
|
11 |
+
|
12 |
+
def preprocess(
|
13 |
+
self, prompt_text, prefix="", handle_long_generation=None, **generate_kwargs
|
14 |
+
):
|
15 |
+
prompt_text = self.prompt.format(instruction=prompt_text)
|
16 |
+
return super().preprocess(
|
17 |
+
prompt_text,
|
18 |
+
prefix=prefix,
|
19 |
+
handle_long_generation=handle_long_generation,
|
20 |
+
**generate_kwargs,
|
21 |
+
)
|
22 |
+
|
23 |
+
def postprocess(
|
24 |
+
self,
|
25 |
+
model_outputs,
|
26 |
+
return_type=ReturnType.FULL_TEXT,
|
27 |
+
clean_up_tokenization_spaces=True,
|
28 |
+
):
|
29 |
+
records = super().postprocess(
|
30 |
+
model_outputs,
|
31 |
+
return_type=return_type,
|
32 |
+
clean_up_tokenization_spaces=clean_up_tokenization_spaces,
|
33 |
+
)
|
34 |
+
for rec in records:
|
35 |
+
rec["generated_text"] = (
|
36 |
+
rec["generated_text"]
|
37 |
+
.split("<|answer|>")[1]
|
38 |
+
.strip()
|
39 |
+
.split("<|prompt|>")[0]
|
40 |
+
.strip()
|
41 |
+
)
|
42 |
+
return records
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:88775ebab9e344547fafb4dc8745a20a391bec1fa750f28010be00ce798f3e62
|
3 |
+
size 4150913000
|
quant_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"zero_point": true,
|
3 |
+
"q_group_size": 128,
|
4 |
+
"w_bit": 4,
|
5 |
+
"version": "GEMM"
|
6 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<unk>",
|
4 |
+
"<s>",
|
5 |
+
"</s>",
|
6 |
+
"<|im_end|>",
|
7 |
+
"<|im_start|>"
|
8 |
+
],
|
9 |
+
"bos_token": "<s>",
|
10 |
+
"cls_token": "<|im_end|>",
|
11 |
+
"eos_token": "<|im_end|>",
|
12 |
+
"pad_token": "<unk>",
|
13 |
+
"sep_token": "<|im_end|>",
|
14 |
+
"unk_token": "<unk>"
|
15 |
+
}
|
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:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": false,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<unk>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": true,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": true,
|
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 |
+
"32000": {
|
31 |
+
"content": "<|im_end|>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": true,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false,
|
36 |
+
"special": true
|
37 |
+
},
|
38 |
+
"32001": {
|
39 |
+
"content": "<|im_start|>",
|
40 |
+
"lstrip": true,
|
41 |
+
"normalized": false,
|
42 |
+
"rstrip": true,
|
43 |
+
"single_word": false,
|
44 |
+
"special": true
|
45 |
+
}
|
46 |
+
},
|
47 |
+
"additional_special_tokens": [
|
48 |
+
"<unk>",
|
49 |
+
"<s>",
|
50 |
+
"</s>",
|
51 |
+
"<|im_end|>",
|
52 |
+
"<|im_start|>"
|
53 |
+
],
|
54 |
+
"bos_token": "<s>",
|
55 |
+
"chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
56 |
+
"clean_up_tokenization_spaces": false,
|
57 |
+
"eos_token": "<|im_end|>",
|
58 |
+
"legacy": true,
|
59 |
+
"model_max_length": 1000000000000000019884624838656,
|
60 |
+
"pad_token": "<unk>",
|
61 |
+
"sp_model_kwargs": {},
|
62 |
+
"spaces_between_special_tokens": false,
|
63 |
+
"tokenizer_class": "LlamaTokenizer",
|
64 |
+
"trust_remote_code": false,
|
65 |
+
"unk_token": "<unk>",
|
66 |
+
"use_default_system_prompt": true,
|
67 |
+
"use_fast": true
|
68 |
+
}
|