Upload folder using huggingface_hub
Browse files- row002/chat_template.jinja +15 -0
- row002/config.json +29 -0
- row002/generation_config.json +7 -0
- row002/model-00001-of-00024.safetensors +3 -0
- row002/model-00002-of-00024.safetensors +3 -0
- row002/model-00003-of-00024.safetensors +3 -0
- row002/model-00004-of-00024.safetensors +3 -0
- row002/model-00005-of-00024.safetensors +3 -0
- row002/model-00006-of-00024.safetensors +3 -0
- row002/model-00007-of-00024.safetensors +3 -0
- row002/model-00008-of-00024.safetensors +3 -0
- row002/model-00009-of-00024.safetensors +3 -0
- row002/model-00010-of-00024.safetensors +3 -0
- row002/model-00011-of-00024.safetensors +3 -0
- row002/model-00012-of-00024.safetensors +3 -0
- row002/model-00013-of-00024.safetensors +3 -0
- row002/model-00014-of-00024.safetensors +3 -0
- row002/model-00015-of-00024.safetensors +3 -0
- row002/model-00016-of-00024.safetensors +3 -0
- row002/model-00017-of-00024.safetensors +3 -0
- row002/model-00018-of-00024.safetensors +3 -0
- row002/model-00019-of-00024.safetensors +3 -0
- row002/model-00020-of-00024.safetensors +3 -0
- row002/model-00021-of-00024.safetensors +3 -0
- row002/model-00022-of-00024.safetensors +3 -0
- row002/model-00023-of-00024.safetensors +3 -0
- row002/model-00024-of-00024.safetensors +3 -0
- row002/model.safetensors.index.json +209 -0
- row002/special_tokens_map.json +24 -0
- row002/tokenizer.json +0 -0
- row002/tokenizer_config.json +43 -0
row002/chat_template.jinja
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 %}
|
row002/config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0",
|
| 27 |
+
"use_cache": true,
|
| 28 |
+
"vocab_size": 32000
|
| 29 |
+
}
|
row002/generation_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0"
|
| 7 |
+
}
|
row002/model-00001-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4380f402ec59a3f7e4a7002acb22613a7f6a497408f5a0a19ebd3379fe097d89
|
| 3 |
+
size 262144136
|
row002/model-00002-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ddfb735372c10c57c33edfe78c3fbe7a8ed083c9afcc53f48f811cd181c1c1e
|
| 3 |
+
size 197150040
|
row002/model-00003-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a8cc059da0355632832add06c85b58267a6f887fe97706c989693c36e1672ad
|
| 3 |
+
size 192955512
|
row002/model-00004-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a045b11441fbda5bbf40bd812740e01abadf4d7a91d06eb51c2844e9ed3da9ef
|
| 3 |
+
size 176178184
|
row002/model-00005-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6490859d517f0fcab61a863637697860c6879d92a71c260ecb57b03c74fe37e7
|
| 3 |
+
size 176178184
|
row002/model-00006-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:548b63e3839084a8d7d57a4d8a48a6b7854edad460865a78f0764f34c6a4d23b
|
| 3 |
+
size 176178184
|
row002/model-00007-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f304f134c1d7d26d53fd76c29cf5f128ea8716fbe19973b3dc4f524244984497
|
| 3 |
+
size 176178184
|
row002/model-00008-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05422d834253cf7d70cf212556a0025c48ad53889cbffce3d7e43ddfd3434ac9
|
| 3 |
+
size 176178184
|
row002/model-00009-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17b4e051fe1e02e4b8627ee53556a11bd463c5c1068eec89f2766ba52d5b5e10
|
| 3 |
+
size 176178184
|
row002/model-00010-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2668893e18056eea3432baa84b8ef8c1e1087e36206104e7192e4396968f5a55
|
| 3 |
+
size 176178184
|
row002/model-00011-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff3dfabc518ec001b7f07a8328d2c29edd4571b59d5ff2f20c264269bfe551aa
|
| 3 |
+
size 176178184
|
row002/model-00012-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a436716cfc1b6f068ba04be8a633c32cab7b1e957cff98d247041c16e9e13c8
|
| 3 |
+
size 176178192
|
row002/model-00013-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52e0360b06e0af96ee8961b67ae4cfc8978c83a1b9ef4c502066742a67d7b942
|
| 3 |
+
size 176178192
|
row002/model-00014-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a0ca8723131a9e90f000f944dd4099b22663a5ebb398ff8d5ccece0c3c65fc3
|
| 3 |
+
size 176178192
|
row002/model-00015-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55c6bb6de35c9175c457a9755e2378a03ef2ccb7ea33a9c9c8c7653c5fcf8ed9
|
| 3 |
+
size 176178192
|
row002/model-00016-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06825aeb282ee0cda71d656f7e2abae2c73fe63f66fe4eec125ffe4dd39e3adc
|
| 3 |
+
size 176178192
|
row002/model-00017-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46c6f7554a4c30fee4e7a39174aa821d1f6806f7fd44eeb8963fefe1cfe7a052
|
| 3 |
+
size 176178192
|
row002/model-00018-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:977578a9c27b2a2cc2f777de18db944a0a82797d04b1538aa6ef624d57f644de
|
| 3 |
+
size 176178192
|
row002/model-00019-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f370a8bfd98b4fde44b1cff17ce57cd2c7cdc0a38e5da377523268e6bd86023a
|
| 3 |
+
size 176178192
|
row002/model-00020-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea274e9e2eca72b32488c3b8dff63e190807b072923adaa29886ad6c5a0f5adb
|
| 3 |
+
size 176178192
|
row002/model-00021-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1449f7912e2c8cab288f9e07641db73ad7f08f5d8125d7850f5002380c29ad40
|
| 3 |
+
size 176178192
|
row002/model-00022-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db9d2509063509e506b50a9d76f358c7fa81fcc3378cfd3dad05d1a2c9a55f3e
|
| 3 |
+
size 176178192
|
row002/model-00023-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9499a0993f91d3f6d36b72ce8e322f7c9ef35afade5e3b65fdb4faa8e041ccf2
|
| 3 |
+
size 262144128
|
row002/model-00024-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:765377ac296248c7dbb0efbf9d73c3685e6e92c5d2de387163a75171b5f71e08
|
| 3 |
+
size 138437280
|
row002/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
}
|
row002/special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "</s>",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<unk>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
row002/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
row002/tokenizer_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": null,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<unk>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<s>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"2": {
|
| 23 |
+
"content": "</s>",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": false,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": true
|
| 29 |
+
}
|
| 30 |
+
},
|
| 31 |
+
"bos_token": "<s>",
|
| 32 |
+
"clean_up_tokenization_spaces": false,
|
| 33 |
+
"eos_token": "</s>",
|
| 34 |
+
"extra_special_tokens": {},
|
| 35 |
+
"legacy": false,
|
| 36 |
+
"model_max_length": 2048,
|
| 37 |
+
"pad_token": "</s>",
|
| 38 |
+
"padding_side": "right",
|
| 39 |
+
"sp_model_kwargs": {},
|
| 40 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 41 |
+
"unk_token": "<unk>",
|
| 42 |
+
"use_default_system_prompt": false
|
| 43 |
+
}
|