Upload folder using huggingface_hub
Browse files- README.md +57 -0
- config.json +36 -0
- mergekit_config.yml +11 -0
- model-00001-of-00028.safetensors +3 -0
- model-00002-of-00028.safetensors +3 -0
- model-00003-of-00028.safetensors +3 -0
- model-00004-of-00028.safetensors +3 -0
- model-00005-of-00028.safetensors +3 -0
- model-00006-of-00028.safetensors +3 -0
- model-00007-of-00028.safetensors +3 -0
- model-00008-of-00028.safetensors +3 -0
- model-00009-of-00028.safetensors +3 -0
- model-00010-of-00028.safetensors +3 -0
- model-00011-of-00028.safetensors +3 -0
- model-00012-of-00028.safetensors +3 -0
- model-00013-of-00028.safetensors +3 -0
- model-00014-of-00028.safetensors +3 -0
- model-00015-of-00028.safetensors +3 -0
- model-00016-of-00028.safetensors +3 -0
- model-00017-of-00028.safetensors +3 -0
- model-00018-of-00028.safetensors +3 -0
- model-00019-of-00028.safetensors +3 -0
- model-00020-of-00028.safetensors +3 -0
- model-00021-of-00028.safetensors +3 -0
- model-00022-of-00028.safetensors +3 -0
- model-00023-of-00028.safetensors +3 -0
- model-00024-of-00028.safetensors +3 -0
- model-00025-of-00028.safetensors +3 -0
- model-00026-of-00028.safetensors +3 -0
- model-00027-of-00028.safetensors +3 -0
- model-00028-of-00028.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 +42 -0
README.md
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- merge
|
4 |
+
- mergekit
|
5 |
+
- lazymergekit
|
6 |
+
- Chat-Error/Mythalion-Kimiko-v2
|
7 |
+
- Ppoyaa/tes3
|
8 |
+
base_model:
|
9 |
+
- Chat-Error/Mythalion-Kimiko-v2
|
10 |
+
- Ppoyaa/tes3
|
11 |
+
---
|
12 |
+
|
13 |
+
# Luminaura-RP-13B
|
14 |
+
|
15 |
+
Luminaura-RP-13B is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
16 |
+
* [Chat-Error/Mythalion-Kimiko-v2](https://huggingface.co/Chat-Error/Mythalion-Kimiko-v2)
|
17 |
+
* [Ppoyaa/tes3](https://huggingface.co/Ppoyaa/tes3)
|
18 |
+
|
19 |
+
## 🧩 Configuration
|
20 |
+
|
21 |
+
```yaml
|
22 |
+
models:
|
23 |
+
- model: Chat-Error/Mythalion-Kimiko-v2
|
24 |
+
parameters:
|
25 |
+
weight: 0.5
|
26 |
+
- model: Ppoyaa/tes3
|
27 |
+
parameters:
|
28 |
+
weight: 0.5
|
29 |
+
base_model: Ppoyaa/tes3
|
30 |
+
merge_method: task_arithmetic
|
31 |
+
dtype: float16
|
32 |
+
```
|
33 |
+
|
34 |
+
## 💻 Usage
|
35 |
+
|
36 |
+
```python
|
37 |
+
!pip install -qU transformers accelerate
|
38 |
+
|
39 |
+
from transformers import AutoTokenizer
|
40 |
+
import transformers
|
41 |
+
import torch
|
42 |
+
|
43 |
+
model = "Ppoyaa/Luminaura-RP-13B"
|
44 |
+
messages = [{"role": "user", "content": "What is a large language model?"}]
|
45 |
+
|
46 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
47 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
48 |
+
pipeline = transformers.pipeline(
|
49 |
+
"text-generation",
|
50 |
+
model=model,
|
51 |
+
torch_dtype=torch.float16,
|
52 |
+
device_map="auto",
|
53 |
+
)
|
54 |
+
|
55 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
56 |
+
print(outputs[0]["generated_text"])
|
57 |
+
```
|
config.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Ppoyaa/tes3",
|
3 |
+
"architectures": [
|
4 |
+
"LlamaForCausalLM"
|
5 |
+
],
|
6 |
+
"auto_map": {
|
7 |
+
"AutoConfig": "NousResearch/Yarn-Llama-2-13b-128k--configuration_llama.LlamaConfig",
|
8 |
+
"AutoModelForCausalLM": "NousResearch/Yarn-Llama-2-13b-128k--modeling_llama_together_yarn.LlamaForCausalLM"
|
9 |
+
},
|
10 |
+
"bos_token_id": 1,
|
11 |
+
"eos_token_id": 2,
|
12 |
+
"hidden_act": "silu",
|
13 |
+
"hidden_size": 5120,
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 13824,
|
16 |
+
"max_position_embeddings": 131072,
|
17 |
+
"model_type": "llama",
|
18 |
+
"num_attention_heads": 40,
|
19 |
+
"num_hidden_layers": 40,
|
20 |
+
"num_key_value_heads": 40,
|
21 |
+
"pad_token_id": 0,
|
22 |
+
"pretraining_tp": 1,
|
23 |
+
"rms_norm_eps": 1e-05,
|
24 |
+
"rope_scaling": {
|
25 |
+
"factor": 32.0,
|
26 |
+
"finetuned": true,
|
27 |
+
"original_max_position_embeddings": 4096,
|
28 |
+
"type": "yarn"
|
29 |
+
},
|
30 |
+
"tie_word_embeddings": false,
|
31 |
+
"torch_dtype": "float16",
|
32 |
+
"transformers_version": "4.40.2",
|
33 |
+
"use_cache": true,
|
34 |
+
"use_flash_attention": false,
|
35 |
+
"vocab_size": 32000
|
36 |
+
}
|
mergekit_config.yml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
models:
|
3 |
+
- model: Chat-Error/Mythalion-Kimiko-v2
|
4 |
+
parameters:
|
5 |
+
weight: 0.5
|
6 |
+
- model: Ppoyaa/tes3
|
7 |
+
parameters:
|
8 |
+
weight: 0.5
|
9 |
+
base_model: Ppoyaa/tes3
|
10 |
+
merge_method: task_arithmetic
|
11 |
+
dtype: float16
|
model-00001-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9aa1cca8317724f3657fdd39d8d03f50c32cc24ecc93a9c4427bdbc63e7ec49
|
3 |
+
size 938486320
|
model-00002-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d47b2a3b25a31be0af2cc48e5f4412234c7676913faf746ba29b64695654845e
|
3 |
+
size 985704240
|
model-00003-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d1d76144c87da01261b8db5469b11ffe995f3c67a5e8e1826b3fb79b42510528
|
3 |
+
size 917525768
|
model-00004-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:802d457983ed6d0cc284e63151fd68982656ddfc7c07f67e0832c08fcde4f507
|
3 |
+
size 985704256
|
model-00005-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff3b3f034ec9c98b7c7c934b2b5d8b4d794b9649bc981288af8afc9e90c6b97f
|
3 |
+
size 917525768
|
model-00006-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e32bd2c1c95d659f5b71ea3875d007694c2b7984fa14c21e6c822673e276cd6b
|
3 |
+
size 985704256
|
model-00007-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7becc4179508bbc736775324b8afd28c6fd9fb007ba57f6b315f8ec2b2e0e612
|
3 |
+
size 917525768
|
model-00008-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2e48a1444e7f62a9fc44c066ae49e399fb7fe29252280c40e767ddd89c93d0a
|
3 |
+
size 985704256
|
model-00009-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5911744cd02aff572cb84579e8ceab932dc418e03fe0d603e0c3269445b9131b
|
3 |
+
size 917525760
|
model-00010-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aed38b7bc376f3144673265b6bf3f1482176e950a4dbeee4c256d389e5bcf934
|
3 |
+
size 985704248
|
model-00011-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ab3d74262f4e10820e82e922d9f0379eed004c29330c48b55204c2e2f1b024f
|
3 |
+
size 917525768
|
model-00012-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3179645b9a03ac84660622fda71e48f7cf75b26fdfd91063adb40af416a55d7d
|
3 |
+
size 985704256
|
model-00013-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:15facd74bdfe453cf5ab138cb758a675499a038b9c8d2d1f8ea1666998a52e0d
|
3 |
+
size 917525768
|
model-00014-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1519b6d4bb62f104ce9d722393d300c79f1f6043fdeef143b60248d73277fa58
|
3 |
+
size 985704256
|
model-00015-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e5cc7c6ceb106c5e7ff344f4234bd28e9956cc58c24591d5930a9cae1e08912
|
3 |
+
size 917525768
|
model-00016-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1999bfe721b6d87fe4f92c702e2081c01dfbe97b69521aa8657c256565c2c25
|
3 |
+
size 985704256
|
model-00017-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc51bd5368b52fb6656bc0859e4f7584d96d8414181c53e6d3129929567b8a11
|
3 |
+
size 917525760
|
model-00018-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b144de7df9b9d13e9f0c691cd6065f7be9224b92e577bdc77aaa72285f7e79e
|
3 |
+
size 985704256
|
model-00019-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90f99c2d0b0010b7f203daf80746c6589fec303f5c56c3b6d724a96f2d921851
|
3 |
+
size 917525768
|
model-00020-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59929689801c733951a7c1dec4eeab5860dabed34fcd7fb4f6a3025094ca4373
|
3 |
+
size 985704256
|
model-00021-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7be1d00c9b25f1a3d47933033f7b7cdc9666d700e167ab37c2a2d59df4106f4
|
3 |
+
size 917525768
|
model-00022-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5175d93eed126039310e71875ce4f855bdca3f26f9a714465d001b25c4d06399
|
3 |
+
size 985704256
|
model-00023-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:73d4ec584e755131a91bd6691655ee094579ff46f63278595ae37229b3ccf156
|
3 |
+
size 917525768
|
model-00024-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d382b66534f19f3f863292cc89bb995a805de85974f37de1832a5f18bf91216e
|
3 |
+
size 985704248
|
model-00025-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3a15b6e6df5dfacf2607c24f48196806d92931cdb0817ae3023a143dd8b49c7
|
3 |
+
size 917525752
|
model-00026-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0894c828965a6f22f997984c230fbddfb6359fa3881da4f7e93a523e9b2f4ee
|
3 |
+
size 985704240
|
model-00027-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e5aa204e94d42f6205310a543577536b08625aeb5bc7f63a42d90bbcf9a643e
|
3 |
+
size 917525752
|
model-00028-of-00028.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2edeef2b9bb046d607cbf2a0e6829fd233aca0f1f82290a96d8fe03470f95c35
|
3 |
+
size 351294248
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4.2", "total_size": 26031728640}, "weight_map": {"lm_head.weight": "model-00001-of-00028.safetensors", "model.embed_tokens.weight": "model-00001-of-00028.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00028.safetensors", "model.layers.0.mlp.down_proj.weight": "model-00001-of-00028.safetensors", "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00028.safetensors", "model.layers.0.mlp.up_proj.weight": "model-00002-of-00028.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00002-of-00028.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00002-of-00028.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00002-of-00028.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00002-of-00028.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.input_layernorm.weight": "model-00002-of-00028.safetensors", "model.layers.1.mlp.down_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.mlp.gate_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.mlp.up_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00002-of-00028.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00002-of-00028.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00002-of-00028.safetensors", "model.layers.10.input_layernorm.weight": "model-00002-of-00028.safetensors", "model.layers.10.mlp.down_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.mlp.gate_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.mlp.up_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00003-of-00028.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00003-of-00028.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00003-of-00028.safetensors", "model.layers.11.input_layernorm.weight": "model-00003-of-00028.safetensors", "model.layers.11.mlp.down_proj.weight": "model-00003-of-00028.safetensors", "model.layers.11.mlp.gate_proj.weight": "model-00003-of-00028.safetensors", "model.layers.11.mlp.up_proj.weight": "model-00004-of-00028.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00004-of-00028.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00004-of-00028.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00004-of-00028.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00004-of-00028.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.input_layernorm.weight": "model-00004-of-00028.safetensors", "model.layers.12.mlp.down_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.mlp.gate_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.mlp.up_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00004-of-00028.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00004-of-00028.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00004-of-00028.safetensors", "model.layers.13.input_layernorm.weight": "model-00004-of-00028.safetensors", "model.layers.13.mlp.down_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.mlp.gate_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.mlp.up_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00005-of-00028.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00005-of-00028.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00005-of-00028.safetensors", "model.layers.14.input_layernorm.weight": "model-00005-of-00028.safetensors", "model.layers.14.mlp.down_proj.weight": "model-00005-of-00028.safetensors", "model.layers.14.mlp.gate_proj.weight": "model-00005-of-00028.safetensors", "model.layers.14.mlp.up_proj.weight": "model-00006-of-00028.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00006-of-00028.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00006-of-00028.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00006-of-00028.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00006-of-00028.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.input_layernorm.weight": "model-00006-of-00028.safetensors", "model.layers.15.mlp.down_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.mlp.gate_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.mlp.up_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00006-of-00028.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00006-of-00028.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00006-of-00028.safetensors", "model.layers.16.input_layernorm.weight": "model-00006-of-00028.safetensors", "model.layers.16.mlp.down_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.mlp.gate_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.mlp.up_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00007-of-00028.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00007-of-00028.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00007-of-00028.safetensors", "model.layers.17.input_layernorm.weight": "model-00007-of-00028.safetensors", "model.layers.17.mlp.down_proj.weight": "model-00007-of-00028.safetensors", "model.layers.17.mlp.gate_proj.weight": "model-00007-of-00028.safetensors", "model.layers.17.mlp.up_proj.weight": "model-00008-of-00028.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00008-of-00028.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00008-of-00028.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00008-of-00028.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00008-of-00028.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.input_layernorm.weight": "model-00008-of-00028.safetensors", "model.layers.18.mlp.down_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.mlp.gate_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.mlp.up_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00008-of-00028.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00008-of-00028.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00008-of-00028.safetensors", "model.layers.19.input_layernorm.weight": "model-00008-of-00028.safetensors", "model.layers.19.mlp.down_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.mlp.gate_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.mlp.up_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00009-of-00028.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00009-of-00028.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00009-of-00028.safetensors", "model.layers.2.input_layernorm.weight": "model-00009-of-00028.safetensors", "model.layers.2.mlp.down_proj.weight": "model-00009-of-00028.safetensors", "model.layers.2.mlp.gate_proj.weight": "model-00009-of-00028.safetensors", "model.layers.2.mlp.up_proj.weight": "model-00010-of-00028.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00010-of-00028.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00010-of-00028.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00010-of-00028.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00010-of-00028.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.input_layernorm.weight": "model-00010-of-00028.safetensors", "model.layers.20.mlp.down_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.mlp.gate_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.mlp.up_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00010-of-00028.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00010-of-00028.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00010-of-00028.safetensors", "model.layers.21.input_layernorm.weight": "model-00010-of-00028.safetensors", "model.layers.21.mlp.down_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.mlp.gate_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.mlp.up_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00011-of-00028.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00011-of-00028.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00011-of-00028.safetensors", "model.layers.22.input_layernorm.weight": "model-00011-of-00028.safetensors", "model.layers.22.mlp.down_proj.weight": "model-00011-of-00028.safetensors", "model.layers.22.mlp.gate_proj.weight": "model-00011-of-00028.safetensors", "model.layers.22.mlp.up_proj.weight": "model-00012-of-00028.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00012-of-00028.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00012-of-00028.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00012-of-00028.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00012-of-00028.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.input_layernorm.weight": "model-00012-of-00028.safetensors", "model.layers.23.mlp.down_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.mlp.gate_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.mlp.up_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00012-of-00028.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00012-of-00028.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00012-of-00028.safetensors", "model.layers.24.input_layernorm.weight": "model-00012-of-00028.safetensors", "model.layers.24.mlp.down_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.mlp.gate_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.mlp.up_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00013-of-00028.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00013-of-00028.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00013-of-00028.safetensors", "model.layers.25.input_layernorm.weight": "model-00013-of-00028.safetensors", "model.layers.25.mlp.down_proj.weight": "model-00013-of-00028.safetensors", "model.layers.25.mlp.gate_proj.weight": "model-00013-of-00028.safetensors", "model.layers.25.mlp.up_proj.weight": "model-00014-of-00028.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00014-of-00028.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00014-of-00028.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00014-of-00028.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00014-of-00028.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.input_layernorm.weight": "model-00014-of-00028.safetensors", "model.layers.26.mlp.down_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.mlp.gate_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.mlp.up_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00014-of-00028.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00014-of-00028.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00014-of-00028.safetensors", "model.layers.27.input_layernorm.weight": "model-00014-of-00028.safetensors", "model.layers.27.mlp.down_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.mlp.gate_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.mlp.up_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00015-of-00028.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00015-of-00028.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00015-of-00028.safetensors", "model.layers.28.input_layernorm.weight": "model-00015-of-00028.safetensors", "model.layers.28.mlp.down_proj.weight": "model-00015-of-00028.safetensors", "model.layers.28.mlp.gate_proj.weight": "model-00015-of-00028.safetensors", "model.layers.28.mlp.up_proj.weight": "model-00016-of-00028.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00016-of-00028.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00016-of-00028.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00016-of-00028.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00016-of-00028.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.input_layernorm.weight": "model-00016-of-00028.safetensors", "model.layers.29.mlp.down_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.mlp.gate_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.mlp.up_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00016-of-00028.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00016-of-00028.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00016-of-00028.safetensors", "model.layers.3.input_layernorm.weight": "model-00016-of-00028.safetensors", "model.layers.3.mlp.down_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.mlp.gate_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.mlp.up_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00017-of-00028.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00017-of-00028.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00017-of-00028.safetensors", "model.layers.30.input_layernorm.weight": "model-00017-of-00028.safetensors", "model.layers.30.mlp.down_proj.weight": "model-00017-of-00028.safetensors", "model.layers.30.mlp.gate_proj.weight": "model-00017-of-00028.safetensors", "model.layers.30.mlp.up_proj.weight": "model-00018-of-00028.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00018-of-00028.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00018-of-00028.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00018-of-00028.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00018-of-00028.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.input_layernorm.weight": "model-00018-of-00028.safetensors", "model.layers.31.mlp.down_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.mlp.gate_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.mlp.up_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00018-of-00028.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00018-of-00028.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00018-of-00028.safetensors", "model.layers.32.input_layernorm.weight": "model-00018-of-00028.safetensors", "model.layers.32.mlp.down_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.mlp.gate_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.mlp.up_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.post_attention_layernorm.weight": "model-00019-of-00028.safetensors", "model.layers.32.self_attn.k_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.self_attn.o_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.self_attn.q_proj.weight": "model-00019-of-00028.safetensors", "model.layers.32.self_attn.v_proj.weight": "model-00019-of-00028.safetensors", "model.layers.33.input_layernorm.weight": "model-00019-of-00028.safetensors", "model.layers.33.mlp.down_proj.weight": "model-00019-of-00028.safetensors", "model.layers.33.mlp.gate_proj.weight": "model-00019-of-00028.safetensors", "model.layers.33.mlp.up_proj.weight": "model-00020-of-00028.safetensors", "model.layers.33.post_attention_layernorm.weight": "model-00020-of-00028.safetensors", "model.layers.33.self_attn.k_proj.weight": "model-00020-of-00028.safetensors", "model.layers.33.self_attn.o_proj.weight": "model-00020-of-00028.safetensors", "model.layers.33.self_attn.q_proj.weight": "model-00020-of-00028.safetensors", "model.layers.33.self_attn.v_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.input_layernorm.weight": "model-00020-of-00028.safetensors", "model.layers.34.mlp.down_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.mlp.gate_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.mlp.up_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.post_attention_layernorm.weight": "model-00020-of-00028.safetensors", "model.layers.34.self_attn.k_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.self_attn.o_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.self_attn.q_proj.weight": "model-00020-of-00028.safetensors", "model.layers.34.self_attn.v_proj.weight": "model-00020-of-00028.safetensors", "model.layers.35.input_layernorm.weight": "model-00020-of-00028.safetensors", "model.layers.35.mlp.down_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.mlp.gate_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.mlp.up_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.post_attention_layernorm.weight": "model-00021-of-00028.safetensors", "model.layers.35.self_attn.k_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.self_attn.o_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.self_attn.q_proj.weight": "model-00021-of-00028.safetensors", "model.layers.35.self_attn.v_proj.weight": "model-00021-of-00028.safetensors", "model.layers.36.input_layernorm.weight": "model-00021-of-00028.safetensors", "model.layers.36.mlp.down_proj.weight": "model-00021-of-00028.safetensors", "model.layers.36.mlp.gate_proj.weight": "model-00021-of-00028.safetensors", "model.layers.36.mlp.up_proj.weight": "model-00022-of-00028.safetensors", "model.layers.36.post_attention_layernorm.weight": "model-00022-of-00028.safetensors", "model.layers.36.self_attn.k_proj.weight": "model-00022-of-00028.safetensors", "model.layers.36.self_attn.o_proj.weight": "model-00022-of-00028.safetensors", "model.layers.36.self_attn.q_proj.weight": "model-00022-of-00028.safetensors", "model.layers.36.self_attn.v_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.input_layernorm.weight": "model-00022-of-00028.safetensors", "model.layers.37.mlp.down_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.mlp.gate_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.mlp.up_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.post_attention_layernorm.weight": "model-00022-of-00028.safetensors", "model.layers.37.self_attn.k_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.self_attn.o_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.self_attn.q_proj.weight": "model-00022-of-00028.safetensors", "model.layers.37.self_attn.v_proj.weight": "model-00022-of-00028.safetensors", "model.layers.38.input_layernorm.weight": "model-00022-of-00028.safetensors", "model.layers.38.mlp.down_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.mlp.gate_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.mlp.up_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.post_attention_layernorm.weight": "model-00023-of-00028.safetensors", "model.layers.38.self_attn.k_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.self_attn.o_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.self_attn.q_proj.weight": "model-00023-of-00028.safetensors", "model.layers.38.self_attn.v_proj.weight": "model-00023-of-00028.safetensors", "model.layers.39.input_layernorm.weight": "model-00023-of-00028.safetensors", "model.layers.39.mlp.down_proj.weight": "model-00023-of-00028.safetensors", "model.layers.39.mlp.gate_proj.weight": "model-00023-of-00028.safetensors", "model.layers.39.mlp.up_proj.weight": "model-00024-of-00028.safetensors", "model.layers.39.post_attention_layernorm.weight": "model-00024-of-00028.safetensors", "model.layers.39.self_attn.k_proj.weight": "model-00024-of-00028.safetensors", "model.layers.39.self_attn.o_proj.weight": "model-00024-of-00028.safetensors", "model.layers.39.self_attn.q_proj.weight": "model-00024-of-00028.safetensors", "model.layers.39.self_attn.v_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.input_layernorm.weight": "model-00024-of-00028.safetensors", "model.layers.4.mlp.down_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.mlp.gate_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.mlp.up_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00024-of-00028.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00024-of-00028.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00024-of-00028.safetensors", "model.layers.5.input_layernorm.weight": "model-00024-of-00028.safetensors", "model.layers.5.mlp.down_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.mlp.gate_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.mlp.up_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00025-of-00028.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00025-of-00028.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00025-of-00028.safetensors", "model.layers.6.input_layernorm.weight": "model-00025-of-00028.safetensors", "model.layers.6.mlp.down_proj.weight": "model-00025-of-00028.safetensors", "model.layers.6.mlp.gate_proj.weight": "model-00025-of-00028.safetensors", "model.layers.6.mlp.up_proj.weight": "model-00026-of-00028.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00026-of-00028.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00026-of-00028.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00026-of-00028.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00026-of-00028.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.input_layernorm.weight": "model-00026-of-00028.safetensors", "model.layers.7.mlp.down_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.mlp.gate_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.mlp.up_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00026-of-00028.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00026-of-00028.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00026-of-00028.safetensors", "model.layers.8.input_layernorm.weight": "model-00026-of-00028.safetensors", "model.layers.8.mlp.down_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.mlp.gate_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.mlp.up_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00027-of-00028.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00027-of-00028.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00027-of-00028.safetensors", "model.layers.9.input_layernorm.weight": "model-00027-of-00028.safetensors", "model.layers.9.mlp.down_proj.weight": "model-00027-of-00028.safetensors", "model.layers.9.mlp.gate_proj.weight": "model-00027-of-00028.safetensors", "model.layers.9.mlp.up_proj.weight": "model-00028-of-00028.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00028-of-00028.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00028-of-00028.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00028-of-00028.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00028-of-00028.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00028-of-00028.safetensors", "model.norm.weight": "model-00028-of-00028.safetensors"}}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": true,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "</s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": true,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<unk>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": true,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"unk_token": {
|
24 |
+
"content": "<unk>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": true,
|
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:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
3 |
+
size 499723
|
tokenizer_config.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": true,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<unk>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": true,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": true,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false,
|
20 |
+
"special": true
|
21 |
+
},
|
22 |
+
"2": {
|
23 |
+
"content": "</s>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": true,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false,
|
28 |
+
"special": true
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"bos_token": "<s>",
|
32 |
+
"clean_up_tokenization_spaces": false,
|
33 |
+
"eos_token": "</s>",
|
34 |
+
"legacy": false,
|
35 |
+
"model_max_length": 1000000000000000019884624838656,
|
36 |
+
"pad_token": "<unk>",
|
37 |
+
"sp_model_kwargs": {},
|
38 |
+
"spaces_between_special_tokens": false,
|
39 |
+
"tokenizer_class": "LlamaTokenizer",
|
40 |
+
"unk_token": "<unk>",
|
41 |
+
"use_default_system_prompt": false
|
42 |
+
}
|