IsakNordgren
commited on
Commit
•
1111d8b
1
Parent(s):
deb4e6a
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 |
+
- Nexusflow/Starling-LM-7B-beta
|
4 |
+
tags:
|
5 |
+
- merge
|
6 |
+
- mergekit
|
7 |
+
- lazymergekit
|
8 |
+
- Nexusflow/Starling-LM-7B-beta
|
9 |
+
---
|
10 |
+
|
11 |
+
# mistral-Summarizer-7b-instruct-v0.2-x-Starling-LM-7B-beta
|
12 |
+
|
13 |
+
mistral-Summarizer-7b-instruct-v0.2-x-Starling-LM-7B-beta is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
14 |
+
* [Nexusflow/Starling-LM-7B-beta](https://huggingface.co/Nexusflow/Starling-LM-7B-beta)
|
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: Nexusflow/Starling-LM-7B-beta
|
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-Starling-LM-7B-beta"
|
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: Nexusflow/Starling-LM-7B-beta
|
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:4eb6a2222bf8cfca23988788aafa6303467242b77230da26ad186463a88c1027
|
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:e5a65fb91a65187624656cee19e67e5f505a6e7e9cc62357e983b4436b509e3d
|
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:37ae4c32254c1be4d27700aa375046d4fa4ff26943af5e061973cc6e1a9b2e9e
|
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:518c592a9b7b34bf81340939b49b2cc0e60fa17f8f22631ab1402c3de62c1b0a
|
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:35209d5713134392a553e306d2250059a380a6723357ca39c73fed2c84b9d6cd
|
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:88414f08e27d7aa4e1a7c00d6bf8629b4c71cee11dca5faa627eeb0437b33e24
|
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:d903f3479b62dc3e1934cb6c80e1ce4d8e172fb7098060d47a89d0c8e51a7606
|
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:1096b3b44f3f4bdb5bfcf391dfcefb5c1b8675b3c642a2082cfaaf38b16ed723
|
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:d9b4221df6372a8f43c567b09ef2c600690a7028825cbfa744bd19066aad4506
|
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:1a090536e6c0f6e7cfef28dce89a647f1a4bf9669d05901737dce263175c8fe6
|
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:f7a0e50a8c99f48c9021d364211e8b80b3a6c056ebb2f1c521aa1e178a478d3f
|
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:e228acd11f444465c643c48ec947d492a50dc84e95253fcec564500815a52ffd
|
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:78a712c0b98ac3a076e99809e7063955068a8e71ed30412c62a4829422581af5
|
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:851c47836ac8f8dda8d7883ec54fa52f247675826dbdeb69d0b25cdd4fa2ef39
|
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:5e304015a39fb88b3b35e406a2c6a1f1133ee36a218f6ddfbed2d9fe14043370
|
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 |
+
}
|