mrfakename commited on
Commit
2a0a705
·
verified ·
1 Parent(s): f8f299f

Upload folder using huggingface_hub

Browse files
chat_template.jinja ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {#- Default system message if no system prompt is passed. #}
2
+ {%- set default_system_message = 'You are Ministral-3-8B-Instruct-2512, a Large Language Model (LLM) created by Mistral AI, a French startup headquartered in Paris.\nYou power an AI assistant called Le Chat.\nYour knowledge base was last updated on 2023-10-01.\nThe current date is {today}.\n\nWhen you\'re not sure about some information or when the user\'s request requires up-to-date or specific data, you must use the available tools to fetch the information. Do not hesitate to use tools whenever they can provide a more accurate or complete response. If no relevant tools are available, then clearly state that you don\'t have the information and avoid making up anything.\nIf the user\'s question is not clear, ambiguous, or does not provide enough context for you to accurately answer the question, you do not try to answer it right away and you rather ask the user to clarify their request (e.g. "What are some good restaurants around me?" => "Where are you?" or "When is the next flight to Tokyo" => "Where do you travel from?").\nYou are always very attentive to dates, in particular you try to resolve dates (e.g. "yesterday" is {yesterday}) and when asked about information at specific dates, you discard information that is at another date.\nYou follow these instructions in all languages, and always respond to the user in the language they use or request.\nNext sections describe the capabilities that you have.\n\n# WEB BROWSING INSTRUCTIONS\n\nYou cannot perform any web search or access internet to open URLs, links etc. If it seems like the user is expecting you to do so, you clarify the situation and ask the user to copy paste the text directly in the chat.\n\n# MULTI-MODAL INSTRUCTIONS\n\nYou have the ability to read images, but you cannot generate images. You also cannot transcribe audio files or videos.\nYou cannot read nor transcribe audio files or videos.\n\n# TOOL CALLING INSTRUCTIONS\n\nYou may have access to tools that you can use to fetch information or perform actions. You must use these tools in the following situations:\n\n1. When the request requires up-to-date information.\n2. When the request requires specific data that you do not have in your knowledge base.\n3. When the request involves actions that you cannot perform without tools.\n\nAlways prioritize using tools to provide the most accurate and helpful response. If tools are not available, inform the user that you cannot perform the requested action at the moment.' %}
3
+
4
+ {#- Begin of sequence token. #}
5
+ {{- bos_token }}
6
+
7
+ {#- Handle system prompt if it exists. #}
8
+ {#- System prompt supports text content or text chunks. #}
9
+ {%- if messages[0]['role'] == 'system' %}
10
+ {{- '[SYSTEM_PROMPT]' -}}
11
+ {%- if messages[0]['content'] is string %}
12
+ {{- messages[0]['content'] -}}
13
+ {%- else %}
14
+ {%- for block in messages[0]['content'] %}
15
+ {%- if block['type'] == 'text' %}
16
+ {{- block['text'] }}
17
+ {%- else %}
18
+ {{- raise_exception('Only text chunks are supported in system message contents.') }}
19
+ {%- endif %}
20
+ {%- endfor %}
21
+ {%- endif %}
22
+ {{- '[/SYSTEM_PROMPT]' -}}
23
+ {%- set loop_messages = messages[1:] %}
24
+ {%- else %}
25
+ {%- set loop_messages = messages %}
26
+ {%- if default_system_message != '' %}
27
+ {{- '[SYSTEM_PROMPT]' + default_system_message + '[/SYSTEM_PROMPT]' }}
28
+ {%- endif %}
29
+ {%- endif %}
30
+
31
+
32
+ {#- Tools definition #}
33
+ {%- set tools_definition = '' %}
34
+ {%- set has_tools = false %}
35
+ {%- if tools is defined and tools is not none and tools|length > 0 %}
36
+ {%- set has_tools = true %}
37
+ {%- set tools_definition = '[AVAILABLE_TOOLS]' + (tools| tojson) + '[/AVAILABLE_TOOLS]' %}
38
+ {{- tools_definition }}
39
+ {%- endif %}
40
+
41
+ {#- Checks for alternating user/assistant messages. #}
42
+ {%- set ns = namespace(index=0) %}
43
+ {%- for message in loop_messages %}
44
+ {%- if message.role == 'user' or (message.role == 'assistant' and (message.tool_calls is not defined or message.tool_calls is none or message.tool_calls | length == 0)) %}
45
+ {%- if (message['role'] == 'user') != (ns.index % 2 == 0) %}
46
+ {{- raise_exception('After the optional system message, conversation roles must alternate user and assistant roles except for tool calls and results.') }}
47
+ {%- endif %}
48
+ {%- set ns.index = ns.index + 1 %}
49
+ {%- endif %}
50
+ {%- endfor %}
51
+
52
+ {#- Handle conversation messages. #}
53
+ {%- for message in loop_messages %}
54
+
55
+ {#- User messages supports text content or text and image chunks. #}
56
+ {%- if message['role'] == 'user' %}
57
+ {%- if message['content'] is string %}
58
+ {{- '[INST]' + message['content'] + '[/INST]' }}
59
+ {%- elif message['content'] | length > 0 %}
60
+ {{- '[INST]' }}
61
+ {%- if message['content'] | length == 2 %}
62
+ {%- set blocks = message['content'] | sort(attribute='type') %}
63
+ {%- else %}
64
+ {%- set blocks = message['content'] %}
65
+ {%- endif %}
66
+ {%- for block in blocks %}
67
+ {%- if block['type'] == 'text' %}
68
+ {{- block['text'] }}
69
+ {%- elif block['type'] in ['image', 'image_url'] %}
70
+ {{- '[IMG]' }}
71
+ {%- else %}
72
+ {{- raise_exception('Only text, image and image_url chunks are supported in user message content.') }}
73
+ {%- endif %}
74
+ {%- endfor %}
75
+ {{- '[/INST]' }}
76
+ {%- else %}
77
+ {{- raise_exception('User message must have a string or a list of chunks in content') }}
78
+ {%- endif %}
79
+
80
+ {#- Assistant messages supports text content or text and image chunks. #}
81
+ {%- elif message['role'] == 'assistant' %}
82
+ {%- if (message['content'] is none or message['content'] == '' or message['content']|length == 0) and (message['tool_calls'] is not defined or message['tool_calls'] is none or message['tool_calls']|length == 0) %}
83
+ {{- raise_exception('Assistant message must have a string or a list of chunks in content or a list of tool calls.') }}
84
+ {%- endif %}
85
+
86
+ {%- if message['content'] is string %}
87
+ {{- message['content'] }}
88
+ {%- elif message['content'] | length > 0 %}
89
+ {%- for block in message['content'] %}
90
+ {%- if block['type'] == 'text' %}
91
+ {{- block['text'] }}
92
+ {%- else %}
93
+ {{- raise_exception('Only text chunks are supported in assistant message contents.') }}
94
+ {%- endif %}
95
+ {%- endfor %}
96
+ {%- endif %}
97
+
98
+ {%- if message['tool_calls'] is defined and message['tool_calls'] is not none and message['tool_calls']|length > 0 %}
99
+ {%- for tool in message['tool_calls'] %}
100
+ {%- set arguments = tool['function']['arguments'] %}
101
+ {%- if arguments is not string %}
102
+ {%- set arguments = arguments|tojson|safe %}
103
+ {%- elif arguments == '' %}
104
+ {%- set arguments = '{}' %}
105
+ {%- endif %}
106
+ {{- '[TOOL_CALLS]' + tool['function']['name'] + '[ARGS]' + arguments }}
107
+ {%- endfor %}
108
+ {%- endif %}
109
+
110
+ {#- End of sequence token for each assistant messages. #}
111
+ {{- eos_token }}
112
+
113
+ {#- Tool messages only supports text content. #}
114
+ {%- elif message['role'] == 'tool' %}
115
+ {{- '[TOOL_RESULTS]' + message['content']|string + '[/TOOL_RESULTS]' }}
116
+
117
+ {#- Raise exception for unsupported roles. #}
118
+ {%- else %}
119
+ {{- raise_exception('Only user, assistant and tool roles are supported, got ' + message['role'] + '.') }}
120
+ {%- endif %}
121
+ {%- endfor %}
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:88317e337902389ac038c60a458967d43bf82492e665b2a9f74fdfee76848139
3
- size 9563643372
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b40acb4f97417aee271f889a165459dd3b66aaa501a2a8f88fe83c1d319a8736
3
+ size 16979144064
model.safetensors.index.json CHANGED
@@ -1,8 +1,10 @@
1
  {
2
  "metadata": {
3
- "total_size": 9563578844
4
  },
5
  "weight_map": {
 
 
6
  "model.layers.0.input_layernorm.weight": "model.safetensors",
7
  "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
8
  "model.layers.1.input_layernorm.weight": "model.safetensors",
@@ -14,6 +16,113 @@
14
  "model.layers.12.input_layernorm.weight": "model.safetensors",
15
  "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
16
  "model.layers.13.input_layernorm.weight": "model.safetensors",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
18
  "model.layers.14.input_layernorm.weight": "model.safetensors",
19
  "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
@@ -27,8 +136,6 @@
27
  "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
28
  "model.layers.19.input_layernorm.weight": "model.safetensors",
29
  "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
30
- "model.layers.2.input_layernorm.weight": "model.safetensors",
31
- "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
32
  "model.layers.20.input_layernorm.weight": "model.safetensors",
33
  "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
34
  "model.layers.21.input_layernorm.weight": "model.safetensors",
@@ -49,8 +156,6 @@
49
  "model.layers.28.post_attention_layernorm.weight": "model.safetensors",
50
  "model.layers.29.input_layernorm.weight": "model.safetensors",
51
  "model.layers.29.post_attention_layernorm.weight": "model.safetensors",
52
- "model.layers.3.input_layernorm.weight": "model.safetensors",
53
- "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
54
  "model.layers.30.input_layernorm.weight": "model.safetensors",
55
  "model.layers.30.post_attention_layernorm.weight": "model.safetensors",
56
  "model.layers.31.input_layernorm.weight": "model.safetensors",
@@ -59,496 +164,153 @@
59
  "model.layers.32.post_attention_layernorm.weight": "model.safetensors",
60
  "model.layers.33.input_layernorm.weight": "model.safetensors",
61
  "model.layers.33.post_attention_layernorm.weight": "model.safetensors",
62
- "model.layers.4.input_layernorm.weight": "model.safetensors",
63
- "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
64
- "model.layers.5.input_layernorm.weight": "model.safetensors",
65
- "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
66
- "model.layers.6.input_layernorm.weight": "model.safetensors",
67
- "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
68
- "model.layers.7.input_layernorm.weight": "model.safetensors",
69
- "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
70
- "model.layers.8.input_layernorm.weight": "model.safetensors",
71
- "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
72
- "model.layers.9.input_layernorm.weight": "model.safetensors",
73
- "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
74
  "model.norm.weight": "model.safetensors",
75
- "lm_head.weight": "model.safetensors",
76
- "model.embed_tokens.weight": "model.safetensors",
77
- "model.layers.0.self_attn.k_proj.weight": "model.safetensors",
78
- "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
79
- "model.layers.0.self_attn.q_proj.weight": "model.safetensors",
80
- "model.layers.0.self_attn.v_proj.weight": "model.safetensors",
81
- "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
82
- "model.layers.0.mlp.down_proj.weight": "model.safetensors",
83
- "model.layers.0.mlp.up_proj.weight": "model.safetensors",
84
- "model.layers.1.self_attn.k_proj.weight": "model.safetensors",
85
- "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
86
- "model.layers.1.self_attn.q_proj.weight": "model.safetensors",
87
- "model.layers.1.self_attn.v_proj.weight": "model.safetensors",
88
- "model.layers.1.mlp.gate_proj.weight": "model.safetensors",
89
- "model.layers.1.mlp.down_proj.weight": "model.safetensors",
90
- "model.layers.1.mlp.up_proj.weight": "model.safetensors",
91
- "model.layers.10.self_attn.k_proj.weight": "model.safetensors",
92
- "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
93
- "model.layers.10.self_attn.q_proj.weight": "model.safetensors",
94
- "model.layers.10.self_attn.v_proj.weight": "model.safetensors",
95
- "model.layers.10.mlp.gate_proj.weight": "model.safetensors",
96
- "model.layers.10.mlp.down_proj.weight": "model.safetensors",
97
- "model.layers.10.mlp.up_proj.weight": "model.safetensors",
98
- "model.layers.11.self_attn.k_proj.weight": "model.safetensors",
99
- "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
100
- "model.layers.11.self_attn.q_proj.weight": "model.safetensors",
101
- "model.layers.11.self_attn.v_proj.weight": "model.safetensors",
102
- "model.layers.11.mlp.gate_proj.weight": "model.safetensors",
103
- "model.layers.11.mlp.down_proj.weight": "model.safetensors",
104
- "model.layers.11.mlp.up_proj.weight": "model.safetensors",
105
- "model.layers.12.self_attn.k_proj.weight": "model.safetensors",
106
- "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
107
- "model.layers.12.self_attn.q_proj.weight": "model.safetensors",
108
- "model.layers.12.self_attn.v_proj.weight": "model.safetensors",
109
- "model.layers.12.mlp.gate_proj.weight": "model.safetensors",
110
- "model.layers.12.mlp.down_proj.weight": "model.safetensors",
111
- "model.layers.12.mlp.up_proj.weight": "model.safetensors",
112
  "model.layers.13.self_attn.k_proj.weight": "model.safetensors",
113
  "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
114
  "model.layers.13.self_attn.q_proj.weight": "model.safetensors",
115
  "model.layers.13.self_attn.v_proj.weight": "model.safetensors",
116
- "model.layers.13.mlp.gate_proj.weight": "model.safetensors",
117
- "model.layers.13.mlp.down_proj.weight": "model.safetensors",
118
- "model.layers.13.mlp.up_proj.weight": "model.safetensors",
119
  "model.layers.14.self_attn.k_proj.weight": "model.safetensors",
120
  "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
121
  "model.layers.14.self_attn.q_proj.weight": "model.safetensors",
122
  "model.layers.14.self_attn.v_proj.weight": "model.safetensors",
123
- "model.layers.14.mlp.gate_proj.weight": "model.safetensors",
124
- "model.layers.14.mlp.down_proj.weight": "model.safetensors",
125
- "model.layers.14.mlp.up_proj.weight": "model.safetensors",
126
  "model.layers.15.self_attn.k_proj.weight": "model.safetensors",
127
  "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
128
  "model.layers.15.self_attn.q_proj.weight": "model.safetensors",
129
  "model.layers.15.self_attn.v_proj.weight": "model.safetensors",
130
- "model.layers.15.mlp.gate_proj.weight": "model.safetensors",
131
- "model.layers.15.mlp.down_proj.weight": "model.safetensors",
132
- "model.layers.15.mlp.up_proj.weight": "model.safetensors",
133
  "model.layers.16.self_attn.k_proj.weight": "model.safetensors",
134
  "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
135
  "model.layers.16.self_attn.q_proj.weight": "model.safetensors",
136
  "model.layers.16.self_attn.v_proj.weight": "model.safetensors",
137
- "model.layers.16.mlp.gate_proj.weight": "model.safetensors",
138
- "model.layers.16.mlp.down_proj.weight": "model.safetensors",
139
- "model.layers.16.mlp.up_proj.weight": "model.safetensors",
140
  "model.layers.17.self_attn.k_proj.weight": "model.safetensors",
141
  "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
142
  "model.layers.17.self_attn.q_proj.weight": "model.safetensors",
143
  "model.layers.17.self_attn.v_proj.weight": "model.safetensors",
144
- "model.layers.17.mlp.gate_proj.weight": "model.safetensors",
145
- "model.layers.17.mlp.down_proj.weight": "model.safetensors",
146
- "model.layers.17.mlp.up_proj.weight": "model.safetensors",
147
  "model.layers.18.self_attn.k_proj.weight": "model.safetensors",
148
  "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
149
  "model.layers.18.self_attn.q_proj.weight": "model.safetensors",
150
  "model.layers.18.self_attn.v_proj.weight": "model.safetensors",
151
- "model.layers.18.mlp.gate_proj.weight": "model.safetensors",
152
- "model.layers.18.mlp.down_proj.weight": "model.safetensors",
153
- "model.layers.18.mlp.up_proj.weight": "model.safetensors",
154
  "model.layers.19.self_attn.k_proj.weight": "model.safetensors",
155
  "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
156
  "model.layers.19.self_attn.q_proj.weight": "model.safetensors",
157
  "model.layers.19.self_attn.v_proj.weight": "model.safetensors",
158
- "model.layers.19.mlp.gate_proj.weight": "model.safetensors",
159
- "model.layers.19.mlp.down_proj.weight": "model.safetensors",
160
- "model.layers.19.mlp.up_proj.weight": "model.safetensors",
161
- "model.layers.2.self_attn.k_proj.weight": "model.safetensors",
162
- "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
163
- "model.layers.2.self_attn.q_proj.weight": "model.safetensors",
164
- "model.layers.2.self_attn.v_proj.weight": "model.safetensors",
165
- "model.layers.2.mlp.gate_proj.weight": "model.safetensors",
166
- "model.layers.2.mlp.down_proj.weight": "model.safetensors",
167
- "model.layers.2.mlp.up_proj.weight": "model.safetensors",
168
  "model.layers.20.self_attn.k_proj.weight": "model.safetensors",
169
  "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
170
  "model.layers.20.self_attn.q_proj.weight": "model.safetensors",
171
  "model.layers.20.self_attn.v_proj.weight": "model.safetensors",
172
- "model.layers.20.mlp.gate_proj.weight": "model.safetensors",
173
- "model.layers.20.mlp.down_proj.weight": "model.safetensors",
174
- "model.layers.20.mlp.up_proj.weight": "model.safetensors",
175
  "model.layers.21.self_attn.k_proj.weight": "model.safetensors",
176
  "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
177
  "model.layers.21.self_attn.q_proj.weight": "model.safetensors",
178
  "model.layers.21.self_attn.v_proj.weight": "model.safetensors",
179
- "model.layers.21.mlp.gate_proj.weight": "model.safetensors",
180
- "model.layers.21.mlp.down_proj.weight": "model.safetensors",
181
- "model.layers.21.mlp.up_proj.weight": "model.safetensors",
182
  "model.layers.22.self_attn.k_proj.weight": "model.safetensors",
183
  "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
184
  "model.layers.22.self_attn.q_proj.weight": "model.safetensors",
185
  "model.layers.22.self_attn.v_proj.weight": "model.safetensors",
186
- "model.layers.22.mlp.gate_proj.weight": "model.safetensors",
187
- "model.layers.22.mlp.down_proj.weight": "model.safetensors",
188
- "model.layers.22.mlp.up_proj.weight": "model.safetensors",
189
  "model.layers.23.self_attn.k_proj.weight": "model.safetensors",
190
  "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
191
  "model.layers.23.self_attn.q_proj.weight": "model.safetensors",
192
  "model.layers.23.self_attn.v_proj.weight": "model.safetensors",
193
- "model.layers.23.mlp.gate_proj.weight": "model.safetensors",
194
- "model.layers.23.mlp.down_proj.weight": "model.safetensors",
195
- "model.layers.23.mlp.up_proj.weight": "model.safetensors",
196
  "model.layers.24.self_attn.k_proj.weight": "model.safetensors",
197
  "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
198
  "model.layers.24.self_attn.q_proj.weight": "model.safetensors",
199
  "model.layers.24.self_attn.v_proj.weight": "model.safetensors",
200
- "model.layers.24.mlp.gate_proj.weight": "model.safetensors",
201
- "model.layers.24.mlp.down_proj.weight": "model.safetensors",
202
- "model.layers.24.mlp.up_proj.weight": "model.safetensors",
203
  "model.layers.25.self_attn.k_proj.weight": "model.safetensors",
204
  "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
205
  "model.layers.25.self_attn.q_proj.weight": "model.safetensors",
206
  "model.layers.25.self_attn.v_proj.weight": "model.safetensors",
207
- "model.layers.25.mlp.gate_proj.weight": "model.safetensors",
208
- "model.layers.25.mlp.down_proj.weight": "model.safetensors",
209
- "model.layers.25.mlp.up_proj.weight": "model.safetensors",
210
  "model.layers.26.self_attn.k_proj.weight": "model.safetensors",
211
  "model.layers.26.self_attn.o_proj.weight": "model.safetensors",
212
  "model.layers.26.self_attn.q_proj.weight": "model.safetensors",
213
  "model.layers.26.self_attn.v_proj.weight": "model.safetensors",
214
- "model.layers.26.mlp.gate_proj.weight": "model.safetensors",
215
- "model.layers.26.mlp.down_proj.weight": "model.safetensors",
216
- "model.layers.26.mlp.up_proj.weight": "model.safetensors",
217
  "model.layers.27.self_attn.k_proj.weight": "model.safetensors",
218
  "model.layers.27.self_attn.o_proj.weight": "model.safetensors",
219
  "model.layers.27.self_attn.q_proj.weight": "model.safetensors",
220
  "model.layers.27.self_attn.v_proj.weight": "model.safetensors",
221
- "model.layers.27.mlp.gate_proj.weight": "model.safetensors",
222
- "model.layers.27.mlp.down_proj.weight": "model.safetensors",
223
- "model.layers.27.mlp.up_proj.weight": "model.safetensors",
224
  "model.layers.28.self_attn.k_proj.weight": "model.safetensors",
225
  "model.layers.28.self_attn.o_proj.weight": "model.safetensors",
226
  "model.layers.28.self_attn.q_proj.weight": "model.safetensors",
227
  "model.layers.28.self_attn.v_proj.weight": "model.safetensors",
228
- "model.layers.28.mlp.gate_proj.weight": "model.safetensors",
229
- "model.layers.28.mlp.down_proj.weight": "model.safetensors",
230
- "model.layers.28.mlp.up_proj.weight": "model.safetensors",
231
  "model.layers.29.self_attn.k_proj.weight": "model.safetensors",
232
  "model.layers.29.self_attn.o_proj.weight": "model.safetensors",
233
  "model.layers.29.self_attn.q_proj.weight": "model.safetensors",
234
  "model.layers.29.self_attn.v_proj.weight": "model.safetensors",
235
- "model.layers.29.mlp.gate_proj.weight": "model.safetensors",
236
- "model.layers.29.mlp.down_proj.weight": "model.safetensors",
237
- "model.layers.29.mlp.up_proj.weight": "model.safetensors",
238
- "model.layers.3.self_attn.k_proj.weight": "model.safetensors",
239
- "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
240
- "model.layers.3.self_attn.q_proj.weight": "model.safetensors",
241
- "model.layers.3.self_attn.v_proj.weight": "model.safetensors",
242
- "model.layers.3.mlp.gate_proj.weight": "model.safetensors",
243
- "model.layers.3.mlp.down_proj.weight": "model.safetensors",
244
- "model.layers.3.mlp.up_proj.weight": "model.safetensors",
245
  "model.layers.30.self_attn.k_proj.weight": "model.safetensors",
246
  "model.layers.30.self_attn.o_proj.weight": "model.safetensors",
247
  "model.layers.30.self_attn.q_proj.weight": "model.safetensors",
248
  "model.layers.30.self_attn.v_proj.weight": "model.safetensors",
249
- "model.layers.30.mlp.gate_proj.weight": "model.safetensors",
250
- "model.layers.30.mlp.down_proj.weight": "model.safetensors",
251
- "model.layers.30.mlp.up_proj.weight": "model.safetensors",
252
  "model.layers.31.self_attn.k_proj.weight": "model.safetensors",
253
  "model.layers.31.self_attn.o_proj.weight": "model.safetensors",
254
  "model.layers.31.self_attn.q_proj.weight": "model.safetensors",
255
  "model.layers.31.self_attn.v_proj.weight": "model.safetensors",
256
- "model.layers.31.mlp.gate_proj.weight": "model.safetensors",
257
- "model.layers.31.mlp.down_proj.weight": "model.safetensors",
258
- "model.layers.31.mlp.up_proj.weight": "model.safetensors",
259
  "model.layers.32.self_attn.k_proj.weight": "model.safetensors",
260
  "model.layers.32.self_attn.o_proj.weight": "model.safetensors",
261
  "model.layers.32.self_attn.q_proj.weight": "model.safetensors",
262
  "model.layers.32.self_attn.v_proj.weight": "model.safetensors",
263
- "model.layers.32.mlp.gate_proj.weight": "model.safetensors",
264
- "model.layers.32.mlp.down_proj.weight": "model.safetensors",
265
- "model.layers.32.mlp.up_proj.weight": "model.safetensors",
266
  "model.layers.33.self_attn.k_proj.weight": "model.safetensors",
267
  "model.layers.33.self_attn.o_proj.weight": "model.safetensors",
268
  "model.layers.33.self_attn.q_proj.weight": "model.safetensors",
269
- "model.layers.33.self_attn.v_proj.weight": "model.safetensors",
270
- "model.layers.33.mlp.gate_proj.weight": "model.safetensors",
271
- "model.layers.33.mlp.down_proj.weight": "model.safetensors",
272
- "model.layers.33.mlp.up_proj.weight": "model.safetensors",
273
- "model.layers.4.self_attn.k_proj.weight": "model.safetensors",
274
- "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
275
- "model.layers.4.self_attn.q_proj.weight": "model.safetensors",
276
- "model.layers.4.self_attn.v_proj.weight": "model.safetensors",
277
- "model.layers.4.mlp.gate_proj.weight": "model.safetensors",
278
- "model.layers.4.mlp.down_proj.weight": "model.safetensors",
279
- "model.layers.4.mlp.up_proj.weight": "model.safetensors",
280
- "model.layers.5.self_attn.k_proj.weight": "model.safetensors",
281
- "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
282
- "model.layers.5.self_attn.q_proj.weight": "model.safetensors",
283
- "model.layers.5.self_attn.v_proj.weight": "model.safetensors",
284
- "model.layers.5.mlp.gate_proj.weight": "model.safetensors",
285
- "model.layers.5.mlp.down_proj.weight": "model.safetensors",
286
- "model.layers.5.mlp.up_proj.weight": "model.safetensors",
287
- "model.layers.6.self_attn.k_proj.weight": "model.safetensors",
288
- "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
289
- "model.layers.6.self_attn.q_proj.weight": "model.safetensors",
290
- "model.layers.6.self_attn.v_proj.weight": "model.safetensors",
291
- "model.layers.6.mlp.gate_proj.weight": "model.safetensors",
292
- "model.layers.6.mlp.down_proj.weight": "model.safetensors",
293
- "model.layers.6.mlp.up_proj.weight": "model.safetensors",
294
- "model.layers.7.self_attn.k_proj.weight": "model.safetensors",
295
- "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
296
- "model.layers.7.self_attn.q_proj.weight": "model.safetensors",
297
- "model.layers.7.self_attn.v_proj.weight": "model.safetensors",
298
- "model.layers.7.mlp.gate_proj.weight": "model.safetensors",
299
- "model.layers.7.mlp.down_proj.weight": "model.safetensors",
300
- "model.layers.7.mlp.up_proj.weight": "model.safetensors",
301
- "model.layers.8.self_attn.k_proj.weight": "model.safetensors",
302
- "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
303
- "model.layers.8.self_attn.q_proj.weight": "model.safetensors",
304
- "model.layers.8.self_attn.v_proj.weight": "model.safetensors",
305
- "model.layers.8.mlp.gate_proj.weight": "model.safetensors",
306
- "model.layers.8.mlp.down_proj.weight": "model.safetensors",
307
- "model.layers.8.mlp.up_proj.weight": "model.safetensors",
308
- "model.layers.9.self_attn.k_proj.weight": "model.safetensors",
309
- "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
310
- "model.layers.9.self_attn.q_proj.weight": "model.safetensors",
311
- "model.layers.9.self_attn.v_proj.weight": "model.safetensors",
312
- "model.layers.9.mlp.gate_proj.weight": "model.safetensors",
313
- "model.layers.9.mlp.down_proj.weight": "model.safetensors",
314
- "model.layers.9.mlp.up_proj.weight": "model.safetensors",
315
- "model.layers.0.mlp.down_proj.weight_scale_inv": "model.safetensors",
316
- "model.layers.0.mlp.gate_proj.weight_scale_inv": "model.safetensors",
317
- "model.layers.0.mlp.up_proj.weight_scale_inv": "model.safetensors",
318
- "model.layers.0.self_attn.k_proj.weight_scale_inv": "model.safetensors",
319
- "model.layers.0.self_attn.o_proj.weight_scale_inv": "model.safetensors",
320
- "model.layers.0.self_attn.q_proj.weight_scale_inv": "model.safetensors",
321
- "model.layers.0.self_attn.v_proj.weight_scale_inv": "model.safetensors",
322
- "model.layers.1.mlp.down_proj.weight_scale_inv": "model.safetensors",
323
- "model.layers.1.mlp.gate_proj.weight_scale_inv": "model.safetensors",
324
- "model.layers.1.mlp.up_proj.weight_scale_inv": "model.safetensors",
325
- "model.layers.1.self_attn.k_proj.weight_scale_inv": "model.safetensors",
326
- "model.layers.1.self_attn.o_proj.weight_scale_inv": "model.safetensors",
327
- "model.layers.1.self_attn.q_proj.weight_scale_inv": "model.safetensors",
328
- "model.layers.1.self_attn.v_proj.weight_scale_inv": "model.safetensors",
329
- "model.layers.10.mlp.down_proj.weight_scale_inv": "model.safetensors",
330
- "model.layers.10.mlp.gate_proj.weight_scale_inv": "model.safetensors",
331
- "model.layers.10.mlp.up_proj.weight_scale_inv": "model.safetensors",
332
- "model.layers.10.self_attn.k_proj.weight_scale_inv": "model.safetensors",
333
- "model.layers.10.self_attn.o_proj.weight_scale_inv": "model.safetensors",
334
- "model.layers.10.self_attn.q_proj.weight_scale_inv": "model.safetensors",
335
- "model.layers.10.self_attn.v_proj.weight_scale_inv": "model.safetensors",
336
- "model.layers.11.mlp.down_proj.weight_scale_inv": "model.safetensors",
337
- "model.layers.11.mlp.gate_proj.weight_scale_inv": "model.safetensors",
338
- "model.layers.11.mlp.up_proj.weight_scale_inv": "model.safetensors",
339
- "model.layers.11.self_attn.k_proj.weight_scale_inv": "model.safetensors",
340
- "model.layers.11.self_attn.o_proj.weight_scale_inv": "model.safetensors",
341
- "model.layers.11.self_attn.q_proj.weight_scale_inv": "model.safetensors",
342
- "model.layers.11.self_attn.v_proj.weight_scale_inv": "model.safetensors",
343
- "model.layers.12.mlp.down_proj.weight_scale_inv": "model.safetensors",
344
- "model.layers.12.mlp.gate_proj.weight_scale_inv": "model.safetensors",
345
- "model.layers.12.mlp.up_proj.weight_scale_inv": "model.safetensors",
346
- "model.layers.12.self_attn.k_proj.weight_scale_inv": "model.safetensors",
347
- "model.layers.12.self_attn.o_proj.weight_scale_inv": "model.safetensors",
348
- "model.layers.12.self_attn.q_proj.weight_scale_inv": "model.safetensors",
349
- "model.layers.12.self_attn.v_proj.weight_scale_inv": "model.safetensors",
350
- "model.layers.2.mlp.down_proj.weight_scale_inv": "model.safetensors",
351
- "model.layers.2.mlp.gate_proj.weight_scale_inv": "model.safetensors",
352
- "model.layers.2.mlp.up_proj.weight_scale_inv": "model.safetensors",
353
- "model.layers.2.self_attn.k_proj.weight_scale_inv": "model.safetensors",
354
- "model.layers.2.self_attn.o_proj.weight_scale_inv": "model.safetensors",
355
- "model.layers.2.self_attn.q_proj.weight_scale_inv": "model.safetensors",
356
- "model.layers.2.self_attn.v_proj.weight_scale_inv": "model.safetensors",
357
- "model.layers.3.mlp.down_proj.weight_scale_inv": "model.safetensors",
358
- "model.layers.3.mlp.gate_proj.weight_scale_inv": "model.safetensors",
359
- "model.layers.3.mlp.up_proj.weight_scale_inv": "model.safetensors",
360
- "model.layers.3.self_attn.k_proj.weight_scale_inv": "model.safetensors",
361
- "model.layers.3.self_attn.o_proj.weight_scale_inv": "model.safetensors",
362
- "model.layers.3.self_attn.q_proj.weight_scale_inv": "model.safetensors",
363
- "model.layers.3.self_attn.v_proj.weight_scale_inv": "model.safetensors",
364
- "model.layers.4.mlp.down_proj.weight_scale_inv": "model.safetensors",
365
- "model.layers.4.mlp.gate_proj.weight_scale_inv": "model.safetensors",
366
- "model.layers.4.mlp.up_proj.weight_scale_inv": "model.safetensors",
367
- "model.layers.4.self_attn.k_proj.weight_scale_inv": "model.safetensors",
368
- "model.layers.4.self_attn.o_proj.weight_scale_inv": "model.safetensors",
369
- "model.layers.4.self_attn.q_proj.weight_scale_inv": "model.safetensors",
370
- "model.layers.4.self_attn.v_proj.weight_scale_inv": "model.safetensors",
371
- "model.layers.5.mlp.down_proj.weight_scale_inv": "model.safetensors",
372
- "model.layers.5.mlp.gate_proj.weight_scale_inv": "model.safetensors",
373
- "model.layers.5.mlp.up_proj.weight_scale_inv": "model.safetensors",
374
- "model.layers.5.self_attn.k_proj.weight_scale_inv": "model.safetensors",
375
- "model.layers.5.self_attn.o_proj.weight_scale_inv": "model.safetensors",
376
- "model.layers.5.self_attn.q_proj.weight_scale_inv": "model.safetensors",
377
- "model.layers.5.self_attn.v_proj.weight_scale_inv": "model.safetensors",
378
- "model.layers.6.mlp.down_proj.weight_scale_inv": "model.safetensors",
379
- "model.layers.6.mlp.gate_proj.weight_scale_inv": "model.safetensors",
380
- "model.layers.6.mlp.up_proj.weight_scale_inv": "model.safetensors",
381
- "model.layers.6.self_attn.k_proj.weight_scale_inv": "model.safetensors",
382
- "model.layers.6.self_attn.o_proj.weight_scale_inv": "model.safetensors",
383
- "model.layers.6.self_attn.q_proj.weight_scale_inv": "model.safetensors",
384
- "model.layers.6.self_attn.v_proj.weight_scale_inv": "model.safetensors",
385
- "model.layers.7.mlp.down_proj.weight_scale_inv": "model.safetensors",
386
- "model.layers.7.mlp.gate_proj.weight_scale_inv": "model.safetensors",
387
- "model.layers.7.mlp.up_proj.weight_scale_inv": "model.safetensors",
388
- "model.layers.7.self_attn.k_proj.weight_scale_inv": "model.safetensors",
389
- "model.layers.7.self_attn.o_proj.weight_scale_inv": "model.safetensors",
390
- "model.layers.7.self_attn.q_proj.weight_scale_inv": "model.safetensors",
391
- "model.layers.7.self_attn.v_proj.weight_scale_inv": "model.safetensors",
392
- "model.layers.8.mlp.down_proj.weight_scale_inv": "model.safetensors",
393
- "model.layers.8.mlp.gate_proj.weight_scale_inv": "model.safetensors",
394
- "model.layers.8.mlp.up_proj.weight_scale_inv": "model.safetensors",
395
- "model.layers.8.self_attn.k_proj.weight_scale_inv": "model.safetensors",
396
- "model.layers.8.self_attn.o_proj.weight_scale_inv": "model.safetensors",
397
- "model.layers.8.self_attn.q_proj.weight_scale_inv": "model.safetensors",
398
- "model.layers.8.self_attn.v_proj.weight_scale_inv": "model.safetensors",
399
- "model.layers.9.mlp.down_proj.weight_scale_inv": "model.safetensors",
400
- "model.layers.9.mlp.gate_proj.weight_scale_inv": "model.safetensors",
401
- "model.layers.9.mlp.up_proj.weight_scale_inv": "model.safetensors",
402
- "model.layers.9.self_attn.k_proj.weight_scale_inv": "model.safetensors",
403
- "model.layers.9.self_attn.o_proj.weight_scale_inv": "model.safetensors",
404
- "model.layers.9.self_attn.q_proj.weight_scale_inv": "model.safetensors",
405
- "model.layers.9.self_attn.v_proj.weight_scale_inv": "model.safetensors",
406
- "model.layers.13.mlp.down_proj.weight_scale_inv": "model.safetensors",
407
- "model.layers.13.mlp.gate_proj.weight_scale_inv": "model.safetensors",
408
- "model.layers.13.mlp.up_proj.weight_scale_inv": "model.safetensors",
409
- "model.layers.13.self_attn.k_proj.weight_scale_inv": "model.safetensors",
410
- "model.layers.13.self_attn.o_proj.weight_scale_inv": "model.safetensors",
411
- "model.layers.13.self_attn.q_proj.weight_scale_inv": "model.safetensors",
412
- "model.layers.13.self_attn.v_proj.weight_scale_inv": "model.safetensors",
413
- "model.layers.14.mlp.down_proj.weight_scale_inv": "model.safetensors",
414
- "model.layers.14.mlp.gate_proj.weight_scale_inv": "model.safetensors",
415
- "model.layers.14.mlp.up_proj.weight_scale_inv": "model.safetensors",
416
- "model.layers.14.self_attn.k_proj.weight_scale_inv": "model.safetensors",
417
- "model.layers.14.self_attn.o_proj.weight_scale_inv": "model.safetensors",
418
- "model.layers.14.self_attn.q_proj.weight_scale_inv": "model.safetensors",
419
- "model.layers.14.self_attn.v_proj.weight_scale_inv": "model.safetensors",
420
- "model.layers.15.mlp.down_proj.weight_scale_inv": "model.safetensors",
421
- "model.layers.15.mlp.gate_proj.weight_scale_inv": "model.safetensors",
422
- "model.layers.15.mlp.up_proj.weight_scale_inv": "model.safetensors",
423
- "model.layers.15.self_attn.k_proj.weight_scale_inv": "model.safetensors",
424
- "model.layers.15.self_attn.o_proj.weight_scale_inv": "model.safetensors",
425
- "model.layers.15.self_attn.q_proj.weight_scale_inv": "model.safetensors",
426
- "model.layers.15.self_attn.v_proj.weight_scale_inv": "model.safetensors",
427
- "model.layers.16.mlp.down_proj.weight_scale_inv": "model.safetensors",
428
- "model.layers.16.mlp.gate_proj.weight_scale_inv": "model.safetensors",
429
- "model.layers.16.mlp.up_proj.weight_scale_inv": "model.safetensors",
430
- "model.layers.16.self_attn.k_proj.weight_scale_inv": "model.safetensors",
431
- "model.layers.16.self_attn.o_proj.weight_scale_inv": "model.safetensors",
432
- "model.layers.16.self_attn.q_proj.weight_scale_inv": "model.safetensors",
433
- "model.layers.16.self_attn.v_proj.weight_scale_inv": "model.safetensors",
434
- "model.layers.17.mlp.down_proj.weight_scale_inv": "model.safetensors",
435
- "model.layers.17.mlp.gate_proj.weight_scale_inv": "model.safetensors",
436
- "model.layers.17.mlp.up_proj.weight_scale_inv": "model.safetensors",
437
- "model.layers.17.self_attn.k_proj.weight_scale_inv": "model.safetensors",
438
- "model.layers.17.self_attn.o_proj.weight_scale_inv": "model.safetensors",
439
- "model.layers.17.self_attn.q_proj.weight_scale_inv": "model.safetensors",
440
- "model.layers.17.self_attn.v_proj.weight_scale_inv": "model.safetensors",
441
- "model.layers.18.mlp.down_proj.weight_scale_inv": "model.safetensors",
442
- "model.layers.18.mlp.gate_proj.weight_scale_inv": "model.safetensors",
443
- "model.layers.18.mlp.up_proj.weight_scale_inv": "model.safetensors",
444
- "model.layers.18.self_attn.k_proj.weight_scale_inv": "model.safetensors",
445
- "model.layers.18.self_attn.o_proj.weight_scale_inv": "model.safetensors",
446
- "model.layers.18.self_attn.q_proj.weight_scale_inv": "model.safetensors",
447
- "model.layers.18.self_attn.v_proj.weight_scale_inv": "model.safetensors",
448
- "model.layers.19.mlp.down_proj.weight_scale_inv": "model.safetensors",
449
- "model.layers.19.mlp.gate_proj.weight_scale_inv": "model.safetensors",
450
- "model.layers.19.mlp.up_proj.weight_scale_inv": "model.safetensors",
451
- "model.layers.19.self_attn.k_proj.weight_scale_inv": "model.safetensors",
452
- "model.layers.19.self_attn.o_proj.weight_scale_inv": "model.safetensors",
453
- "model.layers.19.self_attn.q_proj.weight_scale_inv": "model.safetensors",
454
- "model.layers.19.self_attn.v_proj.weight_scale_inv": "model.safetensors",
455
- "model.layers.20.mlp.down_proj.weight_scale_inv": "model.safetensors",
456
- "model.layers.20.mlp.gate_proj.weight_scale_inv": "model.safetensors",
457
- "model.layers.20.mlp.up_proj.weight_scale_inv": "model.safetensors",
458
- "model.layers.20.self_attn.k_proj.weight_scale_inv": "model.safetensors",
459
- "model.layers.20.self_attn.o_proj.weight_scale_inv": "model.safetensors",
460
- "model.layers.20.self_attn.q_proj.weight_scale_inv": "model.safetensors",
461
- "model.layers.20.self_attn.v_proj.weight_scale_inv": "model.safetensors",
462
- "model.layers.21.mlp.down_proj.weight_scale_inv": "model.safetensors",
463
- "model.layers.21.mlp.gate_proj.weight_scale_inv": "model.safetensors",
464
- "model.layers.21.mlp.up_proj.weight_scale_inv": "model.safetensors",
465
- "model.layers.21.self_attn.k_proj.weight_scale_inv": "model.safetensors",
466
- "model.layers.21.self_attn.o_proj.weight_scale_inv": "model.safetensors",
467
- "model.layers.21.self_attn.q_proj.weight_scale_inv": "model.safetensors",
468
- "model.layers.21.self_attn.v_proj.weight_scale_inv": "model.safetensors",
469
- "model.layers.22.mlp.down_proj.weight_scale_inv": "model.safetensors",
470
- "model.layers.22.mlp.gate_proj.weight_scale_inv": "model.safetensors",
471
- "model.layers.22.mlp.up_proj.weight_scale_inv": "model.safetensors",
472
- "model.layers.22.self_attn.k_proj.weight_scale_inv": "model.safetensors",
473
- "model.layers.22.self_attn.o_proj.weight_scale_inv": "model.safetensors",
474
- "model.layers.22.self_attn.q_proj.weight_scale_inv": "model.safetensors",
475
- "model.layers.22.self_attn.v_proj.weight_scale_inv": "model.safetensors",
476
- "model.layers.23.mlp.down_proj.weight_scale_inv": "model.safetensors",
477
- "model.layers.23.mlp.gate_proj.weight_scale_inv": "model.safetensors",
478
- "model.layers.23.mlp.up_proj.weight_scale_inv": "model.safetensors",
479
- "model.layers.23.self_attn.k_proj.weight_scale_inv": "model.safetensors",
480
- "model.layers.23.self_attn.o_proj.weight_scale_inv": "model.safetensors",
481
- "model.layers.23.self_attn.q_proj.weight_scale_inv": "model.safetensors",
482
- "model.layers.23.self_attn.v_proj.weight_scale_inv": "model.safetensors",
483
- "model.layers.24.mlp.down_proj.weight_scale_inv": "model.safetensors",
484
- "model.layers.24.mlp.gate_proj.weight_scale_inv": "model.safetensors",
485
- "model.layers.24.mlp.up_proj.weight_scale_inv": "model.safetensors",
486
- "model.layers.24.self_attn.k_proj.weight_scale_inv": "model.safetensors",
487
- "model.layers.24.self_attn.o_proj.weight_scale_inv": "model.safetensors",
488
- "model.layers.24.self_attn.q_proj.weight_scale_inv": "model.safetensors",
489
- "model.layers.24.self_attn.v_proj.weight_scale_inv": "model.safetensors",
490
- "model.layers.25.mlp.down_proj.weight_scale_inv": "model.safetensors",
491
- "model.layers.25.mlp.gate_proj.weight_scale_inv": "model.safetensors",
492
- "model.layers.25.mlp.up_proj.weight_scale_inv": "model.safetensors",
493
- "model.layers.25.self_attn.k_proj.weight_scale_inv": "model.safetensors",
494
- "model.layers.25.self_attn.o_proj.weight_scale_inv": "model.safetensors",
495
- "model.layers.25.self_attn.q_proj.weight_scale_inv": "model.safetensors",
496
- "model.layers.25.self_attn.v_proj.weight_scale_inv": "model.safetensors",
497
- "model.layers.26.mlp.down_proj.weight_scale_inv": "model.safetensors",
498
- "model.layers.26.mlp.gate_proj.weight_scale_inv": "model.safetensors",
499
- "model.layers.26.mlp.up_proj.weight_scale_inv": "model.safetensors",
500
- "model.layers.26.self_attn.k_proj.weight_scale_inv": "model.safetensors",
501
- "model.layers.26.self_attn.o_proj.weight_scale_inv": "model.safetensors",
502
- "model.layers.26.self_attn.q_proj.weight_scale_inv": "model.safetensors",
503
- "model.layers.26.self_attn.v_proj.weight_scale_inv": "model.safetensors",
504
- "model.layers.27.mlp.down_proj.weight_scale_inv": "model.safetensors",
505
- "model.layers.27.mlp.gate_proj.weight_scale_inv": "model.safetensors",
506
- "model.layers.27.mlp.up_proj.weight_scale_inv": "model.safetensors",
507
- "model.layers.27.self_attn.k_proj.weight_scale_inv": "model.safetensors",
508
- "model.layers.27.self_attn.o_proj.weight_scale_inv": "model.safetensors",
509
- "model.layers.27.self_attn.q_proj.weight_scale_inv": "model.safetensors",
510
- "model.layers.27.self_attn.v_proj.weight_scale_inv": "model.safetensors",
511
- "model.layers.28.mlp.down_proj.weight_scale_inv": "model.safetensors",
512
- "model.layers.28.mlp.gate_proj.weight_scale_inv": "model.safetensors",
513
- "model.layers.28.mlp.up_proj.weight_scale_inv": "model.safetensors",
514
- "model.layers.28.self_attn.k_proj.weight_scale_inv": "model.safetensors",
515
- "model.layers.28.self_attn.o_proj.weight_scale_inv": "model.safetensors",
516
- "model.layers.28.self_attn.q_proj.weight_scale_inv": "model.safetensors",
517
- "model.layers.28.self_attn.v_proj.weight_scale_inv": "model.safetensors",
518
- "model.layers.29.mlp.down_proj.weight_scale_inv": "model.safetensors",
519
- "model.layers.29.mlp.gate_proj.weight_scale_inv": "model.safetensors",
520
- "model.layers.29.mlp.up_proj.weight_scale_inv": "model.safetensors",
521
- "model.layers.29.self_attn.k_proj.weight_scale_inv": "model.safetensors",
522
- "model.layers.29.self_attn.o_proj.weight_scale_inv": "model.safetensors",
523
- "model.layers.29.self_attn.q_proj.weight_scale_inv": "model.safetensors",
524
- "model.layers.29.self_attn.v_proj.weight_scale_inv": "model.safetensors",
525
- "model.layers.30.mlp.down_proj.weight_scale_inv": "model.safetensors",
526
- "model.layers.30.mlp.gate_proj.weight_scale_inv": "model.safetensors",
527
- "model.layers.30.mlp.up_proj.weight_scale_inv": "model.safetensors",
528
- "model.layers.30.self_attn.k_proj.weight_scale_inv": "model.safetensors",
529
- "model.layers.30.self_attn.o_proj.weight_scale_inv": "model.safetensors",
530
- "model.layers.30.self_attn.q_proj.weight_scale_inv": "model.safetensors",
531
- "model.layers.30.self_attn.v_proj.weight_scale_inv": "model.safetensors",
532
- "model.layers.31.mlp.down_proj.weight_scale_inv": "model.safetensors",
533
- "model.layers.31.mlp.gate_proj.weight_scale_inv": "model.safetensors",
534
- "model.layers.31.mlp.up_proj.weight_scale_inv": "model.safetensors",
535
- "model.layers.31.self_attn.k_proj.weight_scale_inv": "model.safetensors",
536
- "model.layers.31.self_attn.o_proj.weight_scale_inv": "model.safetensors",
537
- "model.layers.31.self_attn.q_proj.weight_scale_inv": "model.safetensors",
538
- "model.layers.31.self_attn.v_proj.weight_scale_inv": "model.safetensors",
539
- "model.layers.32.mlp.down_proj.weight_scale_inv": "model.safetensors",
540
- "model.layers.32.mlp.gate_proj.weight_scale_inv": "model.safetensors",
541
- "model.layers.32.mlp.up_proj.weight_scale_inv": "model.safetensors",
542
- "model.layers.32.self_attn.k_proj.weight_scale_inv": "model.safetensors",
543
- "model.layers.32.self_attn.o_proj.weight_scale_inv": "model.safetensors",
544
- "model.layers.32.self_attn.q_proj.weight_scale_inv": "model.safetensors",
545
- "model.layers.32.self_attn.v_proj.weight_scale_inv": "model.safetensors",
546
- "model.layers.33.mlp.down_proj.weight_scale_inv": "model.safetensors",
547
- "model.layers.33.mlp.gate_proj.weight_scale_inv": "model.safetensors",
548
- "model.layers.33.mlp.up_proj.weight_scale_inv": "model.safetensors",
549
- "model.layers.33.self_attn.k_proj.weight_scale_inv": "model.safetensors",
550
- "model.layers.33.self_attn.o_proj.weight_scale_inv": "model.safetensors",
551
- "model.layers.33.self_attn.q_proj.weight_scale_inv": "model.safetensors",
552
- "model.layers.33.self_attn.v_proj.weight_scale_inv": "model.safetensors"
553
  }
554
  }
 
1
  {
2
  "metadata": {
3
+ "total_size": 16979107840
4
  },
5
  "weight_map": {
6
+ "lm_head.weight": "model.safetensors",
7
+ "model.embed_tokens.weight": "model.safetensors",
8
  "model.layers.0.input_layernorm.weight": "model.safetensors",
9
  "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
10
  "model.layers.1.input_layernorm.weight": "model.safetensors",
 
16
  "model.layers.12.input_layernorm.weight": "model.safetensors",
17
  "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
18
  "model.layers.13.input_layernorm.weight": "model.safetensors",
19
+ "model.layers.2.input_layernorm.weight": "model.safetensors",
20
+ "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
21
+ "model.layers.3.input_layernorm.weight": "model.safetensors",
22
+ "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
23
+ "model.layers.4.input_layernorm.weight": "model.safetensors",
24
+ "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
25
+ "model.layers.5.input_layernorm.weight": "model.safetensors",
26
+ "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
27
+ "model.layers.6.input_layernorm.weight": "model.safetensors",
28
+ "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
29
+ "model.layers.7.input_layernorm.weight": "model.safetensors",
30
+ "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
31
+ "model.layers.8.input_layernorm.weight": "model.safetensors",
32
+ "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
33
+ "model.layers.9.input_layernorm.weight": "model.safetensors",
34
+ "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
35
+ "model.layers.0.mlp.down_proj.weight": "model.safetensors",
36
+ "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
37
+ "model.layers.0.mlp.up_proj.weight": "model.safetensors",
38
+ "model.layers.0.self_attn.k_proj.weight": "model.safetensors",
39
+ "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
40
+ "model.layers.0.self_attn.q_proj.weight": "model.safetensors",
41
+ "model.layers.0.self_attn.v_proj.weight": "model.safetensors",
42
+ "model.layers.1.mlp.down_proj.weight": "model.safetensors",
43
+ "model.layers.1.mlp.gate_proj.weight": "model.safetensors",
44
+ "model.layers.1.mlp.up_proj.weight": "model.safetensors",
45
+ "model.layers.1.self_attn.k_proj.weight": "model.safetensors",
46
+ "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
47
+ "model.layers.1.self_attn.q_proj.weight": "model.safetensors",
48
+ "model.layers.1.self_attn.v_proj.weight": "model.safetensors",
49
+ "model.layers.10.mlp.down_proj.weight": "model.safetensors",
50
+ "model.layers.10.mlp.gate_proj.weight": "model.safetensors",
51
+ "model.layers.10.mlp.up_proj.weight": "model.safetensors",
52
+ "model.layers.10.self_attn.k_proj.weight": "model.safetensors",
53
+ "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
54
+ "model.layers.10.self_attn.q_proj.weight": "model.safetensors",
55
+ "model.layers.10.self_attn.v_proj.weight": "model.safetensors",
56
+ "model.layers.11.mlp.down_proj.weight": "model.safetensors",
57
+ "model.layers.11.mlp.gate_proj.weight": "model.safetensors",
58
+ "model.layers.11.mlp.up_proj.weight": "model.safetensors",
59
+ "model.layers.11.self_attn.k_proj.weight": "model.safetensors",
60
+ "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
61
+ "model.layers.11.self_attn.q_proj.weight": "model.safetensors",
62
+ "model.layers.11.self_attn.v_proj.weight": "model.safetensors",
63
+ "model.layers.12.mlp.down_proj.weight": "model.safetensors",
64
+ "model.layers.12.mlp.gate_proj.weight": "model.safetensors",
65
+ "model.layers.12.mlp.up_proj.weight": "model.safetensors",
66
+ "model.layers.12.self_attn.k_proj.weight": "model.safetensors",
67
+ "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
68
+ "model.layers.12.self_attn.q_proj.weight": "model.safetensors",
69
+ "model.layers.12.self_attn.v_proj.weight": "model.safetensors",
70
+ "model.layers.2.mlp.down_proj.weight": "model.safetensors",
71
+ "model.layers.2.mlp.gate_proj.weight": "model.safetensors",
72
+ "model.layers.2.mlp.up_proj.weight": "model.safetensors",
73
+ "model.layers.2.self_attn.k_proj.weight": "model.safetensors",
74
+ "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
75
+ "model.layers.2.self_attn.q_proj.weight": "model.safetensors",
76
+ "model.layers.2.self_attn.v_proj.weight": "model.safetensors",
77
+ "model.layers.3.mlp.down_proj.weight": "model.safetensors",
78
+ "model.layers.3.mlp.gate_proj.weight": "model.safetensors",
79
+ "model.layers.3.mlp.up_proj.weight": "model.safetensors",
80
+ "model.layers.3.self_attn.k_proj.weight": "model.safetensors",
81
+ "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
82
+ "model.layers.3.self_attn.q_proj.weight": "model.safetensors",
83
+ "model.layers.3.self_attn.v_proj.weight": "model.safetensors",
84
+ "model.layers.4.mlp.down_proj.weight": "model.safetensors",
85
+ "model.layers.4.mlp.gate_proj.weight": "model.safetensors",
86
+ "model.layers.4.mlp.up_proj.weight": "model.safetensors",
87
+ "model.layers.4.self_attn.k_proj.weight": "model.safetensors",
88
+ "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
89
+ "model.layers.4.self_attn.q_proj.weight": "model.safetensors",
90
+ "model.layers.4.self_attn.v_proj.weight": "model.safetensors",
91
+ "model.layers.5.mlp.down_proj.weight": "model.safetensors",
92
+ "model.layers.5.mlp.gate_proj.weight": "model.safetensors",
93
+ "model.layers.5.mlp.up_proj.weight": "model.safetensors",
94
+ "model.layers.5.self_attn.k_proj.weight": "model.safetensors",
95
+ "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
96
+ "model.layers.5.self_attn.q_proj.weight": "model.safetensors",
97
+ "model.layers.5.self_attn.v_proj.weight": "model.safetensors",
98
+ "model.layers.6.mlp.down_proj.weight": "model.safetensors",
99
+ "model.layers.6.mlp.gate_proj.weight": "model.safetensors",
100
+ "model.layers.6.mlp.up_proj.weight": "model.safetensors",
101
+ "model.layers.6.self_attn.k_proj.weight": "model.safetensors",
102
+ "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
103
+ "model.layers.6.self_attn.q_proj.weight": "model.safetensors",
104
+ "model.layers.6.self_attn.v_proj.weight": "model.safetensors",
105
+ "model.layers.7.mlp.down_proj.weight": "model.safetensors",
106
+ "model.layers.7.mlp.gate_proj.weight": "model.safetensors",
107
+ "model.layers.7.mlp.up_proj.weight": "model.safetensors",
108
+ "model.layers.7.self_attn.k_proj.weight": "model.safetensors",
109
+ "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
110
+ "model.layers.7.self_attn.q_proj.weight": "model.safetensors",
111
+ "model.layers.7.self_attn.v_proj.weight": "model.safetensors",
112
+ "model.layers.8.mlp.down_proj.weight": "model.safetensors",
113
+ "model.layers.8.mlp.gate_proj.weight": "model.safetensors",
114
+ "model.layers.8.mlp.up_proj.weight": "model.safetensors",
115
+ "model.layers.8.self_attn.k_proj.weight": "model.safetensors",
116
+ "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
117
+ "model.layers.8.self_attn.q_proj.weight": "model.safetensors",
118
+ "model.layers.8.self_attn.v_proj.weight": "model.safetensors",
119
+ "model.layers.9.mlp.down_proj.weight": "model.safetensors",
120
+ "model.layers.9.mlp.gate_proj.weight": "model.safetensors",
121
+ "model.layers.9.mlp.up_proj.weight": "model.safetensors",
122
+ "model.layers.9.self_attn.k_proj.weight": "model.safetensors",
123
+ "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
124
+ "model.layers.9.self_attn.q_proj.weight": "model.safetensors",
125
+ "model.layers.9.self_attn.v_proj.weight": "model.safetensors",
126
  "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
127
  "model.layers.14.input_layernorm.weight": "model.safetensors",
128
  "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
 
136
  "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
137
  "model.layers.19.input_layernorm.weight": "model.safetensors",
138
  "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
 
 
139
  "model.layers.20.input_layernorm.weight": "model.safetensors",
140
  "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
141
  "model.layers.21.input_layernorm.weight": "model.safetensors",
 
156
  "model.layers.28.post_attention_layernorm.weight": "model.safetensors",
157
  "model.layers.29.input_layernorm.weight": "model.safetensors",
158
  "model.layers.29.post_attention_layernorm.weight": "model.safetensors",
 
 
159
  "model.layers.30.input_layernorm.weight": "model.safetensors",
160
  "model.layers.30.post_attention_layernorm.weight": "model.safetensors",
161
  "model.layers.31.input_layernorm.weight": "model.safetensors",
 
164
  "model.layers.32.post_attention_layernorm.weight": "model.safetensors",
165
  "model.layers.33.input_layernorm.weight": "model.safetensors",
166
  "model.layers.33.post_attention_layernorm.weight": "model.safetensors",
 
 
 
 
 
 
 
 
 
 
 
 
167
  "model.norm.weight": "model.safetensors",
168
+ "model.layers.13.mlp.down_proj.weight": "model.safetensors",
169
+ "model.layers.13.mlp.gate_proj.weight": "model.safetensors",
170
+ "model.layers.13.mlp.up_proj.weight": "model.safetensors",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  "model.layers.13.self_attn.k_proj.weight": "model.safetensors",
172
  "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
173
  "model.layers.13.self_attn.q_proj.weight": "model.safetensors",
174
  "model.layers.13.self_attn.v_proj.weight": "model.safetensors",
175
+ "model.layers.14.mlp.down_proj.weight": "model.safetensors",
176
+ "model.layers.14.mlp.gate_proj.weight": "model.safetensors",
177
+ "model.layers.14.mlp.up_proj.weight": "model.safetensors",
178
  "model.layers.14.self_attn.k_proj.weight": "model.safetensors",
179
  "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
180
  "model.layers.14.self_attn.q_proj.weight": "model.safetensors",
181
  "model.layers.14.self_attn.v_proj.weight": "model.safetensors",
182
+ "model.layers.15.mlp.down_proj.weight": "model.safetensors",
183
+ "model.layers.15.mlp.gate_proj.weight": "model.safetensors",
184
+ "model.layers.15.mlp.up_proj.weight": "model.safetensors",
185
  "model.layers.15.self_attn.k_proj.weight": "model.safetensors",
186
  "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
187
  "model.layers.15.self_attn.q_proj.weight": "model.safetensors",
188
  "model.layers.15.self_attn.v_proj.weight": "model.safetensors",
189
+ "model.layers.16.mlp.down_proj.weight": "model.safetensors",
190
+ "model.layers.16.mlp.gate_proj.weight": "model.safetensors",
191
+ "model.layers.16.mlp.up_proj.weight": "model.safetensors",
192
  "model.layers.16.self_attn.k_proj.weight": "model.safetensors",
193
  "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
194
  "model.layers.16.self_attn.q_proj.weight": "model.safetensors",
195
  "model.layers.16.self_attn.v_proj.weight": "model.safetensors",
196
+ "model.layers.17.mlp.down_proj.weight": "model.safetensors",
197
+ "model.layers.17.mlp.gate_proj.weight": "model.safetensors",
198
+ "model.layers.17.mlp.up_proj.weight": "model.safetensors",
199
  "model.layers.17.self_attn.k_proj.weight": "model.safetensors",
200
  "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
201
  "model.layers.17.self_attn.q_proj.weight": "model.safetensors",
202
  "model.layers.17.self_attn.v_proj.weight": "model.safetensors",
203
+ "model.layers.18.mlp.down_proj.weight": "model.safetensors",
204
+ "model.layers.18.mlp.gate_proj.weight": "model.safetensors",
205
+ "model.layers.18.mlp.up_proj.weight": "model.safetensors",
206
  "model.layers.18.self_attn.k_proj.weight": "model.safetensors",
207
  "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
208
  "model.layers.18.self_attn.q_proj.weight": "model.safetensors",
209
  "model.layers.18.self_attn.v_proj.weight": "model.safetensors",
210
+ "model.layers.19.mlp.down_proj.weight": "model.safetensors",
211
+ "model.layers.19.mlp.gate_proj.weight": "model.safetensors",
212
+ "model.layers.19.mlp.up_proj.weight": "model.safetensors",
213
  "model.layers.19.self_attn.k_proj.weight": "model.safetensors",
214
  "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
215
  "model.layers.19.self_attn.q_proj.weight": "model.safetensors",
216
  "model.layers.19.self_attn.v_proj.weight": "model.safetensors",
217
+ "model.layers.20.mlp.down_proj.weight": "model.safetensors",
218
+ "model.layers.20.mlp.gate_proj.weight": "model.safetensors",
219
+ "model.layers.20.mlp.up_proj.weight": "model.safetensors",
 
 
 
 
 
 
 
220
  "model.layers.20.self_attn.k_proj.weight": "model.safetensors",
221
  "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
222
  "model.layers.20.self_attn.q_proj.weight": "model.safetensors",
223
  "model.layers.20.self_attn.v_proj.weight": "model.safetensors",
224
+ "model.layers.21.mlp.down_proj.weight": "model.safetensors",
225
+ "model.layers.21.mlp.gate_proj.weight": "model.safetensors",
226
+ "model.layers.21.mlp.up_proj.weight": "model.safetensors",
227
  "model.layers.21.self_attn.k_proj.weight": "model.safetensors",
228
  "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
229
  "model.layers.21.self_attn.q_proj.weight": "model.safetensors",
230
  "model.layers.21.self_attn.v_proj.weight": "model.safetensors",
231
+ "model.layers.22.mlp.down_proj.weight": "model.safetensors",
232
+ "model.layers.22.mlp.gate_proj.weight": "model.safetensors",
233
+ "model.layers.22.mlp.up_proj.weight": "model.safetensors",
234
  "model.layers.22.self_attn.k_proj.weight": "model.safetensors",
235
  "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
236
  "model.layers.22.self_attn.q_proj.weight": "model.safetensors",
237
  "model.layers.22.self_attn.v_proj.weight": "model.safetensors",
238
+ "model.layers.23.mlp.down_proj.weight": "model.safetensors",
239
+ "model.layers.23.mlp.gate_proj.weight": "model.safetensors",
240
+ "model.layers.23.mlp.up_proj.weight": "model.safetensors",
241
  "model.layers.23.self_attn.k_proj.weight": "model.safetensors",
242
  "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
243
  "model.layers.23.self_attn.q_proj.weight": "model.safetensors",
244
  "model.layers.23.self_attn.v_proj.weight": "model.safetensors",
245
+ "model.layers.24.mlp.down_proj.weight": "model.safetensors",
246
+ "model.layers.24.mlp.gate_proj.weight": "model.safetensors",
247
+ "model.layers.24.mlp.up_proj.weight": "model.safetensors",
248
  "model.layers.24.self_attn.k_proj.weight": "model.safetensors",
249
  "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
250
  "model.layers.24.self_attn.q_proj.weight": "model.safetensors",
251
  "model.layers.24.self_attn.v_proj.weight": "model.safetensors",
252
+ "model.layers.25.mlp.down_proj.weight": "model.safetensors",
253
+ "model.layers.25.mlp.gate_proj.weight": "model.safetensors",
254
+ "model.layers.25.mlp.up_proj.weight": "model.safetensors",
255
  "model.layers.25.self_attn.k_proj.weight": "model.safetensors",
256
  "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
257
  "model.layers.25.self_attn.q_proj.weight": "model.safetensors",
258
  "model.layers.25.self_attn.v_proj.weight": "model.safetensors",
259
+ "model.layers.26.mlp.down_proj.weight": "model.safetensors",
260
+ "model.layers.26.mlp.gate_proj.weight": "model.safetensors",
261
+ "model.layers.26.mlp.up_proj.weight": "model.safetensors",
262
  "model.layers.26.self_attn.k_proj.weight": "model.safetensors",
263
  "model.layers.26.self_attn.o_proj.weight": "model.safetensors",
264
  "model.layers.26.self_attn.q_proj.weight": "model.safetensors",
265
  "model.layers.26.self_attn.v_proj.weight": "model.safetensors",
266
+ "model.layers.27.mlp.down_proj.weight": "model.safetensors",
267
+ "model.layers.27.mlp.gate_proj.weight": "model.safetensors",
268
+ "model.layers.27.mlp.up_proj.weight": "model.safetensors",
269
  "model.layers.27.self_attn.k_proj.weight": "model.safetensors",
270
  "model.layers.27.self_attn.o_proj.weight": "model.safetensors",
271
  "model.layers.27.self_attn.q_proj.weight": "model.safetensors",
272
  "model.layers.27.self_attn.v_proj.weight": "model.safetensors",
273
+ "model.layers.28.mlp.down_proj.weight": "model.safetensors",
274
+ "model.layers.28.mlp.gate_proj.weight": "model.safetensors",
275
+ "model.layers.28.mlp.up_proj.weight": "model.safetensors",
276
  "model.layers.28.self_attn.k_proj.weight": "model.safetensors",
277
  "model.layers.28.self_attn.o_proj.weight": "model.safetensors",
278
  "model.layers.28.self_attn.q_proj.weight": "model.safetensors",
279
  "model.layers.28.self_attn.v_proj.weight": "model.safetensors",
280
+ "model.layers.29.mlp.down_proj.weight": "model.safetensors",
281
+ "model.layers.29.mlp.gate_proj.weight": "model.safetensors",
282
+ "model.layers.29.mlp.up_proj.weight": "model.safetensors",
283
  "model.layers.29.self_attn.k_proj.weight": "model.safetensors",
284
  "model.layers.29.self_attn.o_proj.weight": "model.safetensors",
285
  "model.layers.29.self_attn.q_proj.weight": "model.safetensors",
286
  "model.layers.29.self_attn.v_proj.weight": "model.safetensors",
287
+ "model.layers.30.mlp.down_proj.weight": "model.safetensors",
288
+ "model.layers.30.mlp.gate_proj.weight": "model.safetensors",
289
+ "model.layers.30.mlp.up_proj.weight": "model.safetensors",
 
 
 
 
 
 
 
290
  "model.layers.30.self_attn.k_proj.weight": "model.safetensors",
291
  "model.layers.30.self_attn.o_proj.weight": "model.safetensors",
292
  "model.layers.30.self_attn.q_proj.weight": "model.safetensors",
293
  "model.layers.30.self_attn.v_proj.weight": "model.safetensors",
294
+ "model.layers.31.mlp.down_proj.weight": "model.safetensors",
295
+ "model.layers.31.mlp.gate_proj.weight": "model.safetensors",
296
+ "model.layers.31.mlp.up_proj.weight": "model.safetensors",
297
  "model.layers.31.self_attn.k_proj.weight": "model.safetensors",
298
  "model.layers.31.self_attn.o_proj.weight": "model.safetensors",
299
  "model.layers.31.self_attn.q_proj.weight": "model.safetensors",
300
  "model.layers.31.self_attn.v_proj.weight": "model.safetensors",
301
+ "model.layers.32.mlp.down_proj.weight": "model.safetensors",
302
+ "model.layers.32.mlp.gate_proj.weight": "model.safetensors",
303
+ "model.layers.32.mlp.up_proj.weight": "model.safetensors",
304
  "model.layers.32.self_attn.k_proj.weight": "model.safetensors",
305
  "model.layers.32.self_attn.o_proj.weight": "model.safetensors",
306
  "model.layers.32.self_attn.q_proj.weight": "model.safetensors",
307
  "model.layers.32.self_attn.v_proj.weight": "model.safetensors",
308
+ "model.layers.33.mlp.down_proj.weight": "model.safetensors",
309
+ "model.layers.33.mlp.gate_proj.weight": "model.safetensors",
310
+ "model.layers.33.mlp.up_proj.weight": "model.safetensors",
311
  "model.layers.33.self_attn.k_proj.weight": "model.safetensors",
312
  "model.layers.33.self_attn.o_proj.weight": "model.safetensors",
313
  "model.layers.33.self_attn.q_proj.weight": "model.safetensors",
314
+ "model.layers.33.self_attn.v_proj.weight": "model.safetensors"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  }
316
  }
tokenizer_config.json CHANGED
@@ -1004,7 +1004,10 @@
1004
  "<SPECIAL_999>"
1005
  ],
1006
  "model_max_length": 1000000000000000019884624838656,
 
 
1007
  "pad_token": "<pad>",
 
1008
  "processor_class": "PixtralProcessor",
1009
  "tokenizer_class": "TokenizersBackend"
1010
  }
 
1004
  "<SPECIAL_999>"
1005
  ],
1006
  "model_max_length": 1000000000000000019884624838656,
1007
+ "bos_token": "<s>",
1008
+ "eos_token": "</s>",
1009
  "pad_token": "<pad>",
1010
+ "unk_token": "<unk>",
1011
  "processor_class": "PixtralProcessor",
1012
  "tokenizer_class": "TokenizersBackend"
1013
  }