IsakNordgren
commited on
Commit
•
e7f3ff2
1
Parent(s):
8acf0d6
Upload folder using huggingface_hub
Browse files- README.md +56 -0
- config.json +28 -0
- mergekit_config.yml +13 -0
- model-00001-of-00015.safetensors +3 -0
- model-00001-of-00017.safetensors +3 -0
- model-00002-of-00015.safetensors +3 -0
- model-00002-of-00017.safetensors +3 -0
- model-00003-of-00015.safetensors +3 -0
- model-00003-of-00017.safetensors +3 -0
- model-00004-of-00015.safetensors +3 -0
- model-00004-of-00017.safetensors +3 -0
- model-00005-of-00015.safetensors +3 -0
- model-00005-of-00017.safetensors +3 -0
- model-00006-of-00015.safetensors +3 -0
- model-00006-of-00017.safetensors +3 -0
- model-00007-of-00015.safetensors +3 -0
- model-00007-of-00017.safetensors +3 -0
- model-00008-of-00015.safetensors +3 -0
- model-00008-of-00017.safetensors +3 -0
- model-00009-of-00015.safetensors +3 -0
- model-00009-of-00017.safetensors +3 -0
- model-00010-of-00015.safetensors +3 -0
- model-00010-of-00017.safetensors +3 -0
- model-00011-of-00015.safetensors +3 -0
- model-00011-of-00017.safetensors +3 -0
- model-00012-of-00015.safetensors +3 -0
- model-00012-of-00017.safetensors +3 -0
- model-00013-of-00015.safetensors +3 -0
- model-00013-of-00017.safetensors +3 -0
- model-00014-of-00015.safetensors +3 -0
- model-00014-of-00017.safetensors +3 -0
- model-00015-of-00015.safetensors +3 -0
- model-00015-of-00017.safetensors +3 -0
- model-00016-of-00017.safetensors +3 -0
- model-00017-of-00017.safetensors +3 -0
- model.safetensors.index.json +1 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +45 -0
README.md
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- teknium/OpenHermes-2.5-Mistral-7B
|
4 |
+
tags:
|
5 |
+
- merge
|
6 |
+
- mergekit
|
7 |
+
- lazymergekit
|
8 |
+
- teknium/OpenHermes-2.5-Mistral-7B
|
9 |
+
---
|
10 |
+
|
11 |
+
# mistral-Summarizer-7b-instruct-v0.2-x-OpenHermes-2.5-Mistral-7B
|
12 |
+
|
13 |
+
mistral-Summarizer-7b-instruct-v0.2-x-OpenHermes-2.5-Mistral-7B is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
14 |
+
* [teknium/OpenHermes-2.5-Mistral-7B](https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B)
|
15 |
+
|
16 |
+
## 🧩 Configuration
|
17 |
+
|
18 |
+
```yaml
|
19 |
+
models:
|
20 |
+
- model: Labagaite/mistral-Summarizer-7b-instruct-v0.2
|
21 |
+
# No parameters necessary for base model
|
22 |
+
- model: teknium/OpenHermes-2.5-Mistral-7B
|
23 |
+
parameters:
|
24 |
+
density: 0.53
|
25 |
+
weight: 0.6
|
26 |
+
merge_method: dare_ties
|
27 |
+
base_model: Labagaite/mistral-Summarizer-7b-instruct-v0.2
|
28 |
+
parameters:
|
29 |
+
int8_mask: true
|
30 |
+
dtype: bfloat16
|
31 |
+
```
|
32 |
+
|
33 |
+
## 💻 Usage
|
34 |
+
|
35 |
+
```python
|
36 |
+
!pip install -qU transformers accelerate
|
37 |
+
|
38 |
+
from transformers import AutoTokenizer
|
39 |
+
import transformers
|
40 |
+
import torch
|
41 |
+
|
42 |
+
model = "IsakNordgren/mistral-Summarizer-7b-instruct-v0.2-x-OpenHermes-2.5-Mistral-7B"
|
43 |
+
messages = [{"role": "user", "content": "What is a large language model?"}]
|
44 |
+
|
45 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
46 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
47 |
+
pipeline = transformers.pipeline(
|
48 |
+
"text-generation",
|
49 |
+
model=model,
|
50 |
+
torch_dtype=torch.float16,
|
51 |
+
device_map="auto",
|
52 |
+
)
|
53 |
+
|
54 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
55 |
+
print(outputs[0]["generated_text"])
|
56 |
+
```
|
config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Labagaite/mistral-Summarizer-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 |
+
"pad_token_id": 0,
|
19 |
+
"rms_norm_eps": 1e-05,
|
20 |
+
"rope_theta": 1000000.0,
|
21 |
+
"sliding_window": null,
|
22 |
+
"tie_word_embeddings": false,
|
23 |
+
"torch_dtype": "bfloat16",
|
24 |
+
"transformers_version": "4.42.3",
|
25 |
+
"unsloth_version": "2024.4",
|
26 |
+
"use_cache": true,
|
27 |
+
"vocab_size": 32000
|
28 |
+
}
|
mergekit_config.yml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
models:
|
3 |
+
- model: Labagaite/mistral-Summarizer-7b-instruct-v0.2
|
4 |
+
# No parameters necessary for base model
|
5 |
+
- model: teknium/OpenHermes-2.5-Mistral-7B
|
6 |
+
parameters:
|
7 |
+
density: 0.53
|
8 |
+
weight: 0.6
|
9 |
+
merge_method: dare_ties
|
10 |
+
base_model: Labagaite/mistral-Summarizer-7b-instruct-v0.2
|
11 |
+
parameters:
|
12 |
+
int8_mask: true
|
13 |
+
dtype: bfloat16
|
model-00001-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25a6b0f821748b1f17ec7ebd41cbcf0ed31fce5e261e855bb81a4729852815b0
|
3 |
+
size 960521552
|
model-00001-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d93e8990fe8ddb2d9d8fa1f1b9472636b37b422c26b0f0c53c37e7b9a6bb22f7
|
3 |
+
size 1050673280
|
model-00002-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26bfcc12fdfa3ba9488dd0433a346521f415357d3c8f8fa9608f79a272ffa9ca
|
3 |
+
size 989890720
|
model-00002-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:42da18c96582674b152ec89a392d613fcb849d72c64ba8544333db8ebb588a24
|
3 |
+
size 1050673296
|
model-00003-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac4768162b0dbb22eba2111e8a1d418a272c632f3b67ce47b7a15987d6f539ed
|
3 |
+
size 989890728
|
model-00003-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c578abcf36250acd4339e4d00445a44bc97e307e3339555b4bbe1cb8ff72c02a
|
3 |
+
size 989899000
|
model-00004-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69687f254d9f84b60103e57d12bec79d55920a0e1150fe9d6d9fd7a080c5f533
|
3 |
+
size 998287760
|
model-00004-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee64761529da5a0463150e3838b932960e0cc34a466835efb6a3b285cda12ee4
|
3 |
+
size 989890728
|
model-00005-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d0f6c2c1f5b60eb1a8572c97c065eb9bf3060ca1783518f3d5493bb75fb2853
|
3 |
+
size 947956216
|
model-00005-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b106b85195629040eed2383617b707f33390d4667e3f8bcd2fff5995602b5695
|
3 |
+
size 998287760
|
model-00006-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bd5ca249fc84083e9f0db3bf8bc4504c5e48db3b1d1b3cec2a5aed31148f153
|
3 |
+
size 989890728
|
model-00006-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:39d628eed8250d73e69672a4f22e6e00a39d9ad178b7d9dfe2eeaa975e6f3a18
|
3 |
+
size 947956216
|
model-00007-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7055c17c755347502843fe63771f18c0522527620b23cc345e5d811a5ac57aa8
|
3 |
+
size 989890720
|
model-00007-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bbd32711c1a87f4a63c98ee431a6aa9f4b271436510665229cb6eafb6787f9b7
|
3 |
+
size 989890728
|
model-00008-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8a9863010a36ded8ad0af623ebe41eaabfc1331d52f9afc0efd775d877a4744
|
3 |
+
size 998287760
|
model-00008-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85ae9bc0807a4c429d024c81ff32f11a8b85279477368fd0c673c5f753d3c143
|
3 |
+
size 989890720
|
model-00009-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2dccee5eaadacd56b8e4d761675160c2f5b0dd3fcf56bf122ec0b45cdd5366b
|
3 |
+
size 947956216
|
model-00009-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffe765c4d976f682fcea2847dcc40da4d2ea309a5c0344607bbf9e5b4c9a20c8
|
3 |
+
size 998287760
|
model-00010-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:10d5830b741f25cfa571fd7826e9ad8271e10118df77eb717dbd8ef99529f5c3
|
3 |
+
size 989890728
|
model-00010-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c471f0876ed96345639ab4964a9f875459e2b8bc1c52bd76abf212c122bc8a99
|
3 |
+
size 947956216
|
model-00011-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:356118cc48a28a8e06693ab27284692511fd8ef3c7c2d4f28dda72bddf575f7a
|
3 |
+
size 989890728
|
model-00011-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f07ece08f5fae7b7c7f62e9fb67bcf70f37d49861a426bd27e1868cf0bdc141c
|
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:49c6c32c7aec3f057cb2b294dae200b9e7a7d90b73c9b5150410cf0c8f3bf1cc
|
3 |
+
size 998287752
|
model-00012-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b99229c1190068f26c6823bd930f0bfc84185c1400446a5b8ee411d16706bf4d
|
3 |
+
size 989890728
|
model-00013-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b61491f6cc590dc823a2ec33fa854bd53ef891c3b0829d0a44a506afb023f2d
|
3 |
+
size 947956200
|
model-00013-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4dae539208657798b0d52e3b95a4873159367e118cfa7cc858e95bf27079c259
|
3 |
+
size 998287752
|
model-00014-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80e2799f49eb81b5a54f33a34d052de8112dd49f0685de9ae2d256e4f094ee3a
|
3 |
+
size 989890712
|
model-00014-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd480725a7fb186f39add5dfab9c89349e011282ca0f752cb6873ac876060620
|
3 |
+
size 947956208
|
model-00015-of-00015.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:da169cfa03cca2ba24d42c5802f7b19cc7fc6772fada0e73da7fd8021c40d02d
|
3 |
+
size 755009440
|
model-00015-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a258942c74b1a53c44edb554542d8fba8bc41887963300106585b538b30777e6
|
3 |
+
size 989890712
|
model-00016-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b841a34f49c8ade0f34adc62351fc87343e291bf55b6a480fd064d02adc373d
|
3 |
+
size 989890712
|
model-00017-of-00017.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e95cc10ba5c9470023ff9003ec31671d50768b5deac8efbdbcbc37a04472dbe0
|
3 |
+
size 201343792
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4.4", "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,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"pad_token": {
|
17 |
+
"content": "<unk>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"unk_token": {
|
24 |
+
"content": "<unk>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
}
|
30 |
+
}
|
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,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"additional_special_tokens": [],
|
32 |
+
"bos_token": "<s>",
|
33 |
+
"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 %}",
|
34 |
+
"clean_up_tokenization_spaces": false,
|
35 |
+
"eos_token": "</s>",
|
36 |
+
"legacy": true,
|
37 |
+
"model_max_length": 32768,
|
38 |
+
"pad_token": "<unk>",
|
39 |
+
"padding_side": "left",
|
40 |
+
"sp_model_kwargs": {},
|
41 |
+
"spaces_between_special_tokens": false,
|
42 |
+
"tokenizer_class": "LlamaTokenizer",
|
43 |
+
"unk_token": "<unk>",
|
44 |
+
"use_default_system_prompt": false
|
45 |
+
}
|