Upload folder using huggingface_hub
Browse files- chat_template.jinja +15 -87
- config.json +16 -13
- generation_config.json +3 -2
- model-00001-of-00024.safetensors +1 -1
- model-00002-of-00024.safetensors +1 -1
- model-00003-of-00024.safetensors +1 -1
- model-00004-of-00024.safetensors +1 -1
- model-00005-of-00024.safetensors +1 -1
- model-00006-of-00024.safetensors +1 -1
- model-00007-of-00024.safetensors +1 -1
- model-00008-of-00024.safetensors +1 -1
- model-00009-of-00024.safetensors +1 -1
- model-00010-of-00024.safetensors +1 -1
- model-00011-of-00024.safetensors +1 -1
- model-00012-of-00024.safetensors +1 -1
- model-00013-of-00024.safetensors +1 -1
- model-00014-of-00024.safetensors +1 -1
- model-00015-of-00024.safetensors +1 -1
- model-00016-of-00024.safetensors +1 -1
- model-00017-of-00024.safetensors +1 -1
- model-00018-of-00024.safetensors +1 -1
- model-00019-of-00024.safetensors +1 -1
- model-00020-of-00024.safetensors +1 -1
- model-00021-of-00024.safetensors +1 -1
- model-00022-of-00024.safetensors +1 -1
- model-00023-of-00024.safetensors +1 -1
- model-00024-of-00024.safetensors +1 -1
- model.safetensors.index.json +203 -293
- tokenizer.json +0 -0
- tokenizer_config.json +0 -0
chat_template.jinja
CHANGED
@@ -1,87 +1,15 @@
|
|
1 |
-
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
{
|
7 |
-
|
8 |
-
|
9 |
-
{
|
10 |
-
|
11 |
-
|
12 |
-
{
|
13 |
-
{
|
14 |
-
{
|
15 |
-
{
|
16 |
-
{%- if not (message.role == "tool" or message.role == "tool_results" or (message.tool_calls is defined and message.tool_calls is not none)) %}
|
17 |
-
{%- if (message["role"] == "user") != (ns.index % 2 == 0) %}
|
18 |
-
{{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
|
19 |
-
{%- endif %}
|
20 |
-
{%- set ns.index = ns.index + 1 %}
|
21 |
-
{%- endif %}
|
22 |
-
{%- endfor %}
|
23 |
-
|
24 |
-
{{- bos_token }}
|
25 |
-
{%- for message in loop_messages %}
|
26 |
-
{%- if message["role"] == "user" %}
|
27 |
-
{%- if tools is not none and (message == user_messages[-1]) %}
|
28 |
-
{{- "[AVAILABLE_TOOLS] [" }}
|
29 |
-
{%- for tool in tools %}
|
30 |
-
{%- set tool = tool.function %}
|
31 |
-
{{- '{"type": "function", "function": {' }}
|
32 |
-
{%- for key, val in tool.items() if key != "return" %}
|
33 |
-
{%- if val is string %}
|
34 |
-
{{- '"' + key + '": "' + val + '"' }}
|
35 |
-
{%- else %}
|
36 |
-
{{- '"' + key + '": ' + val|tojson }}
|
37 |
-
{%- endif %}
|
38 |
-
{%- if not loop.last %}
|
39 |
-
{{- ", " }}
|
40 |
-
{%- endif %}
|
41 |
-
{%- endfor %}
|
42 |
-
{{- "}}" }}
|
43 |
-
{%- if not loop.last %}
|
44 |
-
{{- ", " }}
|
45 |
-
{%- else %}
|
46 |
-
{{- "]" }}
|
47 |
-
{%- endif %}
|
48 |
-
{%- endfor %}
|
49 |
-
{{- "[/AVAILABLE_TOOLS]" }}
|
50 |
-
{%- endif %}
|
51 |
-
{%- if loop.last and system_message is defined %}
|
52 |
-
{{- "[INST] " + system_message + "\n\n" + message["content"] + "[/INST]" }}
|
53 |
-
{%- else %}
|
54 |
-
{{- "[INST] " + message["content"] + "[/INST]" }}
|
55 |
-
{%- endif %}
|
56 |
-
{%- elif message.tool_calls is defined and message.tool_calls is not none %}
|
57 |
-
{{- "[TOOL_CALLS] [" }}
|
58 |
-
{%- for tool_call in message.tool_calls %}
|
59 |
-
{%- set out = tool_call.function|tojson %}
|
60 |
-
{{- out[:-1] }}
|
61 |
-
{%- if not tool_call.id is defined or tool_call.id|length != 9 %}
|
62 |
-
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
63 |
-
{%- endif %}
|
64 |
-
{{- ', "id": "' + tool_call.id + '"}' }}
|
65 |
-
{%- if not loop.last %}
|
66 |
-
{{- ", " }}
|
67 |
-
{%- else %}
|
68 |
-
{{- "]" + eos_token }}
|
69 |
-
{%- endif %}
|
70 |
-
{%- endfor %}
|
71 |
-
{%- elif message["role"] == "assistant" %}
|
72 |
-
{{- " " + message["content"]|trim + eos_token}}
|
73 |
-
{%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
|
74 |
-
{%- if message.content is defined and message.content.content is defined %}
|
75 |
-
{%- set content = message.content.content %}
|
76 |
-
{%- else %}
|
77 |
-
{%- set content = message.content %}
|
78 |
-
{%- endif %}
|
79 |
-
{{- '[TOOL_RESULTS] {"content": ' + content|string + ", " }}
|
80 |
-
{%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
|
81 |
-
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
82 |
-
{%- endif %}
|
83 |
-
{{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
|
84 |
-
{%- else %}
|
85 |
-
{{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
|
86 |
-
{%- endif %}
|
87 |
-
{%- endfor %}
|
|
|
1 |
+
{% for message in messages %}
|
2 |
+
{% if message['role'] == 'user' %}
|
3 |
+
{{ '<|user|>
|
4 |
+
' + message['content'] + eos_token }}
|
5 |
+
{% elif message['role'] == 'system' %}
|
6 |
+
{{ '<|system|>
|
7 |
+
' + message['content'] + eos_token }}
|
8 |
+
{% elif message['role'] == 'assistant' %}
|
9 |
+
{{ '<|assistant|>
|
10 |
+
' + message['content'] + eos_token }}
|
11 |
+
{% endif %}
|
12 |
+
{% if loop.last and add_generation_prompt %}
|
13 |
+
{{ '<|assistant|>' }}
|
14 |
+
{% endif %}
|
15 |
+
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config.json
CHANGED
@@ -1,26 +1,29 @@
|
|
1 |
{
|
2 |
"architectures": [
|
3 |
-
"
|
4 |
],
|
|
|
5 |
"attention_dropout": 0.0,
|
6 |
"bos_token_id": 1,
|
7 |
"eos_token_id": 2,
|
8 |
-
"head_dim":
|
9 |
"hidden_act": "silu",
|
10 |
-
"hidden_size":
|
11 |
"initializer_range": 0.02,
|
12 |
-
"intermediate_size":
|
13 |
-
"max_position_embeddings":
|
14 |
-
"
|
|
|
15 |
"num_attention_heads": 32,
|
16 |
-
"num_hidden_layers":
|
17 |
-
"num_key_value_heads":
|
|
|
18 |
"rms_norm_eps": 1e-05,
|
19 |
-
"
|
20 |
-
"
|
21 |
"tie_word_embeddings": false,
|
22 |
-
"torch_dtype": "
|
23 |
-
"transformers_version": "4.53.
|
24 |
"use_cache": false,
|
25 |
-
"vocab_size":
|
26 |
}
|
|
|
1 |
{
|
2 |
"architectures": [
|
3 |
+
"LlamaForCausalLM"
|
4 |
],
|
5 |
+
"attention_bias": false,
|
6 |
"attention_dropout": 0.0,
|
7 |
"bos_token_id": 1,
|
8 |
"eos_token_id": 2,
|
9 |
+
"head_dim": 64,
|
10 |
"hidden_act": "silu",
|
11 |
+
"hidden_size": 2048,
|
12 |
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 5632,
|
14 |
+
"max_position_embeddings": 2048,
|
15 |
+
"mlp_bias": false,
|
16 |
+
"model_type": "llama",
|
17 |
"num_attention_heads": 32,
|
18 |
+
"num_hidden_layers": 22,
|
19 |
+
"num_key_value_heads": 4,
|
20 |
+
"pretraining_tp": 1,
|
21 |
"rms_norm_eps": 1e-05,
|
22 |
+
"rope_scaling": null,
|
23 |
+
"rope_theta": 10000.0,
|
24 |
"tie_word_embeddings": false,
|
25 |
+
"torch_dtype": "float32",
|
26 |
+
"transformers_version": "4.53.1",
|
27 |
"use_cache": false,
|
28 |
+
"vocab_size": 32000
|
29 |
}
|
generation_config.json
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
{
|
2 |
-
"_from_model_config": true,
|
3 |
"bos_token_id": 1,
|
4 |
"eos_token_id": 2,
|
5 |
-
"
|
|
|
|
|
6 |
}
|
|
|
1 |
{
|
|
|
2 |
"bos_token_id": 1,
|
3 |
"eos_token_id": 2,
|
4 |
+
"max_length": 2048,
|
5 |
+
"pad_token_id": 0,
|
6 |
+
"transformers_version": "4.53.1"
|
7 |
}
|
model-00001-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 262144136
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b62321c11e762c8cc3bd96ddfb59b9191d63ff3a47ef0d9a5de912fd7749230c
|
3 |
size 262144136
|
model-00002-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 197150040
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bb91a5cb3ecc09d3f1d86e484910734f42e4b20fe0194d8fbcedda0c881bf62f
|
3 |
size 197150040
|
model-00003-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 192955512
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c511935eb1c916982d7c485d8e6c54ec68ea0cf7593cf0331931d3343c52f4e6
|
3 |
size 192955512
|
model-00004-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b434a98e485c658c95dfddea4056392297df353c920562f8f60f29be01eb58da
|
3 |
size 176178184
|
model-00005-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:60c49ef47afba29036caf612d6bd245ab90ffaf144aec8aeaf22db3dad8ef400
|
3 |
size 176178184
|
model-00006-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:846cd77c9e4b2577baa2e02caba2f46b8c5ada76d87bcc22de808170bb47a2e2
|
3 |
size 176178184
|
model-00007-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:649f13cf2154c46e790aaf46885eea73c99f2e5aa229cadc2343f2c43fc963d0
|
3 |
size 176178184
|
model-00008-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:98d7ee8ca2b430bd26e9f6cc8dd33fa2d74fc3c9c2e8a382efc4c3842ca5d799
|
3 |
size 176178184
|
model-00009-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d30b97b5ed8e9d72eab882161ba7697d01dd54dfad6370791d36d8823829ae5a
|
3 |
size 176178184
|
model-00010-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13c28ecbb3987859704fe2d23e74252a85d081e0bc688b7df95ba21acd333ef9
|
3 |
size 176178184
|
model-00011-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178184
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eaece1e964711a0b0c375d70933fc4b7f6774f120c387a54d77bf989b444ad0e
|
3 |
size 176178184
|
model-00012-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f7162fbad3ac944e66fb09d47b3acac44d10edac7c9876432b2a886d02dcf3e1
|
3 |
size 176178192
|
model-00013-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:077cbeabefbef764cba65c8082e92bfad8f90768fdd428572814e2d3a546644a
|
3 |
size 176178192
|
model-00014-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:379d2afa1ebbe12d8675b69d78b6b74c7163bcf7d4b3291b11bc4fbc1c445e89
|
3 |
size 176178192
|
model-00015-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:02f8ec42dec51741cf91d894a37bc3a63a8c593efe7d1f95e2151476891ec800
|
3 |
size 176178192
|
model-00016-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a732b9802e4e877d48b6a8211b451a5ad6eff43df973cb532cc3deb460311639
|
3 |
size 176178192
|
model-00017-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b0849044681ab876e593a584c557b1236b1262171ff3f261c2b032da9efb6f9
|
3 |
size 176178192
|
model-00018-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a638437dbb7bca2007fa01cf3d87dd702cd8a4b703d1299fb3a0b0a35622508b
|
3 |
size 176178192
|
model-00019-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0955b13347b65cf7c4377ee5f90366aaf8c58f83e6912b6ceca141fd821c69ef
|
3 |
size 176178192
|
model-00020-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d103f5801230cbf4fc11ddc3253b8c8227a207bcaf9b4d0278eb35d39b5f619
|
3 |
size 176178192
|
model-00021-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9fb36a8eb1f94862d8d111f56a7c8c54355da621085dbf3dff03c7e6c32b4a3f
|
3 |
size 176178192
|
model-00022-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 176178192
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c371dfeb1a1b75b22379900d8e8a6098e5663e099aa322461789c8da244b2cc3
|
3 |
size 176178192
|
model-00023-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 262144128
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2eaf564ac8e2e04e03222af0ac34d86e15dd0b7a24ef7e5739cc7165f1a9fdf
|
3 |
size 262144128
|
model-00024-of-00024.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 138437280
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6085625471dfc8fb2ef7f54c1cf2606de39894fca11e091a1dedc76f904e5ac
|
3 |
size 138437280
|
model.safetensors.index.json
CHANGED
@@ -1,299 +1,209 @@
|
|
1 |
{
|
2 |
"metadata": {
|
3 |
-
"total_parameters":
|
4 |
-
"total_size":
|
5 |
},
|
6 |
"weight_map": {
|
7 |
-
"lm_head.weight": "model-
|
8 |
-
"model.embed_tokens.weight": "model-00001-of-
|
9 |
-
"model.layers.0.input_layernorm.weight": "model-
|
10 |
-
"model.layers.0.mlp.down_proj.weight": "model-
|
11 |
-
"model.layers.0.mlp.gate_proj.weight": "model-
|
12 |
-
"model.layers.0.mlp.up_proj.weight": "model-
|
13 |
-
"model.layers.0.post_attention_layernorm.weight": "model-
|
14 |
-
"model.layers.0.self_attn.k_proj.weight": "model-00002-of-
|
15 |
-
"model.layers.0.self_attn.o_proj.weight": "model-00002-of-
|
16 |
-
"model.layers.0.self_attn.q_proj.weight": "model-00002-of-
|
17 |
-
"model.layers.0.self_attn.v_proj.weight": "model-00002-of-
|
18 |
-
"model.layers.1.input_layernorm.weight": "model-
|
19 |
-
"model.layers.1.mlp.down_proj.weight": "model-
|
20 |
-
"model.layers.1.mlp.gate_proj.weight": "model-
|
21 |
-
"model.layers.1.mlp.up_proj.weight": "model-
|
22 |
-
"model.layers.1.post_attention_layernorm.weight": "model-
|
23 |
-
"model.layers.1.self_attn.k_proj.weight": "model-
|
24 |
-
"model.layers.1.self_attn.o_proj.weight": "model-
|
25 |
-
"model.layers.1.self_attn.q_proj.weight": "model-
|
26 |
-
"model.layers.1.self_attn.v_proj.weight": "model-
|
27 |
-
"model.layers.10.input_layernorm.weight": "model-
|
28 |
-
"model.layers.10.mlp.down_proj.weight": "model-
|
29 |
-
"model.layers.10.mlp.gate_proj.weight": "model-
|
30 |
-
"model.layers.10.mlp.up_proj.weight": "model-
|
31 |
-
"model.layers.10.post_attention_layernorm.weight": "model-
|
32 |
-
"model.layers.10.self_attn.k_proj.weight": "model-
|
33 |
-
"model.layers.10.self_attn.o_proj.weight": "model-
|
34 |
-
"model.layers.10.self_attn.q_proj.weight": "model-
|
35 |
-
"model.layers.10.self_attn.v_proj.weight": "model-
|
36 |
-
"model.layers.11.input_layernorm.weight": "model-
|
37 |
-
"model.layers.11.mlp.down_proj.weight": "model-
|
38 |
-
"model.layers.11.mlp.gate_proj.weight": "model-
|
39 |
-
"model.layers.11.mlp.up_proj.weight": "model-
|
40 |
-
"model.layers.11.post_attention_layernorm.weight": "model-
|
41 |
-
"model.layers.11.self_attn.k_proj.weight": "model-
|
42 |
-
"model.layers.11.self_attn.o_proj.weight": "model-
|
43 |
-
"model.layers.11.self_attn.q_proj.weight": "model-
|
44 |
-
"model.layers.11.self_attn.v_proj.weight": "model-
|
45 |
-
"model.layers.12.input_layernorm.weight": "model-
|
46 |
-
"model.layers.12.mlp.down_proj.weight": "model-
|
47 |
-
"model.layers.12.mlp.gate_proj.weight": "model-
|
48 |
-
"model.layers.12.mlp.up_proj.weight": "model-
|
49 |
-
"model.layers.12.post_attention_layernorm.weight": "model-
|
50 |
-
"model.layers.12.self_attn.k_proj.weight": "model-
|
51 |
-
"model.layers.12.self_attn.o_proj.weight": "model-
|
52 |
-
"model.layers.12.self_attn.q_proj.weight": "model-
|
53 |
-
"model.layers.12.self_attn.v_proj.weight": "model-
|
54 |
-
"model.layers.13.input_layernorm.weight": "model-
|
55 |
-
"model.layers.13.mlp.down_proj.weight": "model-
|
56 |
-
"model.layers.13.mlp.gate_proj.weight": "model-
|
57 |
-
"model.layers.13.mlp.up_proj.weight": "model-
|
58 |
-
"model.layers.13.post_attention_layernorm.weight": "model-
|
59 |
-
"model.layers.13.self_attn.k_proj.weight": "model-
|
60 |
-
"model.layers.13.self_attn.o_proj.weight": "model-
|
61 |
-
"model.layers.13.self_attn.q_proj.weight": "model-
|
62 |
-
"model.layers.13.self_attn.v_proj.weight": "model-
|
63 |
-
"model.layers.14.input_layernorm.weight": "model-
|
64 |
-
"model.layers.14.mlp.down_proj.weight": "model-
|
65 |
-
"model.layers.14.mlp.gate_proj.weight": "model-
|
66 |
-
"model.layers.14.mlp.up_proj.weight": "model-
|
67 |
-
"model.layers.14.post_attention_layernorm.weight": "model-
|
68 |
-
"model.layers.14.self_attn.k_proj.weight": "model-
|
69 |
-
"model.layers.14.self_attn.o_proj.weight": "model-
|
70 |
-
"model.layers.14.self_attn.q_proj.weight": "model-
|
71 |
-
"model.layers.14.self_attn.v_proj.weight": "model-
|
72 |
-
"model.layers.15.input_layernorm.weight": "model-
|
73 |
-
"model.layers.15.mlp.down_proj.weight": "model-
|
74 |
-
"model.layers.15.mlp.gate_proj.weight": "model-
|
75 |
-
"model.layers.15.mlp.up_proj.weight": "model-
|
76 |
-
"model.layers.15.post_attention_layernorm.weight": "model-
|
77 |
-
"model.layers.15.self_attn.k_proj.weight": "model-
|
78 |
-
"model.layers.15.self_attn.o_proj.weight": "model-
|
79 |
-
"model.layers.15.self_attn.q_proj.weight": "model-
|
80 |
-
"model.layers.15.self_attn.v_proj.weight": "model-
|
81 |
-
"model.layers.16.input_layernorm.weight": "model-
|
82 |
-
"model.layers.16.mlp.down_proj.weight": "model-
|
83 |
-
"model.layers.16.mlp.gate_proj.weight": "model-
|
84 |
-
"model.layers.16.mlp.up_proj.weight": "model-
|
85 |
-
"model.layers.16.post_attention_layernorm.weight": "model-
|
86 |
-
"model.layers.16.self_attn.k_proj.weight": "model-
|
87 |
-
"model.layers.16.self_attn.o_proj.weight": "model-
|
88 |
-
"model.layers.16.self_attn.q_proj.weight": "model-
|
89 |
-
"model.layers.16.self_attn.v_proj.weight": "model-
|
90 |
-
"model.layers.17.input_layernorm.weight": "model-
|
91 |
-
"model.layers.17.mlp.down_proj.weight": "model-
|
92 |
-
"model.layers.17.mlp.gate_proj.weight": "model-
|
93 |
-
"model.layers.17.mlp.up_proj.weight": "model-
|
94 |
-
"model.layers.17.post_attention_layernorm.weight": "model-
|
95 |
-
"model.layers.17.self_attn.k_proj.weight": "model-
|
96 |
-
"model.layers.17.self_attn.o_proj.weight": "model-
|
97 |
-
"model.layers.17.self_attn.q_proj.weight": "model-
|
98 |
-
"model.layers.17.self_attn.v_proj.weight": "model-
|
99 |
-
"model.layers.18.input_layernorm.weight": "model-
|
100 |
-
"model.layers.18.mlp.down_proj.weight": "model-
|
101 |
-
"model.layers.18.mlp.gate_proj.weight": "model-
|
102 |
-
"model.layers.18.mlp.up_proj.weight": "model-
|
103 |
-
"model.layers.18.post_attention_layernorm.weight": "model-
|
104 |
-
"model.layers.18.self_attn.k_proj.weight": "model-
|
105 |
-
"model.layers.18.self_attn.o_proj.weight": "model-
|
106 |
-
"model.layers.18.self_attn.q_proj.weight": "model-
|
107 |
-
"model.layers.18.self_attn.v_proj.weight": "model-
|
108 |
-
"model.layers.19.input_layernorm.weight": "model-
|
109 |
-
"model.layers.19.mlp.down_proj.weight": "model-
|
110 |
-
"model.layers.19.mlp.gate_proj.weight": "model-
|
111 |
-
"model.layers.19.mlp.up_proj.weight": "model-
|
112 |
-
"model.layers.19.post_attention_layernorm.weight": "model-
|
113 |
-
"model.layers.19.self_attn.k_proj.weight": "model-
|
114 |
-
"model.layers.19.self_attn.o_proj.weight": "model-
|
115 |
-
"model.layers.19.self_attn.q_proj.weight": "model-
|
116 |
-
"model.layers.19.self_attn.v_proj.weight": "model-
|
117 |
-
"model.layers.2.input_layernorm.weight": "model-
|
118 |
-
"model.layers.2.mlp.down_proj.weight": "model-
|
119 |
-
"model.layers.2.mlp.gate_proj.weight": "model-
|
120 |
-
"model.layers.2.mlp.up_proj.weight": "model-
|
121 |
-
"model.layers.2.post_attention_layernorm.weight": "model-
|
122 |
-
"model.layers.2.self_attn.k_proj.weight": "model-
|
123 |
-
"model.layers.2.self_attn.o_proj.weight": "model-
|
124 |
-
"model.layers.2.self_attn.q_proj.weight": "model-
|
125 |
-
"model.layers.2.self_attn.v_proj.weight": "model-
|
126 |
-
"model.layers.20.input_layernorm.weight": "model-
|
127 |
-
"model.layers.20.mlp.down_proj.weight": "model-
|
128 |
-
"model.layers.20.mlp.gate_proj.weight": "model-
|
129 |
-
"model.layers.20.mlp.up_proj.weight": "model-
|
130 |
-
"model.layers.20.post_attention_layernorm.weight": "model-
|
131 |
-
"model.layers.20.self_attn.k_proj.weight": "model-
|
132 |
-
"model.layers.20.self_attn.o_proj.weight": "model-
|
133 |
-
"model.layers.20.self_attn.q_proj.weight": "model-
|
134 |
-
"model.layers.20.self_attn.v_proj.weight": "model-
|
135 |
-
"model.layers.21.input_layernorm.weight": "model-
|
136 |
-
"model.layers.21.mlp.down_proj.weight": "model-
|
137 |
-
"model.layers.21.mlp.gate_proj.weight": "model-
|
138 |
-
"model.layers.21.mlp.up_proj.weight": "model-
|
139 |
-
"model.layers.21.post_attention_layernorm.weight": "model-
|
140 |
-
"model.layers.21.self_attn.k_proj.weight": "model-
|
141 |
-
"model.layers.21.self_attn.o_proj.weight": "model-
|
142 |
-
"model.layers.21.self_attn.q_proj.weight": "model-
|
143 |
-
"model.layers.21.self_attn.v_proj.weight": "model-
|
144 |
-
"model.layers.
|
145 |
-
"model.layers.
|
146 |
-
"model.layers.
|
147 |
-
"model.layers.
|
148 |
-
"model.layers.
|
149 |
-
"model.layers.
|
150 |
-
"model.layers.
|
151 |
-
"model.layers.
|
152 |
-
"model.layers.
|
153 |
-
"model.layers.
|
154 |
-
"model.layers.
|
155 |
-
"model.layers.
|
156 |
-
"model.layers.
|
157 |
-
"model.layers.
|
158 |
-
"model.layers.
|
159 |
-
"model.layers.
|
160 |
-
"model.layers.
|
161 |
-
"model.layers.
|
162 |
-
"model.layers.
|
163 |
-
"model.layers.
|
164 |
-
"model.layers.
|
165 |
-
"model.layers.
|
166 |
-
"model.layers.
|
167 |
-
"model.layers.
|
168 |
-
"model.layers.
|
169 |
-
"model.layers.
|
170 |
-
"model.layers.
|
171 |
-
"model.layers.
|
172 |
-
"model.layers.
|
173 |
-
"model.layers.
|
174 |
-
"model.layers.
|
175 |
-
"model.layers.
|
176 |
-
"model.layers.
|
177 |
-
"model.layers.
|
178 |
-
"model.layers.
|
179 |
-
"model.layers.
|
180 |
-
"model.layers.
|
181 |
-
"model.layers.
|
182 |
-
"model.layers.
|
183 |
-
"model.layers.
|
184 |
-
"model.layers.
|
185 |
-
"model.layers.
|
186 |
-
"model.layers.
|
187 |
-
"model.layers.
|
188 |
-
"model.layers.
|
189 |
-
"model.layers.
|
190 |
-
"model.layers.
|
191 |
-
"model.layers.
|
192 |
-
"model.layers.
|
193 |
-
"model.layers.
|
194 |
-
"model.layers.
|
195 |
-
"model.layers.
|
196 |
-
"model.layers.
|
197 |
-
"model.layers.
|
198 |
-
"model.layers.
|
199 |
-
"model.layers.
|
200 |
-
"model.layers.
|
201 |
-
"model.layers.
|
202 |
-
"model.layers.
|
203 |
-
"model.layers.
|
204 |
-
"model.layers.
|
205 |
-
"model.layers.
|
206 |
-
"model.layers.
|
207 |
-
"model.
|
208 |
-
"model.layers.29.mlp.down_proj.weight": "model-00092-of-00099.safetensors",
|
209 |
-
"model.layers.29.mlp.gate_proj.weight": "model-00090-of-00099.safetensors",
|
210 |
-
"model.layers.29.mlp.up_proj.weight": "model-00091-of-00099.safetensors",
|
211 |
-
"model.layers.29.post_attention_layernorm.weight": "model-00092-of-00099.safetensors",
|
212 |
-
"model.layers.29.self_attn.k_proj.weight": "model-00089-of-00099.safetensors",
|
213 |
-
"model.layers.29.self_attn.o_proj.weight": "model-00090-of-00099.safetensors",
|
214 |
-
"model.layers.29.self_attn.q_proj.weight": "model-00089-of-00099.safetensors",
|
215 |
-
"model.layers.29.self_attn.v_proj.weight": "model-00089-of-00099.safetensors",
|
216 |
-
"model.layers.3.input_layernorm.weight": "model-00014-of-00099.safetensors",
|
217 |
-
"model.layers.3.mlp.down_proj.weight": "model-00014-of-00099.safetensors",
|
218 |
-
"model.layers.3.mlp.gate_proj.weight": "model-00012-of-00099.safetensors",
|
219 |
-
"model.layers.3.mlp.up_proj.weight": "model-00013-of-00099.safetensors",
|
220 |
-
"model.layers.3.post_attention_layernorm.weight": "model-00014-of-00099.safetensors",
|
221 |
-
"model.layers.3.self_attn.k_proj.weight": "model-00011-of-00099.safetensors",
|
222 |
-
"model.layers.3.self_attn.o_proj.weight": "model-00012-of-00099.safetensors",
|
223 |
-
"model.layers.3.self_attn.q_proj.weight": "model-00011-of-00099.safetensors",
|
224 |
-
"model.layers.3.self_attn.v_proj.weight": "model-00011-of-00099.safetensors",
|
225 |
-
"model.layers.30.input_layernorm.weight": "model-00095-of-00099.safetensors",
|
226 |
-
"model.layers.30.mlp.down_proj.weight": "model-00095-of-00099.safetensors",
|
227 |
-
"model.layers.30.mlp.gate_proj.weight": "model-00093-of-00099.safetensors",
|
228 |
-
"model.layers.30.mlp.up_proj.weight": "model-00094-of-00099.safetensors",
|
229 |
-
"model.layers.30.post_attention_layernorm.weight": "model-00095-of-00099.safetensors",
|
230 |
-
"model.layers.30.self_attn.k_proj.weight": "model-00092-of-00099.safetensors",
|
231 |
-
"model.layers.30.self_attn.o_proj.weight": "model-00093-of-00099.safetensors",
|
232 |
-
"model.layers.30.self_attn.q_proj.weight": "model-00092-of-00099.safetensors",
|
233 |
-
"model.layers.30.self_attn.v_proj.weight": "model-00092-of-00099.safetensors",
|
234 |
-
"model.layers.31.input_layernorm.weight": "model-00099-of-00099.safetensors",
|
235 |
-
"model.layers.31.mlp.down_proj.weight": "model-00099-of-00099.safetensors",
|
236 |
-
"model.layers.31.mlp.gate_proj.weight": "model-00096-of-00099.safetensors",
|
237 |
-
"model.layers.31.mlp.up_proj.weight": "model-00097-of-00099.safetensors",
|
238 |
-
"model.layers.31.post_attention_layernorm.weight": "model-00099-of-00099.safetensors",
|
239 |
-
"model.layers.31.self_attn.k_proj.weight": "model-00095-of-00099.safetensors",
|
240 |
-
"model.layers.31.self_attn.o_proj.weight": "model-00096-of-00099.safetensors",
|
241 |
-
"model.layers.31.self_attn.q_proj.weight": "model-00095-of-00099.safetensors",
|
242 |
-
"model.layers.31.self_attn.v_proj.weight": "model-00095-of-00099.safetensors",
|
243 |
-
"model.layers.4.input_layernorm.weight": "model-00017-of-00099.safetensors",
|
244 |
-
"model.layers.4.mlp.down_proj.weight": "model-00017-of-00099.safetensors",
|
245 |
-
"model.layers.4.mlp.gate_proj.weight": "model-00015-of-00099.safetensors",
|
246 |
-
"model.layers.4.mlp.up_proj.weight": "model-00016-of-00099.safetensors",
|
247 |
-
"model.layers.4.post_attention_layernorm.weight": "model-00017-of-00099.safetensors",
|
248 |
-
"model.layers.4.self_attn.k_proj.weight": "model-00014-of-00099.safetensors",
|
249 |
-
"model.layers.4.self_attn.o_proj.weight": "model-00015-of-00099.safetensors",
|
250 |
-
"model.layers.4.self_attn.q_proj.weight": "model-00014-of-00099.safetensors",
|
251 |
-
"model.layers.4.self_attn.v_proj.weight": "model-00014-of-00099.safetensors",
|
252 |
-
"model.layers.5.input_layernorm.weight": "model-00020-of-00099.safetensors",
|
253 |
-
"model.layers.5.mlp.down_proj.weight": "model-00020-of-00099.safetensors",
|
254 |
-
"model.layers.5.mlp.gate_proj.weight": "model-00018-of-00099.safetensors",
|
255 |
-
"model.layers.5.mlp.up_proj.weight": "model-00019-of-00099.safetensors",
|
256 |
-
"model.layers.5.post_attention_layernorm.weight": "model-00020-of-00099.safetensors",
|
257 |
-
"model.layers.5.self_attn.k_proj.weight": "model-00017-of-00099.safetensors",
|
258 |
-
"model.layers.5.self_attn.o_proj.weight": "model-00018-of-00099.safetensors",
|
259 |
-
"model.layers.5.self_attn.q_proj.weight": "model-00017-of-00099.safetensors",
|
260 |
-
"model.layers.5.self_attn.v_proj.weight": "model-00017-of-00099.safetensors",
|
261 |
-
"model.layers.6.input_layernorm.weight": "model-00023-of-00099.safetensors",
|
262 |
-
"model.layers.6.mlp.down_proj.weight": "model-00023-of-00099.safetensors",
|
263 |
-
"model.layers.6.mlp.gate_proj.weight": "model-00021-of-00099.safetensors",
|
264 |
-
"model.layers.6.mlp.up_proj.weight": "model-00022-of-00099.safetensors",
|
265 |
-
"model.layers.6.post_attention_layernorm.weight": "model-00023-of-00099.safetensors",
|
266 |
-
"model.layers.6.self_attn.k_proj.weight": "model-00020-of-00099.safetensors",
|
267 |
-
"model.layers.6.self_attn.o_proj.weight": "model-00021-of-00099.safetensors",
|
268 |
-
"model.layers.6.self_attn.q_proj.weight": "model-00020-of-00099.safetensors",
|
269 |
-
"model.layers.6.self_attn.v_proj.weight": "model-00020-of-00099.safetensors",
|
270 |
-
"model.layers.7.input_layernorm.weight": "model-00026-of-00099.safetensors",
|
271 |
-
"model.layers.7.mlp.down_proj.weight": "model-00026-of-00099.safetensors",
|
272 |
-
"model.layers.7.mlp.gate_proj.weight": "model-00024-of-00099.safetensors",
|
273 |
-
"model.layers.7.mlp.up_proj.weight": "model-00025-of-00099.safetensors",
|
274 |
-
"model.layers.7.post_attention_layernorm.weight": "model-00026-of-00099.safetensors",
|
275 |
-
"model.layers.7.self_attn.k_proj.weight": "model-00023-of-00099.safetensors",
|
276 |
-
"model.layers.7.self_attn.o_proj.weight": "model-00024-of-00099.safetensors",
|
277 |
-
"model.layers.7.self_attn.q_proj.weight": "model-00023-of-00099.safetensors",
|
278 |
-
"model.layers.7.self_attn.v_proj.weight": "model-00023-of-00099.safetensors",
|
279 |
-
"model.layers.8.input_layernorm.weight": "model-00029-of-00099.safetensors",
|
280 |
-
"model.layers.8.mlp.down_proj.weight": "model-00029-of-00099.safetensors",
|
281 |
-
"model.layers.8.mlp.gate_proj.weight": "model-00027-of-00099.safetensors",
|
282 |
-
"model.layers.8.mlp.up_proj.weight": "model-00028-of-00099.safetensors",
|
283 |
-
"model.layers.8.post_attention_layernorm.weight": "model-00029-of-00099.safetensors",
|
284 |
-
"model.layers.8.self_attn.k_proj.weight": "model-00026-of-00099.safetensors",
|
285 |
-
"model.layers.8.self_attn.o_proj.weight": "model-00027-of-00099.safetensors",
|
286 |
-
"model.layers.8.self_attn.q_proj.weight": "model-00026-of-00099.safetensors",
|
287 |
-
"model.layers.8.self_attn.v_proj.weight": "model-00026-of-00099.safetensors",
|
288 |
-
"model.layers.9.input_layernorm.weight": "model-00032-of-00099.safetensors",
|
289 |
-
"model.layers.9.mlp.down_proj.weight": "model-00032-of-00099.safetensors",
|
290 |
-
"model.layers.9.mlp.gate_proj.weight": "model-00030-of-00099.safetensors",
|
291 |
-
"model.layers.9.mlp.up_proj.weight": "model-00031-of-00099.safetensors",
|
292 |
-
"model.layers.9.post_attention_layernorm.weight": "model-00032-of-00099.safetensors",
|
293 |
-
"model.layers.9.self_attn.k_proj.weight": "model-00029-of-00099.safetensors",
|
294 |
-
"model.layers.9.self_attn.o_proj.weight": "model-00030-of-00099.safetensors",
|
295 |
-
"model.layers.9.self_attn.q_proj.weight": "model-00029-of-00099.safetensors",
|
296 |
-
"model.layers.9.self_attn.v_proj.weight": "model-00029-of-00099.safetensors",
|
297 |
-
"model.norm.weight": "model-00099-of-00099.safetensors"
|
298 |
}
|
299 |
}
|
|
|
1 |
{
|
2 |
"metadata": {
|
3 |
+
"total_parameters": 1100048384,
|
4 |
+
"total_size": 4400193536
|
5 |
},
|
6 |
"weight_map": {
|
7 |
+
"lm_head.weight": "model-00023-of-00024.safetensors",
|
8 |
+
"model.embed_tokens.weight": "model-00001-of-00024.safetensors",
|
9 |
+
"model.layers.0.input_layernorm.weight": "model-00002-of-00024.safetensors",
|
10 |
+
"model.layers.0.mlp.down_proj.weight": "model-00002-of-00024.safetensors",
|
11 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00002-of-00024.safetensors",
|
12 |
+
"model.layers.0.mlp.up_proj.weight": "model-00002-of-00024.safetensors",
|
13 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00002-of-00024.safetensors",
|
14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00002-of-00024.safetensors",
|
15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00002-of-00024.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00002-of-00024.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00002-of-00024.safetensors",
|
18 |
+
"model.layers.1.input_layernorm.weight": "model-00003-of-00024.safetensors",
|
19 |
+
"model.layers.1.mlp.down_proj.weight": "model-00003-of-00024.safetensors",
|
20 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00003-of-00024.safetensors",
|
21 |
+
"model.layers.1.mlp.up_proj.weight": "model-00003-of-00024.safetensors",
|
22 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00003-of-00024.safetensors",
|
23 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00002-of-00024.safetensors",
|
24 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00003-of-00024.safetensors",
|
25 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00002-of-00024.safetensors",
|
26 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00002-of-00024.safetensors",
|
27 |
+
"model.layers.10.input_layernorm.weight": "model-00012-of-00024.safetensors",
|
28 |
+
"model.layers.10.mlp.down_proj.weight": "model-00012-of-00024.safetensors",
|
29 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00012-of-00024.safetensors",
|
30 |
+
"model.layers.10.mlp.up_proj.weight": "model-00012-of-00024.safetensors",
|
31 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00012-of-00024.safetensors",
|
32 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00011-of-00024.safetensors",
|
33 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00011-of-00024.safetensors",
|
34 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00011-of-00024.safetensors",
|
35 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00011-of-00024.safetensors",
|
36 |
+
"model.layers.11.input_layernorm.weight": "model-00013-of-00024.safetensors",
|
37 |
+
"model.layers.11.mlp.down_proj.weight": "model-00013-of-00024.safetensors",
|
38 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00013-of-00024.safetensors",
|
39 |
+
"model.layers.11.mlp.up_proj.weight": "model-00013-of-00024.safetensors",
|
40 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00013-of-00024.safetensors",
|
41 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00012-of-00024.safetensors",
|
42 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00012-of-00024.safetensors",
|
43 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00012-of-00024.safetensors",
|
44 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00012-of-00024.safetensors",
|
45 |
+
"model.layers.12.input_layernorm.weight": "model-00014-of-00024.safetensors",
|
46 |
+
"model.layers.12.mlp.down_proj.weight": "model-00014-of-00024.safetensors",
|
47 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00014-of-00024.safetensors",
|
48 |
+
"model.layers.12.mlp.up_proj.weight": "model-00014-of-00024.safetensors",
|
49 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00014-of-00024.safetensors",
|
50 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00013-of-00024.safetensors",
|
51 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00013-of-00024.safetensors",
|
52 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00013-of-00024.safetensors",
|
53 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00013-of-00024.safetensors",
|
54 |
+
"model.layers.13.input_layernorm.weight": "model-00015-of-00024.safetensors",
|
55 |
+
"model.layers.13.mlp.down_proj.weight": "model-00015-of-00024.safetensors",
|
56 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00015-of-00024.safetensors",
|
57 |
+
"model.layers.13.mlp.up_proj.weight": "model-00015-of-00024.safetensors",
|
58 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00015-of-00024.safetensors",
|
59 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00014-of-00024.safetensors",
|
60 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00014-of-00024.safetensors",
|
61 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00014-of-00024.safetensors",
|
62 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00014-of-00024.safetensors",
|
63 |
+
"model.layers.14.input_layernorm.weight": "model-00016-of-00024.safetensors",
|
64 |
+
"model.layers.14.mlp.down_proj.weight": "model-00016-of-00024.safetensors",
|
65 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00016-of-00024.safetensors",
|
66 |
+
"model.layers.14.mlp.up_proj.weight": "model-00016-of-00024.safetensors",
|
67 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00016-of-00024.safetensors",
|
68 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00015-of-00024.safetensors",
|
69 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00015-of-00024.safetensors",
|
70 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00015-of-00024.safetensors",
|
71 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00015-of-00024.safetensors",
|
72 |
+
"model.layers.15.input_layernorm.weight": "model-00017-of-00024.safetensors",
|
73 |
+
"model.layers.15.mlp.down_proj.weight": "model-00017-of-00024.safetensors",
|
74 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00017-of-00024.safetensors",
|
75 |
+
"model.layers.15.mlp.up_proj.weight": "model-00017-of-00024.safetensors",
|
76 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00017-of-00024.safetensors",
|
77 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00016-of-00024.safetensors",
|
78 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00016-of-00024.safetensors",
|
79 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00016-of-00024.safetensors",
|
80 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00016-of-00024.safetensors",
|
81 |
+
"model.layers.16.input_layernorm.weight": "model-00018-of-00024.safetensors",
|
82 |
+
"model.layers.16.mlp.down_proj.weight": "model-00018-of-00024.safetensors",
|
83 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00018-of-00024.safetensors",
|
84 |
+
"model.layers.16.mlp.up_proj.weight": "model-00018-of-00024.safetensors",
|
85 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00018-of-00024.safetensors",
|
86 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00017-of-00024.safetensors",
|
87 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00017-of-00024.safetensors",
|
88 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00017-of-00024.safetensors",
|
89 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00017-of-00024.safetensors",
|
90 |
+
"model.layers.17.input_layernorm.weight": "model-00019-of-00024.safetensors",
|
91 |
+
"model.layers.17.mlp.down_proj.weight": "model-00019-of-00024.safetensors",
|
92 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00019-of-00024.safetensors",
|
93 |
+
"model.layers.17.mlp.up_proj.weight": "model-00019-of-00024.safetensors",
|
94 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00019-of-00024.safetensors",
|
95 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00018-of-00024.safetensors",
|
96 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00018-of-00024.safetensors",
|
97 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00018-of-00024.safetensors",
|
98 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00018-of-00024.safetensors",
|
99 |
+
"model.layers.18.input_layernorm.weight": "model-00020-of-00024.safetensors",
|
100 |
+
"model.layers.18.mlp.down_proj.weight": "model-00020-of-00024.safetensors",
|
101 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00020-of-00024.safetensors",
|
102 |
+
"model.layers.18.mlp.up_proj.weight": "model-00020-of-00024.safetensors",
|
103 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00020-of-00024.safetensors",
|
104 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00019-of-00024.safetensors",
|
105 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00019-of-00024.safetensors",
|
106 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00019-of-00024.safetensors",
|
107 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00019-of-00024.safetensors",
|
108 |
+
"model.layers.19.input_layernorm.weight": "model-00021-of-00024.safetensors",
|
109 |
+
"model.layers.19.mlp.down_proj.weight": "model-00021-of-00024.safetensors",
|
110 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00021-of-00024.safetensors",
|
111 |
+
"model.layers.19.mlp.up_proj.weight": "model-00021-of-00024.safetensors",
|
112 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00021-of-00024.safetensors",
|
113 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00020-of-00024.safetensors",
|
114 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00020-of-00024.safetensors",
|
115 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00020-of-00024.safetensors",
|
116 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00020-of-00024.safetensors",
|
117 |
+
"model.layers.2.input_layernorm.weight": "model-00004-of-00024.safetensors",
|
118 |
+
"model.layers.2.mlp.down_proj.weight": "model-00004-of-00024.safetensors",
|
119 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00004-of-00024.safetensors",
|
120 |
+
"model.layers.2.mlp.up_proj.weight": "model-00004-of-00024.safetensors",
|
121 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00004-of-00024.safetensors",
|
122 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00003-of-00024.safetensors",
|
123 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00003-of-00024.safetensors",
|
124 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00003-of-00024.safetensors",
|
125 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00003-of-00024.safetensors",
|
126 |
+
"model.layers.20.input_layernorm.weight": "model-00022-of-00024.safetensors",
|
127 |
+
"model.layers.20.mlp.down_proj.weight": "model-00022-of-00024.safetensors",
|
128 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00022-of-00024.safetensors",
|
129 |
+
"model.layers.20.mlp.up_proj.weight": "model-00022-of-00024.safetensors",
|
130 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00022-of-00024.safetensors",
|
131 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00021-of-00024.safetensors",
|
132 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00021-of-00024.safetensors",
|
133 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00021-of-00024.safetensors",
|
134 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00021-of-00024.safetensors",
|
135 |
+
"model.layers.21.input_layernorm.weight": "model-00024-of-00024.safetensors",
|
136 |
+
"model.layers.21.mlp.down_proj.weight": "model-00024-of-00024.safetensors",
|
137 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00024-of-00024.safetensors",
|
138 |
+
"model.layers.21.mlp.up_proj.weight": "model-00024-of-00024.safetensors",
|
139 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00024-of-00024.safetensors",
|
140 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00022-of-00024.safetensors",
|
141 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00022-of-00024.safetensors",
|
142 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00022-of-00024.safetensors",
|
143 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00022-of-00024.safetensors",
|
144 |
+
"model.layers.3.input_layernorm.weight": "model-00005-of-00024.safetensors",
|
145 |
+
"model.layers.3.mlp.down_proj.weight": "model-00005-of-00024.safetensors",
|
146 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00005-of-00024.safetensors",
|
147 |
+
"model.layers.3.mlp.up_proj.weight": "model-00005-of-00024.safetensors",
|
148 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00005-of-00024.safetensors",
|
149 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00004-of-00024.safetensors",
|
150 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00004-of-00024.safetensors",
|
151 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00004-of-00024.safetensors",
|
152 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00004-of-00024.safetensors",
|
153 |
+
"model.layers.4.input_layernorm.weight": "model-00006-of-00024.safetensors",
|
154 |
+
"model.layers.4.mlp.down_proj.weight": "model-00006-of-00024.safetensors",
|
155 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00006-of-00024.safetensors",
|
156 |
+
"model.layers.4.mlp.up_proj.weight": "model-00006-of-00024.safetensors",
|
157 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00006-of-00024.safetensors",
|
158 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00005-of-00024.safetensors",
|
159 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00005-of-00024.safetensors",
|
160 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00005-of-00024.safetensors",
|
161 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00005-of-00024.safetensors",
|
162 |
+
"model.layers.5.input_layernorm.weight": "model-00007-of-00024.safetensors",
|
163 |
+
"model.layers.5.mlp.down_proj.weight": "model-00007-of-00024.safetensors",
|
164 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00007-of-00024.safetensors",
|
165 |
+
"model.layers.5.mlp.up_proj.weight": "model-00007-of-00024.safetensors",
|
166 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00007-of-00024.safetensors",
|
167 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00006-of-00024.safetensors",
|
168 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00006-of-00024.safetensors",
|
169 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00006-of-00024.safetensors",
|
170 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00006-of-00024.safetensors",
|
171 |
+
"model.layers.6.input_layernorm.weight": "model-00008-of-00024.safetensors",
|
172 |
+
"model.layers.6.mlp.down_proj.weight": "model-00008-of-00024.safetensors",
|
173 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00008-of-00024.safetensors",
|
174 |
+
"model.layers.6.mlp.up_proj.weight": "model-00008-of-00024.safetensors",
|
175 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00008-of-00024.safetensors",
|
176 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00007-of-00024.safetensors",
|
177 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00007-of-00024.safetensors",
|
178 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00007-of-00024.safetensors",
|
179 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00007-of-00024.safetensors",
|
180 |
+
"model.layers.7.input_layernorm.weight": "model-00009-of-00024.safetensors",
|
181 |
+
"model.layers.7.mlp.down_proj.weight": "model-00009-of-00024.safetensors",
|
182 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00009-of-00024.safetensors",
|
183 |
+
"model.layers.7.mlp.up_proj.weight": "model-00009-of-00024.safetensors",
|
184 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00009-of-00024.safetensors",
|
185 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00008-of-00024.safetensors",
|
186 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00008-of-00024.safetensors",
|
187 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00008-of-00024.safetensors",
|
188 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00008-of-00024.safetensors",
|
189 |
+
"model.layers.8.input_layernorm.weight": "model-00010-of-00024.safetensors",
|
190 |
+
"model.layers.8.mlp.down_proj.weight": "model-00010-of-00024.safetensors",
|
191 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00010-of-00024.safetensors",
|
192 |
+
"model.layers.8.mlp.up_proj.weight": "model-00010-of-00024.safetensors",
|
193 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00010-of-00024.safetensors",
|
194 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00009-of-00024.safetensors",
|
195 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00009-of-00024.safetensors",
|
196 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00009-of-00024.safetensors",
|
197 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00009-of-00024.safetensors",
|
198 |
+
"model.layers.9.input_layernorm.weight": "model-00011-of-00024.safetensors",
|
199 |
+
"model.layers.9.mlp.down_proj.weight": "model-00011-of-00024.safetensors",
|
200 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00011-of-00024.safetensors",
|
201 |
+
"model.layers.9.mlp.up_proj.weight": "model-00011-of-00024.safetensors",
|
202 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00011-of-00024.safetensors",
|
203 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00010-of-00024.safetensors",
|
204 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00010-of-00024.safetensors",
|
205 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00010-of-00024.safetensors",
|
206 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00010-of-00024.safetensors",
|
207 |
+
"model.norm.weight": "model-00024-of-00024.safetensors"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
}
|
209 |
}
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|