Upload folder using huggingface_hub
Browse files- README.md +77 -0
- config.json +26 -0
- mergekit_config.yml +25 -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 +43 -0
README.md
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- merge
|
4 |
+
- mergekit
|
5 |
+
- lazymergekit
|
6 |
+
- mlabonne/NeuralBeagle14-7B
|
7 |
+
- timpal0l/Mistral-7B-v0.1-flashback-v2
|
8 |
+
- Nexusflow/Starling-LM-7B-beta
|
9 |
+
- neph1/bellman-7b-mistral-instruct-v0.2
|
10 |
+
base_model:
|
11 |
+
- mlabonne/NeuralBeagle14-7B
|
12 |
+
- timpal0l/Mistral-7B-v0.1-flashback-v2
|
13 |
+
- Nexusflow/Starling-LM-7B-beta
|
14 |
+
- neph1/bellman-7b-mistral-instruct-v0.2
|
15 |
+
---
|
16 |
+
|
17 |
+
# SwedishBellmanBeagle-dareties
|
18 |
+
|
19 |
+
SwedishBellmanBeagle-dareties is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
20 |
+
* [mlabonne/NeuralBeagle14-7B](https://huggingface.co/mlabonne/NeuralBeagle14-7B)
|
21 |
+
* [timpal0l/Mistral-7B-v0.1-flashback-v2](https://huggingface.co/timpal0l/Mistral-7B-v0.1-flashback-v2)
|
22 |
+
* [Nexusflow/Starling-LM-7B-beta](https://huggingface.co/Nexusflow/Starling-LM-7B-beta)
|
23 |
+
* [neph1/bellman-7b-mistral-instruct-v0.2](https://huggingface.co/neph1/bellman-7b-mistral-instruct-v0.2)
|
24 |
+
|
25 |
+
## 🧩 Configuration
|
26 |
+
|
27 |
+
```yaml
|
28 |
+
models:
|
29 |
+
- model: mistralai/Mistral-7B-Instruct-v0.2
|
30 |
+
# No parameters necessary for base model
|
31 |
+
- model: mlabonne/NeuralBeagle14-7B
|
32 |
+
parameters:
|
33 |
+
density: 0.53
|
34 |
+
weight: 0.3
|
35 |
+
- model: timpal0l/Mistral-7B-v0.1-flashback-v2
|
36 |
+
parameters:
|
37 |
+
density: 0.53
|
38 |
+
weight: 0.3
|
39 |
+
- model: Nexusflow/Starling-LM-7B-beta
|
40 |
+
parameters:
|
41 |
+
density: 0.53
|
42 |
+
weight: 0.2
|
43 |
+
- model: neph1/bellman-7b-mistral-instruct-v0.2
|
44 |
+
parameters:
|
45 |
+
density: 0.53
|
46 |
+
weight: 0.2
|
47 |
+
merge_method: dare_ties
|
48 |
+
base_model: mistralai/Mistral-7B-Instruct-v0.2
|
49 |
+
parameters:
|
50 |
+
int8_mask: true
|
51 |
+
dtype: bfloat16
|
52 |
+
```
|
53 |
+
|
54 |
+
## 💻 Usage
|
55 |
+
|
56 |
+
```python
|
57 |
+
!pip install -qU transformers accelerate
|
58 |
+
|
59 |
+
from transformers import AutoTokenizer
|
60 |
+
import transformers
|
61 |
+
import torch
|
62 |
+
|
63 |
+
model = "Knobi3/SwedishBellmanBeagle-dareties"
|
64 |
+
messages = [{"role": "user", "content": "What is a large language model?"}]
|
65 |
+
|
66 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
67 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
68 |
+
pipeline = transformers.pipeline(
|
69 |
+
"text-generation",
|
70 |
+
model=model,
|
71 |
+
torch_dtype=torch.float16,
|
72 |
+
device_map="auto",
|
73 |
+
)
|
74 |
+
|
75 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
76 |
+
print(outputs[0]["generated_text"])
|
77 |
+
```
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
|
3 |
+
"architectures": [
|
4 |
+
"MistralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 2,
|
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": 1000000.0,
|
20 |
+
"sliding_window": null,
|
21 |
+
"tie_word_embeddings": false,
|
22 |
+
"torch_dtype": "bfloat16",
|
23 |
+
"transformers_version": "4.40.2",
|
24 |
+
"use_cache": true,
|
25 |
+
"vocab_size": 32000
|
26 |
+
}
|
mergekit_config.yml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
models:
|
3 |
+
- model: mistralai/Mistral-7B-Instruct-v0.2
|
4 |
+
# No parameters necessary for base model
|
5 |
+
- model: mlabonne/NeuralBeagle14-7B
|
6 |
+
parameters:
|
7 |
+
density: 0.53
|
8 |
+
weight: 0.3
|
9 |
+
- model: timpal0l/Mistral-7B-v0.1-flashback-v2
|
10 |
+
parameters:
|
11 |
+
density: 0.53
|
12 |
+
weight: 0.3
|
13 |
+
- model: Nexusflow/Starling-LM-7B-beta
|
14 |
+
parameters:
|
15 |
+
density: 0.53
|
16 |
+
weight: 0.2
|
17 |
+
- model: neph1/bellman-7b-mistral-instruct-v0.2
|
18 |
+
parameters:
|
19 |
+
density: 0.53
|
20 |
+
weight: 0.2
|
21 |
+
merge_method: dare_ties
|
22 |
+
base_model: mistralai/Mistral-7B-Instruct-v0.2
|
23 |
+
parameters:
|
24 |
+
int8_mask: true
|
25 |
+
dtype: bfloat16
|
model-00001-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f62f069a1eb398f5225c879ca4ea591d788a6c43a72a2566880d3d9c01aa823d
|
3 |
+
size 960521552
|
model-00002-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f743135d1ce65ef543ddfcfb959649ebe05363dd55457fd11e0eca0eaeef5317
|
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:a9ab90536b7e6c16a39f4b90ab373166bd81184b65c22e8862e45f62dfd92cb3
|
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:9fa2a054ff596ac20908a02387a4030bf17aaa609c23b75d595cd3ecb58d1ff3
|
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:070c58a47a9ba3d24a79df4d606754b5b76fcabb843c4dc1a3d38eb22a94e47b
|
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:f844a0c985493bcea827b6f78001c44b9d37be98bb15d8e3808a3d2473aea070
|
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:f1af43d552ddbf29efcdfeb52d639d493116bc2858263f8557ad09b913058422
|
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:82c9372547070826e035188410b8717efd5644dfb8cb75ce55b6df47bec235e3
|
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:4d89af568e8a628cb8e427a0564b8b5984c10c5d034b14a087f4b452f6e7d407
|
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:1a48f53116364c0a36b5f5264da654934c782a58664a64553d3d0c4e013b92ec
|
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:bee9cef392ab0861d30a40cdd40a5a381cbc57de99c77c2800d76aa43c10cb12
|
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:d396135695330f8f915c804b4b942b816068ceee8ce1a21d1dbe0ee149982b65
|
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:2cde3caac0e40bc3b086c00e0c17f88e81065e9c524c5b11aaba9270568dea44
|
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:f0047e5039a52d97f2c16927e7723922dee7fd211721dc478c6544c61ac775ea
|
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:f3425a24fd092110e0a20e4952cab8e5bc1b5f67b2b6aa81f4c40fcd72ded50a
|
3 |
+
size 755009440
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4.2", "total_size": 14483464192}, "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": "</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:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"additional_special_tokens": [],
|
31 |
+
"bos_token": "<s>",
|
32 |
+
"chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
|
33 |
+
"clean_up_tokenization_spaces": false,
|
34 |
+
"eos_token": "</s>",
|
35 |
+
"legacy": true,
|
36 |
+
"model_max_length": 1000000000000000019884624838656,
|
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": false
|
43 |
+
}
|