allknowingroger
commited on
Commit
•
cc26f5b
1
Parent(s):
c1b536e
Upload folder using huggingface_hub
Browse files- README.md +63 -0
- added_tokens.json +4 -0
- config.json +26 -0
- mergekit_config.yml +17 -0
- model-00001-of-00015.safetensors +3 -0
- model-00002-of-00015.safetensors +3 -0
- model-00003-of-00015.safetensors +3 -0
- model-00004-of-00015.safetensors +3 -0
- model-00005-of-00015.safetensors +3 -0
- model-00006-of-00015.safetensors +3 -0
- model-00007-of-00015.safetensors +3 -0
- model-00008-of-00015.safetensors +3 -0
- model-00009-of-00015.safetensors +3 -0
- model-00010-of-00015.safetensors +3 -0
- model-00011-of-00015.safetensors +3 -0
- model-00012-of-00015.safetensors +3 -0
- model-00013-of-00015.safetensors +3 -0
- model-00014-of-00015.safetensors +3 -0
- model-00015-of-00015.safetensors +3 -0
- model.safetensors.index.json +1 -0
- special_tokens_map.json +23 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +62 -0
README.md
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
4 |
+
- VAGOsolutions/SauerkrautLM-7b-LaserChat
|
5 |
+
tags:
|
6 |
+
- merge
|
7 |
+
- mergekit
|
8 |
+
- lazymergekit
|
9 |
+
- BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
10 |
+
- VAGOsolutions/SauerkrautLM-7b-LaserChat
|
11 |
+
---
|
12 |
+
|
13 |
+
# Mistralmash2-7B-s
|
14 |
+
|
15 |
+
Mistralmash2-7B-s is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
16 |
+
* [BAAI/Infinity-Instruct-7M-Gen-mistral-7B](https://huggingface.co/BAAI/Infinity-Instruct-7M-Gen-mistral-7B)
|
17 |
+
* [VAGOsolutions/SauerkrautLM-7b-LaserChat](https://huggingface.co/VAGOsolutions/SauerkrautLM-7b-LaserChat)
|
18 |
+
|
19 |
+
## 🧩 Configuration
|
20 |
+
|
21 |
+
```yaml
|
22 |
+
slices:
|
23 |
+
- sources:
|
24 |
+
- model: BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
25 |
+
layer_range: [0, 32]
|
26 |
+
- model: VAGOsolutions/SauerkrautLM-7b-LaserChat
|
27 |
+
layer_range: [0, 32]
|
28 |
+
merge_method: slerp
|
29 |
+
base_model: BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
30 |
+
parameters:
|
31 |
+
t:
|
32 |
+
- filter: self_attn
|
33 |
+
value: [0, 0.5, 0.3, 0.7, 1]
|
34 |
+
- filter: mlp
|
35 |
+
value: [1, 0.5, 0.7, 0.3, 0]
|
36 |
+
- value: 0.5
|
37 |
+
dtype: bfloat16
|
38 |
+
```
|
39 |
+
|
40 |
+
## 💻 Usage
|
41 |
+
|
42 |
+
```python
|
43 |
+
!pip install -qU transformers accelerate
|
44 |
+
|
45 |
+
from transformers import AutoTokenizer
|
46 |
+
import transformers
|
47 |
+
import torch
|
48 |
+
|
49 |
+
model = "allknowingroger/Mistralmash2-7B-s"
|
50 |
+
messages = [{"role": "user", "content": "What is a large language model?"}]
|
51 |
+
|
52 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
53 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
54 |
+
pipeline = transformers.pipeline(
|
55 |
+
"text-generation",
|
56 |
+
model=model,
|
57 |
+
torch_dtype=torch.float16,
|
58 |
+
device_map="auto",
|
59 |
+
)
|
60 |
+
|
61 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
62 |
+
print(outputs[0]["generated_text"])
|
63 |
+
```
|
added_tokens.json
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|im_end|>": 32000,
|
3 |
+
"<|im_start|>": 32001
|
4 |
+
}
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "BAAI/Infinity-Instruct-7M-Gen-mistral-7B",
|
3 |
+
"architectures": [
|
4 |
+
"MistralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 32000,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 4096,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 14336,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"model_type": "mistral",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_hidden_layers": 32,
|
17 |
+
"num_key_value_heads": 8,
|
18 |
+
"rms_norm_eps": 1e-05,
|
19 |
+
"rope_theta": 10000.0,
|
20 |
+
"sliding_window": 4096,
|
21 |
+
"tie_word_embeddings": false,
|
22 |
+
"torch_dtype": "bfloat16",
|
23 |
+
"transformers_version": "4.42.4",
|
24 |
+
"use_cache": true,
|
25 |
+
"vocab_size": 32002
|
26 |
+
}
|
mergekit_config.yml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
slices:
|
3 |
+
- sources:
|
4 |
+
- model: BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
5 |
+
layer_range: [0, 32]
|
6 |
+
- model: VAGOsolutions/SauerkrautLM-7b-LaserChat
|
7 |
+
layer_range: [0, 32]
|
8 |
+
merge_method: slerp
|
9 |
+
base_model: BAAI/Infinity-Instruct-7M-Gen-mistral-7B
|
10 |
+
parameters:
|
11 |
+
t:
|
12 |
+
- filter: self_attn
|
13 |
+
value: [0, 0.5, 0.3, 0.7, 1]
|
14 |
+
- filter: mlp
|
15 |
+
value: [1, 0.5, 0.7, 0.3, 0]
|
16 |
+
- value: 0.5
|
17 |
+
dtype: bfloat16
|
model-00001-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:253106a9572a95a7d7dd3fad6e24d38a2a584a291f8c0bf4df5c2607503ca878
|
3 |
+
size 960554320
|
model-00002-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b6fdfc636e919b4b4cc546583ed1a83d96ecec94c76f32b7b89f6937bdb2ced
|
3 |
+
size 989890720
|
model-00003-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0e964fbf07b4a308268baa67ef492884114d46ec938b3c0ac3ee6d8435e9cb2
|
3 |
+
size 989890728
|
model-00004-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4568cffdb93a3f55ccaea4fd5a7afe88b42ff9b5364619b16dc32897710c2620
|
3 |
+
size 998287760
|
model-00005-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9648179c52ba5ebb44df99c2c9bc32cb13c0dc218d5c437a4fb4024d8e206e5c
|
3 |
+
size 947956216
|
model-00006-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7bf1d4c612b107c1c9ebefb4f70296fba78aa6439ac62ecdff6b791dbfd94222
|
3 |
+
size 989890728
|
model-00007-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ea70e4b7732a071ed86dd56cde45eb046410748aa8250bd54f9b8cbd72336112
|
3 |
+
size 989890720
|
model-00008-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8a2ab23eeef47afe237e924b728fb7260c512ac48159a88bd6af88789170b1f
|
3 |
+
size 998287760
|
model-00009-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3f4539afd41e0f41a7391f1789a9c552730b4e07aab300a5a4835814543dc28
|
3 |
+
size 947956216
|
model-00010-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:40122501c039cbf81c25a7d64ff1fbc80f36578df4cb8757095b0172a04b5426
|
3 |
+
size 989890728
|
model-00011-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04f7d4ad12f119a68db80434f99c14002828b526c38aa92f0dfa568e9f0d8c7d
|
3 |
+
size 989890728
|
model-00012-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3635b09e38eb6ad76a01a6d6364e7d635d072cc5bc6969b761143095d2e5b6dd
|
3 |
+
size 998287752
|
model-00013-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c2a59623b69d66bd860be478e40acb0d2f6762f812a7e5f5a2cc3bd480ec3110
|
3 |
+
size 947956200
|
model-00014-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c175c95d43090bdd3109708e2446598e90ce963dca8895149dde516b26aa8c85
|
3 |
+
size 989890712
|
model-00015-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f1cc8c55893d7f9340354e3240f6b40f3e1ab99e93a32e2dab9fc8f39291f21b
|
3 |
+
size 755009440
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4.4", "total_size": 14483496960}, "weight_map": {"lm_head.weight": "model-00001-of-00015.safetensors", "model.embed_tokens.weight": "model-00001-of-00015.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00015.safetensors", "model.layers.0.mlp.down_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.mlp.up_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00015.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00015.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00015.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00015.safetensors", "model.layers.1.mlp.down_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.mlp.gate_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.mlp.up_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00002-of-00015.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00002-of-00015.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.input_layernorm.weight": "model-00002-of-00015.safetensors", "model.layers.10.mlp.down_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.mlp.up_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00015.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00015.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00015.safetensors", "model.layers.11.input_layernorm.weight": "model-00002-of-00015.safetensors", "model.layers.11.mlp.down_proj.weight": "model-00002-of-00015.safetensors", "model.layers.11.mlp.gate_proj.weight": "model-00003-of-00015.safetensors", "model.layers.11.mlp.up_proj.weight": "model-00003-of-00015.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00003-of-00015.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00003-of-00015.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00003-of-00015.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00003-of-00015.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.input_layernorm.weight": "model-00003-of-00015.safetensors", "model.layers.12.mlp.down_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.mlp.gate_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.mlp.up_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00015.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00003-of-00015.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00003-of-00015.safetensors", "model.layers.13.input_layernorm.weight": "model-00003-of-00015.safetensors", "model.layers.13.mlp.down_proj.weight": "model-00003-of-00015.safetensors", "model.layers.13.mlp.gate_proj.weight": "model-00003-of-00015.safetensors", "model.layers.13.mlp.up_proj.weight": "model-00004-of-00015.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00004-of-00015.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00004-of-00015.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00004-of-00015.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00004-of-00015.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.input_layernorm.weight": "model-00004-of-00015.safetensors", "model.layers.14.mlp.down_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.mlp.gate_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.mlp.up_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00004-of-00015.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00004-of-00015.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00004-of-00015.safetensors", "model.layers.15.input_layernorm.weight": "model-00004-of-00015.safetensors", "model.layers.15.mlp.down_proj.weight": "model-00004-of-00015.safetensors", "model.layers.15.mlp.gate_proj.weight": "model-00004-of-00015.safetensors", "model.layers.15.mlp.up_proj.weight": "model-00004-of-00015.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00004-of-00015.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00004-of-00015.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00005-of-00015.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00005-of-00015.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.input_layernorm.weight": "model-00005-of-00015.safetensors", "model.layers.16.mlp.down_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.mlp.gate_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.mlp.up_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00005-of-00015.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00005-of-00015.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.input_layernorm.weight": "model-00005-of-00015.safetensors", "model.layers.17.mlp.down_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.mlp.gate_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.mlp.up_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00005-of-00015.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00005-of-00015.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00005-of-00015.safetensors", "model.layers.18.input_layernorm.weight": "model-00005-of-00015.safetensors", "model.layers.18.mlp.down_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.mlp.gate_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.mlp.up_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00006-of-00015.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00006-of-00015.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.input_layernorm.weight": "model-00006-of-00015.safetensors", "model.layers.19.mlp.down_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.mlp.gate_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.mlp.up_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00006-of-00015.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00006-of-00015.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00006-of-00015.safetensors", "model.layers.2.input_layernorm.weight": "model-00006-of-00015.safetensors", "model.layers.2.mlp.down_proj.weight": "model-00006-of-00015.safetensors", "model.layers.2.mlp.gate_proj.weight": "model-00007-of-00015.safetensors", "model.layers.2.mlp.up_proj.weight": "model-00007-of-00015.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00007-of-00015.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00007-of-00015.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00007-of-00015.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00007-of-00015.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.input_layernorm.weight": "model-00007-of-00015.safetensors", "model.layers.20.mlp.down_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.mlp.gate_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.mlp.up_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00007-of-00015.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00007-of-00015.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00007-of-00015.safetensors", "model.layers.21.input_layernorm.weight": "model-00007-of-00015.safetensors", "model.layers.21.mlp.down_proj.weight": "model-00007-of-00015.safetensors", "model.layers.21.mlp.gate_proj.weight": "model-00007-of-00015.safetensors", "model.layers.21.mlp.up_proj.weight": "model-00008-of-00015.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00008-of-00015.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00008-of-00015.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00008-of-00015.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00008-of-00015.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.input_layernorm.weight": "model-00008-of-00015.safetensors", "model.layers.22.mlp.down_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.mlp.gate_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.mlp.up_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00008-of-00015.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00008-of-00015.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00008-of-00015.safetensors", "model.layers.23.input_layernorm.weight": "model-00008-of-00015.safetensors", "model.layers.23.mlp.down_proj.weight": "model-00008-of-00015.safetensors", "model.layers.23.mlp.gate_proj.weight": "model-00008-of-00015.safetensors", "model.layers.23.mlp.up_proj.weight": "model-00008-of-00015.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00008-of-00015.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00008-of-00015.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00009-of-00015.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00009-of-00015.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.input_layernorm.weight": "model-00009-of-00015.safetensors", "model.layers.24.mlp.down_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.mlp.gate_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.mlp.up_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00009-of-00015.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00009-of-00015.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.input_layernorm.weight": "model-00009-of-00015.safetensors", "model.layers.25.mlp.down_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.mlp.gate_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.mlp.up_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00009-of-00015.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00009-of-00015.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00009-of-00015.safetensors", "model.layers.26.input_layernorm.weight": "model-00009-of-00015.safetensors", "model.layers.26.mlp.down_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.mlp.gate_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.mlp.up_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00010-of-00015.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00010-of-00015.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.input_layernorm.weight": "model-00010-of-00015.safetensors", "model.layers.27.mlp.down_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.mlp.gate_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.mlp.up_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00010-of-00015.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00010-of-00015.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00010-of-00015.safetensors", "model.layers.28.input_layernorm.weight": "model-00010-of-00015.safetensors", "model.layers.28.mlp.down_proj.weight": "model-00010-of-00015.safetensors", "model.layers.28.mlp.gate_proj.weight": "model-00011-of-00015.safetensors", "model.layers.28.mlp.up_proj.weight": "model-00011-of-00015.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00011-of-00015.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00011-of-00015.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00011-of-00015.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00011-of-00015.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.input_layernorm.weight": "model-00011-of-00015.safetensors", "model.layers.29.mlp.down_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.mlp.gate_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.mlp.up_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00011-of-00015.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00011-of-00015.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00011-of-00015.safetensors", "model.layers.3.input_layernorm.weight": "model-00011-of-00015.safetensors", "model.layers.3.mlp.down_proj.weight": "model-00011-of-00015.safetensors", "model.layers.3.mlp.gate_proj.weight": "model-00011-of-00015.safetensors", "model.layers.3.mlp.up_proj.weight": "model-00012-of-00015.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00012-of-00015.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00012-of-00015.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00012-of-00015.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00012-of-00015.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.input_layernorm.weight": "model-00012-of-00015.safetensors", "model.layers.30.mlp.down_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.mlp.gate_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.mlp.up_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00012-of-00015.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00012-of-00015.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00012-of-00015.safetensors", "model.layers.31.input_layernorm.weight": "model-00012-of-00015.safetensors", "model.layers.31.mlp.down_proj.weight": "model-00012-of-00015.safetensors", "model.layers.31.mlp.gate_proj.weight": "model-00012-of-00015.safetensors", "model.layers.31.mlp.up_proj.weight": "model-00012-of-00015.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00012-of-00015.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00012-of-00015.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00013-of-00015.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00013-of-00015.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.input_layernorm.weight": "model-00013-of-00015.safetensors", "model.layers.4.mlp.down_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.mlp.gate_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.mlp.up_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00013-of-00015.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00013-of-00015.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.input_layernorm.weight": "model-00013-of-00015.safetensors", "model.layers.5.mlp.down_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.mlp.gate_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.mlp.up_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00013-of-00015.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00013-of-00015.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00013-of-00015.safetensors", "model.layers.6.input_layernorm.weight": "model-00013-of-00015.safetensors", "model.layers.6.mlp.down_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.mlp.gate_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.mlp.up_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00014-of-00015.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00014-of-00015.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.input_layernorm.weight": "model-00014-of-00015.safetensors", "model.layers.7.mlp.down_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.mlp.gate_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.mlp.up_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00014-of-00015.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00014-of-00015.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00014-of-00015.safetensors", "model.layers.8.input_layernorm.weight": "model-00014-of-00015.safetensors", "model.layers.8.mlp.down_proj.weight": "model-00014-of-00015.safetensors", "model.layers.8.mlp.gate_proj.weight": "model-00015-of-00015.safetensors", "model.layers.8.mlp.up_proj.weight": "model-00015-of-00015.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00015-of-00015.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00015-of-00015.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00015-of-00015.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00015-of-00015.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.input_layernorm.weight": "model-00015-of-00015.safetensors", "model.layers.9.mlp.down_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.mlp.gate_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.mlp.up_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00015-of-00015.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00015-of-00015.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00015-of-00015.safetensors", "model.norm.weight": "model-00015-of-00015.safetensors"}}
|
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": "<|im_end|>",
|
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:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"32000": {
|
31 |
+
"content": "<|im_end|>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false,
|
36 |
+
"special": true
|
37 |
+
},
|
38 |
+
"32001": {
|
39 |
+
"content": "<|im_start|>",
|
40 |
+
"lstrip": false,
|
41 |
+
"normalized": false,
|
42 |
+
"rstrip": false,
|
43 |
+
"single_word": false,
|
44 |
+
"special": true
|
45 |
+
}
|
46 |
+
},
|
47 |
+
"additional_special_tokens": [],
|
48 |
+
"bos_token": "<s>",
|
49 |
+
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
50 |
+
"clean_up_tokenization_spaces": false,
|
51 |
+
"eos_token": "<|im_end|>",
|
52 |
+
"legacy": true,
|
53 |
+
"model_max_length": 1000000000000000019884624838656,
|
54 |
+
"pad_token": null,
|
55 |
+
"sp_model_kwargs": {},
|
56 |
+
"spaces_between_special_tokens": false,
|
57 |
+
"tokenizer_class": "LlamaTokenizer",
|
58 |
+
"trust_remote_code": false,
|
59 |
+
"unk_token": "<unk>",
|
60 |
+
"use_default_system_prompt": true,
|
61 |
+
"use_fast": true
|
62 |
+
}
|