Upload folder using huggingface_hub
#1
by
WaveCut
- opened
- README.md +39 -0
- config.json +145 -0
- handler.py +37 -0
- model.safetensors +3 -0
- model.safetensors.index.json +462 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer_config.json +137 -0
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- multilingual
|
5 |
+
tags:
|
6 |
+
- nlp
|
7 |
+
- mlx
|
8 |
+
base_model: numind/NuExtract-1.5
|
9 |
+
pipeline_tag: text-generation
|
10 |
+
inference: true
|
11 |
+
---
|
12 |
+
|
13 |
+
# mlx-community/numind-NuExtract-1.5-MLX-8bit
|
14 |
+
|
15 |
+
The Model [mlx-community/numind-NuExtract-1.5-MLX-8bit](https://huggingface.co/mlx-community/numind-NuExtract-1.5-MLX-8bit) was
|
16 |
+
converted to MLX format from [numind/NuExtract-1.5](https://huggingface.co/numind/NuExtract-1.5)
|
17 |
+
using mlx-lm version **0.20.1**.
|
18 |
+
|
19 |
+
## Use with mlx
|
20 |
+
|
21 |
+
```bash
|
22 |
+
pip install mlx-lm
|
23 |
+
```
|
24 |
+
|
25 |
+
```python
|
26 |
+
from mlx_lm import load, generate
|
27 |
+
|
28 |
+
model, tokenizer = load("mlx-community/numind-NuExtract-1.5-MLX-8bit")
|
29 |
+
|
30 |
+
prompt="hello"
|
31 |
+
|
32 |
+
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
|
33 |
+
messages = [{"role": "user", "content": prompt}]
|
34 |
+
prompt = tokenizer.apply_chat_template(
|
35 |
+
messages, tokenize=False, add_generation_prompt=True
|
36 |
+
)
|
37 |
+
|
38 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
39 |
+
```
|
config.json
ADDED
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Phi3ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "microsoft/Phi-3.5-mini-instruct--configuration_phi3.Phi3Config",
|
9 |
+
"AutoModelForCausalLM": "microsoft/Phi-3.5-mini-instruct--modeling_phi3.Phi3ForCausalLM"
|
10 |
+
},
|
11 |
+
"bos_token_id": 1,
|
12 |
+
"embd_pdrop": 0.0,
|
13 |
+
"eos_token_id": 32000,
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 3072,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 8192,
|
18 |
+
"max_position_embeddings": 131072,
|
19 |
+
"model_type": "phi3",
|
20 |
+
"num_attention_heads": 32,
|
21 |
+
"num_hidden_layers": 32,
|
22 |
+
"num_key_value_heads": 32,
|
23 |
+
"original_max_position_embeddings": 4096,
|
24 |
+
"pad_token_id": 32000,
|
25 |
+
"quantization": {
|
26 |
+
"group_size": 64,
|
27 |
+
"bits": 8
|
28 |
+
},
|
29 |
+
"quantization_config": {
|
30 |
+
"group_size": 64,
|
31 |
+
"bits": 8
|
32 |
+
},
|
33 |
+
"resid_pdrop": 0.0,
|
34 |
+
"rms_norm_eps": 1e-05,
|
35 |
+
"rope_scaling": {
|
36 |
+
"long_factor": [
|
37 |
+
1.0800000429153442,
|
38 |
+
1.1100000143051147,
|
39 |
+
1.1399999856948853,
|
40 |
+
1.340000033378601,
|
41 |
+
1.5899999141693115,
|
42 |
+
1.600000023841858,
|
43 |
+
1.6200000047683716,
|
44 |
+
2.620000123977661,
|
45 |
+
3.2300000190734863,
|
46 |
+
3.2300000190734863,
|
47 |
+
4.789999961853027,
|
48 |
+
7.400000095367432,
|
49 |
+
7.700000286102295,
|
50 |
+
9.09000015258789,
|
51 |
+
12.199999809265137,
|
52 |
+
17.670000076293945,
|
53 |
+
24.46000099182129,
|
54 |
+
28.57000160217285,
|
55 |
+
30.420001983642578,
|
56 |
+
30.840002059936523,
|
57 |
+
32.590003967285156,
|
58 |
+
32.93000411987305,
|
59 |
+
42.320003509521484,
|
60 |
+
44.96000289916992,
|
61 |
+
50.340003967285156,
|
62 |
+
50.45000457763672,
|
63 |
+
57.55000305175781,
|
64 |
+
57.93000411987305,
|
65 |
+
58.21000289916992,
|
66 |
+
60.1400032043457,
|
67 |
+
62.61000442504883,
|
68 |
+
62.62000274658203,
|
69 |
+
62.71000289916992,
|
70 |
+
63.1400032043457,
|
71 |
+
63.1400032043457,
|
72 |
+
63.77000427246094,
|
73 |
+
63.93000411987305,
|
74 |
+
63.96000289916992,
|
75 |
+
63.970001220703125,
|
76 |
+
64.02999877929688,
|
77 |
+
64.06999969482422,
|
78 |
+
64.08000183105469,
|
79 |
+
64.12000274658203,
|
80 |
+
64.41000366210938,
|
81 |
+
64.4800033569336,
|
82 |
+
64.51000213623047,
|
83 |
+
64.52999877929688,
|
84 |
+
64.83999633789062
|
85 |
+
],
|
86 |
+
"short_factor": [
|
87 |
+
1.0,
|
88 |
+
1.0199999809265137,
|
89 |
+
1.0299999713897705,
|
90 |
+
1.0299999713897705,
|
91 |
+
1.0499999523162842,
|
92 |
+
1.0499999523162842,
|
93 |
+
1.0499999523162842,
|
94 |
+
1.0499999523162842,
|
95 |
+
1.0499999523162842,
|
96 |
+
1.0699999332427979,
|
97 |
+
1.0999999046325684,
|
98 |
+
1.1099998950958252,
|
99 |
+
1.1599998474121094,
|
100 |
+
1.1599998474121094,
|
101 |
+
1.1699998378753662,
|
102 |
+
1.2899998426437378,
|
103 |
+
1.339999794960022,
|
104 |
+
1.679999828338623,
|
105 |
+
1.7899998426437378,
|
106 |
+
1.8199998140335083,
|
107 |
+
1.8499997854232788,
|
108 |
+
1.8799997568130493,
|
109 |
+
1.9099997282028198,
|
110 |
+
1.9399996995925903,
|
111 |
+
1.9899996519088745,
|
112 |
+
2.0199997425079346,
|
113 |
+
2.0199997425079346,
|
114 |
+
2.0199997425079346,
|
115 |
+
2.0199997425079346,
|
116 |
+
2.0199997425079346,
|
117 |
+
2.0199997425079346,
|
118 |
+
2.0299997329711914,
|
119 |
+
2.0299997329711914,
|
120 |
+
2.0299997329711914,
|
121 |
+
2.0299997329711914,
|
122 |
+
2.0299997329711914,
|
123 |
+
2.0299997329711914,
|
124 |
+
2.0299997329711914,
|
125 |
+
2.0299997329711914,
|
126 |
+
2.0299997329711914,
|
127 |
+
2.0799996852874756,
|
128 |
+
2.0899996757507324,
|
129 |
+
2.189999580383301,
|
130 |
+
2.2199995517730713,
|
131 |
+
2.5899994373321533,
|
132 |
+
2.729999542236328,
|
133 |
+
2.749999523162842,
|
134 |
+
2.8399994373321533
|
135 |
+
],
|
136 |
+
"type": "longrope"
|
137 |
+
},
|
138 |
+
"rope_theta": 10000.0,
|
139 |
+
"sliding_window": 262144,
|
140 |
+
"tie_word_embeddings": false,
|
141 |
+
"torch_dtype": "bfloat16",
|
142 |
+
"transformers_version": "4.44.0",
|
143 |
+
"use_cache": true,
|
144 |
+
"vocab_size": 32064
|
145 |
+
}
|
handler.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict, List, Any
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
+
import torch
|
4 |
+
import os
|
5 |
+
|
6 |
+
|
7 |
+
MAX_INPUT_SIZE = 10_000
|
8 |
+
MAX_NEW_TOKENS = 4_000
|
9 |
+
|
10 |
+
def clean_json_text(text):
|
11 |
+
"""
|
12 |
+
Cleans JSON text by removing leading/trailing whitespace and escaping special characters.
|
13 |
+
"""
|
14 |
+
text = text.strip()
|
15 |
+
text = text.replace("\#", "#").replace("\&", "&")
|
16 |
+
return text
|
17 |
+
|
18 |
+
class EndpointHandler:
|
19 |
+
def __init__(self, path=""):
|
20 |
+
# load model and processor from path
|
21 |
+
self.model = AutoModelForCausalLM.from_pretrained(path,
|
22 |
+
trust_remote_code=True,
|
23 |
+
torch_dtype=torch.bfloat16,
|
24 |
+
device_map="auto")
|
25 |
+
self.model.eval()
|
26 |
+
self.tokenizer = AutoTokenizer.from_pretrained(path)
|
27 |
+
|
28 |
+
def __call__(self, data: Dict[str, Any]) -> str:
|
29 |
+
data = data.pop("inputs")
|
30 |
+
template = data.pop("template")
|
31 |
+
text = data.pop("text")
|
32 |
+
input_llm = f"<|input|>\n### Template:\n{template}\n### Text:\n{text}\n\n<|output|>" + "{"
|
33 |
+
|
34 |
+
input_ids = self.tokenizer(input_llm, return_tensors="pt", truncation=True, max_length=MAX_INPUT_SIZE).to("cuda")
|
35 |
+
output = self.tokenizer.decode(self.model.generate(**input_ids, max_new_tokens=MAX_NEW_TOKENS)[0], skip_special_tokens=True)
|
36 |
+
|
37 |
+
return clean_json_text(output.split("<|output|>")[1])
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2867c9085d28d5a4206659f685adb58a532adc205c019d4bebfc5c99341dcdc0
|
3 |
+
size 4060136345
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,462 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 4060084224
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.biases": "model.safetensors",
|
7 |
+
"lm_head.scales": "model.safetensors",
|
8 |
+
"lm_head.weight": "model.safetensors",
|
9 |
+
"model.embed_tokens.biases": "model.safetensors",
|
10 |
+
"model.embed_tokens.scales": "model.safetensors",
|
11 |
+
"model.embed_tokens.weight": "model.safetensors",
|
12 |
+
"model.layers.0.input_layernorm.weight": "model.safetensors",
|
13 |
+
"model.layers.0.mlp.down_proj.biases": "model.safetensors",
|
14 |
+
"model.layers.0.mlp.down_proj.scales": "model.safetensors",
|
15 |
+
"model.layers.0.mlp.down_proj.weight": "model.safetensors",
|
16 |
+
"model.layers.0.mlp.gate_up_proj.biases": "model.safetensors",
|
17 |
+
"model.layers.0.mlp.gate_up_proj.scales": "model.safetensors",
|
18 |
+
"model.layers.0.mlp.gate_up_proj.weight": "model.safetensors",
|
19 |
+
"model.layers.0.post_attention_layernorm.weight": "model.safetensors",
|
20 |
+
"model.layers.0.self_attn.o_proj.biases": "model.safetensors",
|
21 |
+
"model.layers.0.self_attn.o_proj.scales": "model.safetensors",
|
22 |
+
"model.layers.0.self_attn.o_proj.weight": "model.safetensors",
|
23 |
+
"model.layers.0.self_attn.qkv_proj.biases": "model.safetensors",
|
24 |
+
"model.layers.0.self_attn.qkv_proj.scales": "model.safetensors",
|
25 |
+
"model.layers.0.self_attn.qkv_proj.weight": "model.safetensors",
|
26 |
+
"model.layers.1.input_layernorm.weight": "model.safetensors",
|
27 |
+
"model.layers.1.mlp.down_proj.biases": "model.safetensors",
|
28 |
+
"model.layers.1.mlp.down_proj.scales": "model.safetensors",
|
29 |
+
"model.layers.1.mlp.down_proj.weight": "model.safetensors",
|
30 |
+
"model.layers.1.mlp.gate_up_proj.biases": "model.safetensors",
|
31 |
+
"model.layers.1.mlp.gate_up_proj.scales": "model.safetensors",
|
32 |
+
"model.layers.1.mlp.gate_up_proj.weight": "model.safetensors",
|
33 |
+
"model.layers.1.post_attention_layernorm.weight": "model.safetensors",
|
34 |
+
"model.layers.1.self_attn.o_proj.biases": "model.safetensors",
|
35 |
+
"model.layers.1.self_attn.o_proj.scales": "model.safetensors",
|
36 |
+
"model.layers.1.self_attn.o_proj.weight": "model.safetensors",
|
37 |
+
"model.layers.1.self_attn.qkv_proj.biases": "model.safetensors",
|
38 |
+
"model.layers.1.self_attn.qkv_proj.scales": "model.safetensors",
|
39 |
+
"model.layers.1.self_attn.qkv_proj.weight": "model.safetensors",
|
40 |
+
"model.layers.10.input_layernorm.weight": "model.safetensors",
|
41 |
+
"model.layers.10.mlp.down_proj.biases": "model.safetensors",
|
42 |
+
"model.layers.10.mlp.down_proj.scales": "model.safetensors",
|
43 |
+
"model.layers.10.mlp.down_proj.weight": "model.safetensors",
|
44 |
+
"model.layers.10.mlp.gate_up_proj.biases": "model.safetensors",
|
45 |
+
"model.layers.10.mlp.gate_up_proj.scales": "model.safetensors",
|
46 |
+
"model.layers.10.mlp.gate_up_proj.weight": "model.safetensors",
|
47 |
+
"model.layers.10.post_attention_layernorm.weight": "model.safetensors",
|
48 |
+
"model.layers.10.self_attn.o_proj.biases": "model.safetensors",
|
49 |
+
"model.layers.10.self_attn.o_proj.scales": "model.safetensors",
|
50 |
+
"model.layers.10.self_attn.o_proj.weight": "model.safetensors",
|
51 |
+
"model.layers.10.self_attn.qkv_proj.biases": "model.safetensors",
|
52 |
+
"model.layers.10.self_attn.qkv_proj.scales": "model.safetensors",
|
53 |
+
"model.layers.10.self_attn.qkv_proj.weight": "model.safetensors",
|
54 |
+
"model.layers.11.input_layernorm.weight": "model.safetensors",
|
55 |
+
"model.layers.11.mlp.down_proj.biases": "model.safetensors",
|
56 |
+
"model.layers.11.mlp.down_proj.scales": "model.safetensors",
|
57 |
+
"model.layers.11.mlp.down_proj.weight": "model.safetensors",
|
58 |
+
"model.layers.11.mlp.gate_up_proj.biases": "model.safetensors",
|
59 |
+
"model.layers.11.mlp.gate_up_proj.scales": "model.safetensors",
|
60 |
+
"model.layers.11.mlp.gate_up_proj.weight": "model.safetensors",
|
61 |
+
"model.layers.11.post_attention_layernorm.weight": "model.safetensors",
|
62 |
+
"model.layers.11.self_attn.o_proj.biases": "model.safetensors",
|
63 |
+
"model.layers.11.self_attn.o_proj.scales": "model.safetensors",
|
64 |
+
"model.layers.11.self_attn.o_proj.weight": "model.safetensors",
|
65 |
+
"model.layers.11.self_attn.qkv_proj.biases": "model.safetensors",
|
66 |
+
"model.layers.11.self_attn.qkv_proj.scales": "model.safetensors",
|
67 |
+
"model.layers.11.self_attn.qkv_proj.weight": "model.safetensors",
|
68 |
+
"model.layers.12.input_layernorm.weight": "model.safetensors",
|
69 |
+
"model.layers.12.mlp.down_proj.biases": "model.safetensors",
|
70 |
+
"model.layers.12.mlp.down_proj.scales": "model.safetensors",
|
71 |
+
"model.layers.12.mlp.down_proj.weight": "model.safetensors",
|
72 |
+
"model.layers.12.mlp.gate_up_proj.biases": "model.safetensors",
|
73 |
+
"model.layers.12.mlp.gate_up_proj.scales": "model.safetensors",
|
74 |
+
"model.layers.12.mlp.gate_up_proj.weight": "model.safetensors",
|
75 |
+
"model.layers.12.post_attention_layernorm.weight": "model.safetensors",
|
76 |
+
"model.layers.12.self_attn.o_proj.biases": "model.safetensors",
|
77 |
+
"model.layers.12.self_attn.o_proj.scales": "model.safetensors",
|
78 |
+
"model.layers.12.self_attn.o_proj.weight": "model.safetensors",
|
79 |
+
"model.layers.12.self_attn.qkv_proj.biases": "model.safetensors",
|
80 |
+
"model.layers.12.self_attn.qkv_proj.scales": "model.safetensors",
|
81 |
+
"model.layers.12.self_attn.qkv_proj.weight": "model.safetensors",
|
82 |
+
"model.layers.13.input_layernorm.weight": "model.safetensors",
|
83 |
+
"model.layers.13.mlp.down_proj.biases": "model.safetensors",
|
84 |
+
"model.layers.13.mlp.down_proj.scales": "model.safetensors",
|
85 |
+
"model.layers.13.mlp.down_proj.weight": "model.safetensors",
|
86 |
+
"model.layers.13.mlp.gate_up_proj.biases": "model.safetensors",
|
87 |
+
"model.layers.13.mlp.gate_up_proj.scales": "model.safetensors",
|
88 |
+
"model.layers.13.mlp.gate_up_proj.weight": "model.safetensors",
|
89 |
+
"model.layers.13.post_attention_layernorm.weight": "model.safetensors",
|
90 |
+
"model.layers.13.self_attn.o_proj.biases": "model.safetensors",
|
91 |
+
"model.layers.13.self_attn.o_proj.scales": "model.safetensors",
|
92 |
+
"model.layers.13.self_attn.o_proj.weight": "model.safetensors",
|
93 |
+
"model.layers.13.self_attn.qkv_proj.biases": "model.safetensors",
|
94 |
+
"model.layers.13.self_attn.qkv_proj.scales": "model.safetensors",
|
95 |
+
"model.layers.13.self_attn.qkv_proj.weight": "model.safetensors",
|
96 |
+
"model.layers.14.input_layernorm.weight": "model.safetensors",
|
97 |
+
"model.layers.14.mlp.down_proj.biases": "model.safetensors",
|
98 |
+
"model.layers.14.mlp.down_proj.scales": "model.safetensors",
|
99 |
+
"model.layers.14.mlp.down_proj.weight": "model.safetensors",
|
100 |
+
"model.layers.14.mlp.gate_up_proj.biases": "model.safetensors",
|
101 |
+
"model.layers.14.mlp.gate_up_proj.scales": "model.safetensors",
|
102 |
+
"model.layers.14.mlp.gate_up_proj.weight": "model.safetensors",
|
103 |
+
"model.layers.14.post_attention_layernorm.weight": "model.safetensors",
|
104 |
+
"model.layers.14.self_attn.o_proj.biases": "model.safetensors",
|
105 |
+
"model.layers.14.self_attn.o_proj.scales": "model.safetensors",
|
106 |
+
"model.layers.14.self_attn.o_proj.weight": "model.safetensors",
|
107 |
+
"model.layers.14.self_attn.qkv_proj.biases": "model.safetensors",
|
108 |
+
"model.layers.14.self_attn.qkv_proj.scales": "model.safetensors",
|
109 |
+
"model.layers.14.self_attn.qkv_proj.weight": "model.safetensors",
|
110 |
+
"model.layers.15.input_layernorm.weight": "model.safetensors",
|
111 |
+
"model.layers.15.mlp.down_proj.biases": "model.safetensors",
|
112 |
+
"model.layers.15.mlp.down_proj.scales": "model.safetensors",
|
113 |
+
"model.layers.15.mlp.down_proj.weight": "model.safetensors",
|
114 |
+
"model.layers.15.mlp.gate_up_proj.biases": "model.safetensors",
|
115 |
+
"model.layers.15.mlp.gate_up_proj.scales": "model.safetensors",
|
116 |
+
"model.layers.15.mlp.gate_up_proj.weight": "model.safetensors",
|
117 |
+
"model.layers.15.post_attention_layernorm.weight": "model.safetensors",
|
118 |
+
"model.layers.15.self_attn.o_proj.biases": "model.safetensors",
|
119 |
+
"model.layers.15.self_attn.o_proj.scales": "model.safetensors",
|
120 |
+
"model.layers.15.self_attn.o_proj.weight": "model.safetensors",
|
121 |
+
"model.layers.15.self_attn.qkv_proj.biases": "model.safetensors",
|
122 |
+
"model.layers.15.self_attn.qkv_proj.scales": "model.safetensors",
|
123 |
+
"model.layers.15.self_attn.qkv_proj.weight": "model.safetensors",
|
124 |
+
"model.layers.16.input_layernorm.weight": "model.safetensors",
|
125 |
+
"model.layers.16.mlp.down_proj.biases": "model.safetensors",
|
126 |
+
"model.layers.16.mlp.down_proj.scales": "model.safetensors",
|
127 |
+
"model.layers.16.mlp.down_proj.weight": "model.safetensors",
|
128 |
+
"model.layers.16.mlp.gate_up_proj.biases": "model.safetensors",
|
129 |
+
"model.layers.16.mlp.gate_up_proj.scales": "model.safetensors",
|
130 |
+
"model.layers.16.mlp.gate_up_proj.weight": "model.safetensors",
|
131 |
+
"model.layers.16.post_attention_layernorm.weight": "model.safetensors",
|
132 |
+
"model.layers.16.self_attn.o_proj.biases": "model.safetensors",
|
133 |
+
"model.layers.16.self_attn.o_proj.scales": "model.safetensors",
|
134 |
+
"model.layers.16.self_attn.o_proj.weight": "model.safetensors",
|
135 |
+
"model.layers.16.self_attn.qkv_proj.biases": "model.safetensors",
|
136 |
+
"model.layers.16.self_attn.qkv_proj.scales": "model.safetensors",
|
137 |
+
"model.layers.16.self_attn.qkv_proj.weight": "model.safetensors",
|
138 |
+
"model.layers.17.input_layernorm.weight": "model.safetensors",
|
139 |
+
"model.layers.17.mlp.down_proj.biases": "model.safetensors",
|
140 |
+
"model.layers.17.mlp.down_proj.scales": "model.safetensors",
|
141 |
+
"model.layers.17.mlp.down_proj.weight": "model.safetensors",
|
142 |
+
"model.layers.17.mlp.gate_up_proj.biases": "model.safetensors",
|
143 |
+
"model.layers.17.mlp.gate_up_proj.scales": "model.safetensors",
|
144 |
+
"model.layers.17.mlp.gate_up_proj.weight": "model.safetensors",
|
145 |
+
"model.layers.17.post_attention_layernorm.weight": "model.safetensors",
|
146 |
+
"model.layers.17.self_attn.o_proj.biases": "model.safetensors",
|
147 |
+
"model.layers.17.self_attn.o_proj.scales": "model.safetensors",
|
148 |
+
"model.layers.17.self_attn.o_proj.weight": "model.safetensors",
|
149 |
+
"model.layers.17.self_attn.qkv_proj.biases": "model.safetensors",
|
150 |
+
"model.layers.17.self_attn.qkv_proj.scales": "model.safetensors",
|
151 |
+
"model.layers.17.self_attn.qkv_proj.weight": "model.safetensors",
|
152 |
+
"model.layers.18.input_layernorm.weight": "model.safetensors",
|
153 |
+
"model.layers.18.mlp.down_proj.biases": "model.safetensors",
|
154 |
+
"model.layers.18.mlp.down_proj.scales": "model.safetensors",
|
155 |
+
"model.layers.18.mlp.down_proj.weight": "model.safetensors",
|
156 |
+
"model.layers.18.mlp.gate_up_proj.biases": "model.safetensors",
|
157 |
+
"model.layers.18.mlp.gate_up_proj.scales": "model.safetensors",
|
158 |
+
"model.layers.18.mlp.gate_up_proj.weight": "model.safetensors",
|
159 |
+
"model.layers.18.post_attention_layernorm.weight": "model.safetensors",
|
160 |
+
"model.layers.18.self_attn.o_proj.biases": "model.safetensors",
|
161 |
+
"model.layers.18.self_attn.o_proj.scales": "model.safetensors",
|
162 |
+
"model.layers.18.self_attn.o_proj.weight": "model.safetensors",
|
163 |
+
"model.layers.18.self_attn.qkv_proj.biases": "model.safetensors",
|
164 |
+
"model.layers.18.self_attn.qkv_proj.scales": "model.safetensors",
|
165 |
+
"model.layers.18.self_attn.qkv_proj.weight": "model.safetensors",
|
166 |
+
"model.layers.19.input_layernorm.weight": "model.safetensors",
|
167 |
+
"model.layers.19.mlp.down_proj.biases": "model.safetensors",
|
168 |
+
"model.layers.19.mlp.down_proj.scales": "model.safetensors",
|
169 |
+
"model.layers.19.mlp.down_proj.weight": "model.safetensors",
|
170 |
+
"model.layers.19.mlp.gate_up_proj.biases": "model.safetensors",
|
171 |
+
"model.layers.19.mlp.gate_up_proj.scales": "model.safetensors",
|
172 |
+
"model.layers.19.mlp.gate_up_proj.weight": "model.safetensors",
|
173 |
+
"model.layers.19.post_attention_layernorm.weight": "model.safetensors",
|
174 |
+
"model.layers.19.self_attn.o_proj.biases": "model.safetensors",
|
175 |
+
"model.layers.19.self_attn.o_proj.scales": "model.safetensors",
|
176 |
+
"model.layers.19.self_attn.o_proj.weight": "model.safetensors",
|
177 |
+
"model.layers.19.self_attn.qkv_proj.biases": "model.safetensors",
|
178 |
+
"model.layers.19.self_attn.qkv_proj.scales": "model.safetensors",
|
179 |
+
"model.layers.19.self_attn.qkv_proj.weight": "model.safetensors",
|
180 |
+
"model.layers.2.input_layernorm.weight": "model.safetensors",
|
181 |
+
"model.layers.2.mlp.down_proj.biases": "model.safetensors",
|
182 |
+
"model.layers.2.mlp.down_proj.scales": "model.safetensors",
|
183 |
+
"model.layers.2.mlp.down_proj.weight": "model.safetensors",
|
184 |
+
"model.layers.2.mlp.gate_up_proj.biases": "model.safetensors",
|
185 |
+
"model.layers.2.mlp.gate_up_proj.scales": "model.safetensors",
|
186 |
+
"model.layers.2.mlp.gate_up_proj.weight": "model.safetensors",
|
187 |
+
"model.layers.2.post_attention_layernorm.weight": "model.safetensors",
|
188 |
+
"model.layers.2.self_attn.o_proj.biases": "model.safetensors",
|
189 |
+
"model.layers.2.self_attn.o_proj.scales": "model.safetensors",
|
190 |
+
"model.layers.2.self_attn.o_proj.weight": "model.safetensors",
|
191 |
+
"model.layers.2.self_attn.qkv_proj.biases": "model.safetensors",
|
192 |
+
"model.layers.2.self_attn.qkv_proj.scales": "model.safetensors",
|
193 |
+
"model.layers.2.self_attn.qkv_proj.weight": "model.safetensors",
|
194 |
+
"model.layers.20.input_layernorm.weight": "model.safetensors",
|
195 |
+
"model.layers.20.mlp.down_proj.biases": "model.safetensors",
|
196 |
+
"model.layers.20.mlp.down_proj.scales": "model.safetensors",
|
197 |
+
"model.layers.20.mlp.down_proj.weight": "model.safetensors",
|
198 |
+
"model.layers.20.mlp.gate_up_proj.biases": "model.safetensors",
|
199 |
+
"model.layers.20.mlp.gate_up_proj.scales": "model.safetensors",
|
200 |
+
"model.layers.20.mlp.gate_up_proj.weight": "model.safetensors",
|
201 |
+
"model.layers.20.post_attention_layernorm.weight": "model.safetensors",
|
202 |
+
"model.layers.20.self_attn.o_proj.biases": "model.safetensors",
|
203 |
+
"model.layers.20.self_attn.o_proj.scales": "model.safetensors",
|
204 |
+
"model.layers.20.self_attn.o_proj.weight": "model.safetensors",
|
205 |
+
"model.layers.20.self_attn.qkv_proj.biases": "model.safetensors",
|
206 |
+
"model.layers.20.self_attn.qkv_proj.scales": "model.safetensors",
|
207 |
+
"model.layers.20.self_attn.qkv_proj.weight": "model.safetensors",
|
208 |
+
"model.layers.21.input_layernorm.weight": "model.safetensors",
|
209 |
+
"model.layers.21.mlp.down_proj.biases": "model.safetensors",
|
210 |
+
"model.layers.21.mlp.down_proj.scales": "model.safetensors",
|
211 |
+
"model.layers.21.mlp.down_proj.weight": "model.safetensors",
|
212 |
+
"model.layers.21.mlp.gate_up_proj.biases": "model.safetensors",
|
213 |
+
"model.layers.21.mlp.gate_up_proj.scales": "model.safetensors",
|
214 |
+
"model.layers.21.mlp.gate_up_proj.weight": "model.safetensors",
|
215 |
+
"model.layers.21.post_attention_layernorm.weight": "model.safetensors",
|
216 |
+
"model.layers.21.self_attn.o_proj.biases": "model.safetensors",
|
217 |
+
"model.layers.21.self_attn.o_proj.scales": "model.safetensors",
|
218 |
+
"model.layers.21.self_attn.o_proj.weight": "model.safetensors",
|
219 |
+
"model.layers.21.self_attn.qkv_proj.biases": "model.safetensors",
|
220 |
+
"model.layers.21.self_attn.qkv_proj.scales": "model.safetensors",
|
221 |
+
"model.layers.21.self_attn.qkv_proj.weight": "model.safetensors",
|
222 |
+
"model.layers.22.input_layernorm.weight": "model.safetensors",
|
223 |
+
"model.layers.22.mlp.down_proj.biases": "model.safetensors",
|
224 |
+
"model.layers.22.mlp.down_proj.scales": "model.safetensors",
|
225 |
+
"model.layers.22.mlp.down_proj.weight": "model.safetensors",
|
226 |
+
"model.layers.22.mlp.gate_up_proj.biases": "model.safetensors",
|
227 |
+
"model.layers.22.mlp.gate_up_proj.scales": "model.safetensors",
|
228 |
+
"model.layers.22.mlp.gate_up_proj.weight": "model.safetensors",
|
229 |
+
"model.layers.22.post_attention_layernorm.weight": "model.safetensors",
|
230 |
+
"model.layers.22.self_attn.o_proj.biases": "model.safetensors",
|
231 |
+
"model.layers.22.self_attn.o_proj.scales": "model.safetensors",
|
232 |
+
"model.layers.22.self_attn.o_proj.weight": "model.safetensors",
|
233 |
+
"model.layers.22.self_attn.qkv_proj.biases": "model.safetensors",
|
234 |
+
"model.layers.22.self_attn.qkv_proj.scales": "model.safetensors",
|
235 |
+
"model.layers.22.self_attn.qkv_proj.weight": "model.safetensors",
|
236 |
+
"model.layers.23.input_layernorm.weight": "model.safetensors",
|
237 |
+
"model.layers.23.mlp.down_proj.biases": "model.safetensors",
|
238 |
+
"model.layers.23.mlp.down_proj.scales": "model.safetensors",
|
239 |
+
"model.layers.23.mlp.down_proj.weight": "model.safetensors",
|
240 |
+
"model.layers.23.mlp.gate_up_proj.biases": "model.safetensors",
|
241 |
+
"model.layers.23.mlp.gate_up_proj.scales": "model.safetensors",
|
242 |
+
"model.layers.23.mlp.gate_up_proj.weight": "model.safetensors",
|
243 |
+
"model.layers.23.post_attention_layernorm.weight": "model.safetensors",
|
244 |
+
"model.layers.23.self_attn.o_proj.biases": "model.safetensors",
|
245 |
+
"model.layers.23.self_attn.o_proj.scales": "model.safetensors",
|
246 |
+
"model.layers.23.self_attn.o_proj.weight": "model.safetensors",
|
247 |
+
"model.layers.23.self_attn.qkv_proj.biases": "model.safetensors",
|
248 |
+
"model.layers.23.self_attn.qkv_proj.scales": "model.safetensors",
|
249 |
+
"model.layers.23.self_attn.qkv_proj.weight": "model.safetensors",
|
250 |
+
"model.layers.24.input_layernorm.weight": "model.safetensors",
|
251 |
+
"model.layers.24.mlp.down_proj.biases": "model.safetensors",
|
252 |
+
"model.layers.24.mlp.down_proj.scales": "model.safetensors",
|
253 |
+
"model.layers.24.mlp.down_proj.weight": "model.safetensors",
|
254 |
+
"model.layers.24.mlp.gate_up_proj.biases": "model.safetensors",
|
255 |
+
"model.layers.24.mlp.gate_up_proj.scales": "model.safetensors",
|
256 |
+
"model.layers.24.mlp.gate_up_proj.weight": "model.safetensors",
|
257 |
+
"model.layers.24.post_attention_layernorm.weight": "model.safetensors",
|
258 |
+
"model.layers.24.self_attn.o_proj.biases": "model.safetensors",
|
259 |
+
"model.layers.24.self_attn.o_proj.scales": "model.safetensors",
|
260 |
+
"model.layers.24.self_attn.o_proj.weight": "model.safetensors",
|
261 |
+
"model.layers.24.self_attn.qkv_proj.biases": "model.safetensors",
|
262 |
+
"model.layers.24.self_attn.qkv_proj.scales": "model.safetensors",
|
263 |
+
"model.layers.24.self_attn.qkv_proj.weight": "model.safetensors",
|
264 |
+
"model.layers.25.input_layernorm.weight": "model.safetensors",
|
265 |
+
"model.layers.25.mlp.down_proj.biases": "model.safetensors",
|
266 |
+
"model.layers.25.mlp.down_proj.scales": "model.safetensors",
|
267 |
+
"model.layers.25.mlp.down_proj.weight": "model.safetensors",
|
268 |
+
"model.layers.25.mlp.gate_up_proj.biases": "model.safetensors",
|
269 |
+
"model.layers.25.mlp.gate_up_proj.scales": "model.safetensors",
|
270 |
+
"model.layers.25.mlp.gate_up_proj.weight": "model.safetensors",
|
271 |
+
"model.layers.25.post_attention_layernorm.weight": "model.safetensors",
|
272 |
+
"model.layers.25.self_attn.o_proj.biases": "model.safetensors",
|
273 |
+
"model.layers.25.self_attn.o_proj.scales": "model.safetensors",
|
274 |
+
"model.layers.25.self_attn.o_proj.weight": "model.safetensors",
|
275 |
+
"model.layers.25.self_attn.qkv_proj.biases": "model.safetensors",
|
276 |
+
"model.layers.25.self_attn.qkv_proj.scales": "model.safetensors",
|
277 |
+
"model.layers.25.self_attn.qkv_proj.weight": "model.safetensors",
|
278 |
+
"model.layers.26.input_layernorm.weight": "model.safetensors",
|
279 |
+
"model.layers.26.mlp.down_proj.biases": "model.safetensors",
|
280 |
+
"model.layers.26.mlp.down_proj.scales": "model.safetensors",
|
281 |
+
"model.layers.26.mlp.down_proj.weight": "model.safetensors",
|
282 |
+
"model.layers.26.mlp.gate_up_proj.biases": "model.safetensors",
|
283 |
+
"model.layers.26.mlp.gate_up_proj.scales": "model.safetensors",
|
284 |
+
"model.layers.26.mlp.gate_up_proj.weight": "model.safetensors",
|
285 |
+
"model.layers.26.post_attention_layernorm.weight": "model.safetensors",
|
286 |
+
"model.layers.26.self_attn.o_proj.biases": "model.safetensors",
|
287 |
+
"model.layers.26.self_attn.o_proj.scales": "model.safetensors",
|
288 |
+
"model.layers.26.self_attn.o_proj.weight": "model.safetensors",
|
289 |
+
"model.layers.26.self_attn.qkv_proj.biases": "model.safetensors",
|
290 |
+
"model.layers.26.self_attn.qkv_proj.scales": "model.safetensors",
|
291 |
+
"model.layers.26.self_attn.qkv_proj.weight": "model.safetensors",
|
292 |
+
"model.layers.27.input_layernorm.weight": "model.safetensors",
|
293 |
+
"model.layers.27.mlp.down_proj.biases": "model.safetensors",
|
294 |
+
"model.layers.27.mlp.down_proj.scales": "model.safetensors",
|
295 |
+
"model.layers.27.mlp.down_proj.weight": "model.safetensors",
|
296 |
+
"model.layers.27.mlp.gate_up_proj.biases": "model.safetensors",
|
297 |
+
"model.layers.27.mlp.gate_up_proj.scales": "model.safetensors",
|
298 |
+
"model.layers.27.mlp.gate_up_proj.weight": "model.safetensors",
|
299 |
+
"model.layers.27.post_attention_layernorm.weight": "model.safetensors",
|
300 |
+
"model.layers.27.self_attn.o_proj.biases": "model.safetensors",
|
301 |
+
"model.layers.27.self_attn.o_proj.scales": "model.safetensors",
|
302 |
+
"model.layers.27.self_attn.o_proj.weight": "model.safetensors",
|
303 |
+
"model.layers.27.self_attn.qkv_proj.biases": "model.safetensors",
|
304 |
+
"model.layers.27.self_attn.qkv_proj.scales": "model.safetensors",
|
305 |
+
"model.layers.27.self_attn.qkv_proj.weight": "model.safetensors",
|
306 |
+
"model.layers.28.input_layernorm.weight": "model.safetensors",
|
307 |
+
"model.layers.28.mlp.down_proj.biases": "model.safetensors",
|
308 |
+
"model.layers.28.mlp.down_proj.scales": "model.safetensors",
|
309 |
+
"model.layers.28.mlp.down_proj.weight": "model.safetensors",
|
310 |
+
"model.layers.28.mlp.gate_up_proj.biases": "model.safetensors",
|
311 |
+
"model.layers.28.mlp.gate_up_proj.scales": "model.safetensors",
|
312 |
+
"model.layers.28.mlp.gate_up_proj.weight": "model.safetensors",
|
313 |
+
"model.layers.28.post_attention_layernorm.weight": "model.safetensors",
|
314 |
+
"model.layers.28.self_attn.o_proj.biases": "model.safetensors",
|
315 |
+
"model.layers.28.self_attn.o_proj.scales": "model.safetensors",
|
316 |
+
"model.layers.28.self_attn.o_proj.weight": "model.safetensors",
|
317 |
+
"model.layers.28.self_attn.qkv_proj.biases": "model.safetensors",
|
318 |
+
"model.layers.28.self_attn.qkv_proj.scales": "model.safetensors",
|
319 |
+
"model.layers.28.self_attn.qkv_proj.weight": "model.safetensors",
|
320 |
+
"model.layers.29.input_layernorm.weight": "model.safetensors",
|
321 |
+
"model.layers.29.mlp.down_proj.biases": "model.safetensors",
|
322 |
+
"model.layers.29.mlp.down_proj.scales": "model.safetensors",
|
323 |
+
"model.layers.29.mlp.down_proj.weight": "model.safetensors",
|
324 |
+
"model.layers.29.mlp.gate_up_proj.biases": "model.safetensors",
|
325 |
+
"model.layers.29.mlp.gate_up_proj.scales": "model.safetensors",
|
326 |
+
"model.layers.29.mlp.gate_up_proj.weight": "model.safetensors",
|
327 |
+
"model.layers.29.post_attention_layernorm.weight": "model.safetensors",
|
328 |
+
"model.layers.29.self_attn.o_proj.biases": "model.safetensors",
|
329 |
+
"model.layers.29.self_attn.o_proj.scales": "model.safetensors",
|
330 |
+
"model.layers.29.self_attn.o_proj.weight": "model.safetensors",
|
331 |
+
"model.layers.29.self_attn.qkv_proj.biases": "model.safetensors",
|
332 |
+
"model.layers.29.self_attn.qkv_proj.scales": "model.safetensors",
|
333 |
+
"model.layers.29.self_attn.qkv_proj.weight": "model.safetensors",
|
334 |
+
"model.layers.3.input_layernorm.weight": "model.safetensors",
|
335 |
+
"model.layers.3.mlp.down_proj.biases": "model.safetensors",
|
336 |
+
"model.layers.3.mlp.down_proj.scales": "model.safetensors",
|
337 |
+
"model.layers.3.mlp.down_proj.weight": "model.safetensors",
|
338 |
+
"model.layers.3.mlp.gate_up_proj.biases": "model.safetensors",
|
339 |
+
"model.layers.3.mlp.gate_up_proj.scales": "model.safetensors",
|
340 |
+
"model.layers.3.mlp.gate_up_proj.weight": "model.safetensors",
|
341 |
+
"model.layers.3.post_attention_layernorm.weight": "model.safetensors",
|
342 |
+
"model.layers.3.self_attn.o_proj.biases": "model.safetensors",
|
343 |
+
"model.layers.3.self_attn.o_proj.scales": "model.safetensors",
|
344 |
+
"model.layers.3.self_attn.o_proj.weight": "model.safetensors",
|
345 |
+
"model.layers.3.self_attn.qkv_proj.biases": "model.safetensors",
|
346 |
+
"model.layers.3.self_attn.qkv_proj.scales": "model.safetensors",
|
347 |
+
"model.layers.3.self_attn.qkv_proj.weight": "model.safetensors",
|
348 |
+
"model.layers.30.input_layernorm.weight": "model.safetensors",
|
349 |
+
"model.layers.30.mlp.down_proj.biases": "model.safetensors",
|
350 |
+
"model.layers.30.mlp.down_proj.scales": "model.safetensors",
|
351 |
+
"model.layers.30.mlp.down_proj.weight": "model.safetensors",
|
352 |
+
"model.layers.30.mlp.gate_up_proj.biases": "model.safetensors",
|
353 |
+
"model.layers.30.mlp.gate_up_proj.scales": "model.safetensors",
|
354 |
+
"model.layers.30.mlp.gate_up_proj.weight": "model.safetensors",
|
355 |
+
"model.layers.30.post_attention_layernorm.weight": "model.safetensors",
|
356 |
+
"model.layers.30.self_attn.o_proj.biases": "model.safetensors",
|
357 |
+
"model.layers.30.self_attn.o_proj.scales": "model.safetensors",
|
358 |
+
"model.layers.30.self_attn.o_proj.weight": "model.safetensors",
|
359 |
+
"model.layers.30.self_attn.qkv_proj.biases": "model.safetensors",
|
360 |
+
"model.layers.30.self_attn.qkv_proj.scales": "model.safetensors",
|
361 |
+
"model.layers.30.self_attn.qkv_proj.weight": "model.safetensors",
|
362 |
+
"model.layers.31.input_layernorm.weight": "model.safetensors",
|
363 |
+
"model.layers.31.mlp.down_proj.biases": "model.safetensors",
|
364 |
+
"model.layers.31.mlp.down_proj.scales": "model.safetensors",
|
365 |
+
"model.layers.31.mlp.down_proj.weight": "model.safetensors",
|
366 |
+
"model.layers.31.mlp.gate_up_proj.biases": "model.safetensors",
|
367 |
+
"model.layers.31.mlp.gate_up_proj.scales": "model.safetensors",
|
368 |
+
"model.layers.31.mlp.gate_up_proj.weight": "model.safetensors",
|
369 |
+
"model.layers.31.post_attention_layernorm.weight": "model.safetensors",
|
370 |
+
"model.layers.31.self_attn.o_proj.biases": "model.safetensors",
|
371 |
+
"model.layers.31.self_attn.o_proj.scales": "model.safetensors",
|
372 |
+
"model.layers.31.self_attn.o_proj.weight": "model.safetensors",
|
373 |
+
"model.layers.31.self_attn.qkv_proj.biases": "model.safetensors",
|
374 |
+
"model.layers.31.self_attn.qkv_proj.scales": "model.safetensors",
|
375 |
+
"model.layers.31.self_attn.qkv_proj.weight": "model.safetensors",
|
376 |
+
"model.layers.4.input_layernorm.weight": "model.safetensors",
|
377 |
+
"model.layers.4.mlp.down_proj.biases": "model.safetensors",
|
378 |
+
"model.layers.4.mlp.down_proj.scales": "model.safetensors",
|
379 |
+
"model.layers.4.mlp.down_proj.weight": "model.safetensors",
|
380 |
+
"model.layers.4.mlp.gate_up_proj.biases": "model.safetensors",
|
381 |
+
"model.layers.4.mlp.gate_up_proj.scales": "model.safetensors",
|
382 |
+
"model.layers.4.mlp.gate_up_proj.weight": "model.safetensors",
|
383 |
+
"model.layers.4.post_attention_layernorm.weight": "model.safetensors",
|
384 |
+
"model.layers.4.self_attn.o_proj.biases": "model.safetensors",
|
385 |
+
"model.layers.4.self_attn.o_proj.scales": "model.safetensors",
|
386 |
+
"model.layers.4.self_attn.o_proj.weight": "model.safetensors",
|
387 |
+
"model.layers.4.self_attn.qkv_proj.biases": "model.safetensors",
|
388 |
+
"model.layers.4.self_attn.qkv_proj.scales": "model.safetensors",
|
389 |
+
"model.layers.4.self_attn.qkv_proj.weight": "model.safetensors",
|
390 |
+
"model.layers.5.input_layernorm.weight": "model.safetensors",
|
391 |
+
"model.layers.5.mlp.down_proj.biases": "model.safetensors",
|
392 |
+
"model.layers.5.mlp.down_proj.scales": "model.safetensors",
|
393 |
+
"model.layers.5.mlp.down_proj.weight": "model.safetensors",
|
394 |
+
"model.layers.5.mlp.gate_up_proj.biases": "model.safetensors",
|
395 |
+
"model.layers.5.mlp.gate_up_proj.scales": "model.safetensors",
|
396 |
+
"model.layers.5.mlp.gate_up_proj.weight": "model.safetensors",
|
397 |
+
"model.layers.5.post_attention_layernorm.weight": "model.safetensors",
|
398 |
+
"model.layers.5.self_attn.o_proj.biases": "model.safetensors",
|
399 |
+
"model.layers.5.self_attn.o_proj.scales": "model.safetensors",
|
400 |
+
"model.layers.5.self_attn.o_proj.weight": "model.safetensors",
|
401 |
+
"model.layers.5.self_attn.qkv_proj.biases": "model.safetensors",
|
402 |
+
"model.layers.5.self_attn.qkv_proj.scales": "model.safetensors",
|
403 |
+
"model.layers.5.self_attn.qkv_proj.weight": "model.safetensors",
|
404 |
+
"model.layers.6.input_layernorm.weight": "model.safetensors",
|
405 |
+
"model.layers.6.mlp.down_proj.biases": "model.safetensors",
|
406 |
+
"model.layers.6.mlp.down_proj.scales": "model.safetensors",
|
407 |
+
"model.layers.6.mlp.down_proj.weight": "model.safetensors",
|
408 |
+
"model.layers.6.mlp.gate_up_proj.biases": "model.safetensors",
|
409 |
+
"model.layers.6.mlp.gate_up_proj.scales": "model.safetensors",
|
410 |
+
"model.layers.6.mlp.gate_up_proj.weight": "model.safetensors",
|
411 |
+
"model.layers.6.post_attention_layernorm.weight": "model.safetensors",
|
412 |
+
"model.layers.6.self_attn.o_proj.biases": "model.safetensors",
|
413 |
+
"model.layers.6.self_attn.o_proj.scales": "model.safetensors",
|
414 |
+
"model.layers.6.self_attn.o_proj.weight": "model.safetensors",
|
415 |
+
"model.layers.6.self_attn.qkv_proj.biases": "model.safetensors",
|
416 |
+
"model.layers.6.self_attn.qkv_proj.scales": "model.safetensors",
|
417 |
+
"model.layers.6.self_attn.qkv_proj.weight": "model.safetensors",
|
418 |
+
"model.layers.7.input_layernorm.weight": "model.safetensors",
|
419 |
+
"model.layers.7.mlp.down_proj.biases": "model.safetensors",
|
420 |
+
"model.layers.7.mlp.down_proj.scales": "model.safetensors",
|
421 |
+
"model.layers.7.mlp.down_proj.weight": "model.safetensors",
|
422 |
+
"model.layers.7.mlp.gate_up_proj.biases": "model.safetensors",
|
423 |
+
"model.layers.7.mlp.gate_up_proj.scales": "model.safetensors",
|
424 |
+
"model.layers.7.mlp.gate_up_proj.weight": "model.safetensors",
|
425 |
+
"model.layers.7.post_attention_layernorm.weight": "model.safetensors",
|
426 |
+
"model.layers.7.self_attn.o_proj.biases": "model.safetensors",
|
427 |
+
"model.layers.7.self_attn.o_proj.scales": "model.safetensors",
|
428 |
+
"model.layers.7.self_attn.o_proj.weight": "model.safetensors",
|
429 |
+
"model.layers.7.self_attn.qkv_proj.biases": "model.safetensors",
|
430 |
+
"model.layers.7.self_attn.qkv_proj.scales": "model.safetensors",
|
431 |
+
"model.layers.7.self_attn.qkv_proj.weight": "model.safetensors",
|
432 |
+
"model.layers.8.input_layernorm.weight": "model.safetensors",
|
433 |
+
"model.layers.8.mlp.down_proj.biases": "model.safetensors",
|
434 |
+
"model.layers.8.mlp.down_proj.scales": "model.safetensors",
|
435 |
+
"model.layers.8.mlp.down_proj.weight": "model.safetensors",
|
436 |
+
"model.layers.8.mlp.gate_up_proj.biases": "model.safetensors",
|
437 |
+
"model.layers.8.mlp.gate_up_proj.scales": "model.safetensors",
|
438 |
+
"model.layers.8.mlp.gate_up_proj.weight": "model.safetensors",
|
439 |
+
"model.layers.8.post_attention_layernorm.weight": "model.safetensors",
|
440 |
+
"model.layers.8.self_attn.o_proj.biases": "model.safetensors",
|
441 |
+
"model.layers.8.self_attn.o_proj.scales": "model.safetensors",
|
442 |
+
"model.layers.8.self_attn.o_proj.weight": "model.safetensors",
|
443 |
+
"model.layers.8.self_attn.qkv_proj.biases": "model.safetensors",
|
444 |
+
"model.layers.8.self_attn.qkv_proj.scales": "model.safetensors",
|
445 |
+
"model.layers.8.self_attn.qkv_proj.weight": "model.safetensors",
|
446 |
+
"model.layers.9.input_layernorm.weight": "model.safetensors",
|
447 |
+
"model.layers.9.mlp.down_proj.biases": "model.safetensors",
|
448 |
+
"model.layers.9.mlp.down_proj.scales": "model.safetensors",
|
449 |
+
"model.layers.9.mlp.down_proj.weight": "model.safetensors",
|
450 |
+
"model.layers.9.mlp.gate_up_proj.biases": "model.safetensors",
|
451 |
+
"model.layers.9.mlp.gate_up_proj.scales": "model.safetensors",
|
452 |
+
"model.layers.9.mlp.gate_up_proj.weight": "model.safetensors",
|
453 |
+
"model.layers.9.post_attention_layernorm.weight": "model.safetensors",
|
454 |
+
"model.layers.9.self_attn.o_proj.biases": "model.safetensors",
|
455 |
+
"model.layers.9.self_attn.o_proj.scales": "model.safetensors",
|
456 |
+
"model.layers.9.self_attn.o_proj.weight": "model.safetensors",
|
457 |
+
"model.layers.9.self_attn.qkv_proj.biases": "model.safetensors",
|
458 |
+
"model.layers.9.self_attn.qkv_proj.scales": "model.safetensors",
|
459 |
+
"model.layers.9.self_attn.qkv_proj.weight": "model.safetensors",
|
460 |
+
"model.norm.weight": "model.safetensors"
|
461 |
+
}
|
462 |
+
}
|
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": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<|endoftext|>",
|
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_config.json
ADDED
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
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": true,
|
27 |
+
"single_word": false,
|
28 |
+
"special": false
|
29 |
+
},
|
30 |
+
"32000": {
|
31 |
+
"content": "<|endoftext|>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false,
|
36 |
+
"special": true
|
37 |
+
},
|
38 |
+
"32001": {
|
39 |
+
"content": "<|assistant|>",
|
40 |
+
"lstrip": false,
|
41 |
+
"normalized": false,
|
42 |
+
"rstrip": true,
|
43 |
+
"single_word": false,
|
44 |
+
"special": true
|
45 |
+
},
|
46 |
+
"32002": {
|
47 |
+
"content": "<|placeholder1|>",
|
48 |
+
"lstrip": false,
|
49 |
+
"normalized": false,
|
50 |
+
"rstrip": true,
|
51 |
+
"single_word": false,
|
52 |
+
"special": true
|
53 |
+
},
|
54 |
+
"32003": {
|
55 |
+
"content": "<|placeholder2|>",
|
56 |
+
"lstrip": false,
|
57 |
+
"normalized": false,
|
58 |
+
"rstrip": true,
|
59 |
+
"single_word": false,
|
60 |
+
"special": true
|
61 |
+
},
|
62 |
+
"32004": {
|
63 |
+
"content": "<|placeholder3|>",
|
64 |
+
"lstrip": false,
|
65 |
+
"normalized": false,
|
66 |
+
"rstrip": true,
|
67 |
+
"single_word": false,
|
68 |
+
"special": true
|
69 |
+
},
|
70 |
+
"32005": {
|
71 |
+
"content": "<|placeholder4|>",
|
72 |
+
"lstrip": false,
|
73 |
+
"normalized": false,
|
74 |
+
"rstrip": true,
|
75 |
+
"single_word": false,
|
76 |
+
"special": true
|
77 |
+
},
|
78 |
+
"32006": {
|
79 |
+
"content": "<|system|>",
|
80 |
+
"lstrip": false,
|
81 |
+
"normalized": false,
|
82 |
+
"rstrip": true,
|
83 |
+
"single_word": false,
|
84 |
+
"special": true
|
85 |
+
},
|
86 |
+
"32007": {
|
87 |
+
"content": "<|end|>",
|
88 |
+
"lstrip": false,
|
89 |
+
"normalized": false,
|
90 |
+
"rstrip": true,
|
91 |
+
"single_word": false,
|
92 |
+
"special": true
|
93 |
+
},
|
94 |
+
"32008": {
|
95 |
+
"content": "<|placeholder5|>",
|
96 |
+
"lstrip": false,
|
97 |
+
"normalized": false,
|
98 |
+
"rstrip": true,
|
99 |
+
"single_word": false,
|
100 |
+
"special": true
|
101 |
+
},
|
102 |
+
"32009": {
|
103 |
+
"content": "<|placeholder6|>",
|
104 |
+
"lstrip": false,
|
105 |
+
"normalized": false,
|
106 |
+
"rstrip": true,
|
107 |
+
"single_word": false,
|
108 |
+
"special": true
|
109 |
+
},
|
110 |
+
"32010": {
|
111 |
+
"content": "<|user|>",
|
112 |
+
"lstrip": false,
|
113 |
+
"normalized": false,
|
114 |
+
"rstrip": true,
|
115 |
+
"single_word": false,
|
116 |
+
"special": true
|
117 |
+
}
|
118 |
+
},
|
119 |
+
"bos_token": "<s>",
|
120 |
+
"chat_template": "{% for message in messages %}{% if message['role'] == 'system' and message['content'] %}{{'<|system|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'user' %}{{'<|user|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>\n' + message['content'] + '<|end|>\n'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>\n' }}{% else %}{{ eos_token }}{% endif %}",
|
121 |
+
"clean_up_tokenization_spaces": false,
|
122 |
+
"eos_token": "<|endoftext|>",
|
123 |
+
"legacy": false,
|
124 |
+
"max_length": 4000,
|
125 |
+
"model_max_length": 131072,
|
126 |
+
"pad_to_multiple_of": null,
|
127 |
+
"pad_token": "<|endoftext|>",
|
128 |
+
"pad_token_type_id": 0,
|
129 |
+
"padding_side": "left",
|
130 |
+
"sp_model_kwargs": {},
|
131 |
+
"stride": 0,
|
132 |
+
"tokenizer_class": "LlamaTokenizer",
|
133 |
+
"truncation_side": "right",
|
134 |
+
"truncation_strategy": "longest_first",
|
135 |
+
"unk_token": "<unk>",
|
136 |
+
"use_default_system_prompt": false
|
137 |
+
}
|