yamatazen commited on
Commit
afea4f3
·
verified ·
1 Parent(s): 044bd4c

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - natong19/Mistral-Nemo-Instruct-2407-abliterated
4
+ - yamatazen/Himeyuri-Magnum-12B
5
+ - shisa-ai/shisa-v2-mistral-nemo-12b
6
+ library_name: transformers
7
+ tags:
8
+ - mergekit
9
+ - merge
10
+
11
+ ---
12
+ # Shisa-K-12B
13
+
14
+ This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
15
+
16
+ ## Merge Details
17
+ ### Merge Method
18
+
19
+ This model was merged using the [Karcher Mean](https://en.wikipedia.org/wiki/Karcher_mean) merge method.
20
+
21
+ ### Models Merged
22
+
23
+ The following models were included in the merge:
24
+ * [natong19/Mistral-Nemo-Instruct-2407-abliterated](https://huggingface.co/natong19/Mistral-Nemo-Instruct-2407-abliterated)
25
+ * [yamatazen/Himeyuri-Magnum-12B](https://huggingface.co/yamatazen/Himeyuri-Magnum-12B)
26
+ * [shisa-ai/shisa-v2-mistral-nemo-12b](https://huggingface.co/shisa-ai/shisa-v2-mistral-nemo-12b)
27
+
28
+ ### Configuration
29
+
30
+ The following YAML configuration was used to produce this model:
31
+
32
+ ```yaml
33
+ merge_method: karcher
34
+ dtype: bfloat16
35
+ out_dtype: bfloat16
36
+ models:
37
+ - model: natong19/Mistral-Nemo-Instruct-2407-abliterated
38
+ - model: shisa-ai/shisa-v2-mistral-nemo-12b
39
+ - model: yamatazen/Himeyuri-Magnum-12B
40
+ tokenizer:
41
+ source: natong19/Mistral-Nemo-Instruct-2407-abliterated
42
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if messages[0]["role"] == "system" %}
2
+ {%- set system_message = messages[0]["content"] %}
3
+ {%- set loop_messages = messages[1:] %}
4
+ {%- else %}
5
+ {%- set loop_messages = messages %}
6
+ {%- endif %}
7
+ {%- if not tools is defined %}
8
+ {%- set tools = none %}
9
+ {%- endif %}
10
+ {%- set user_messages = loop_messages | selectattr("role", "equalto", "user") | list %}
11
+
12
+ {%- for message in loop_messages | rejectattr("role", "equalto", "tool") | rejectattr("role", "equalto", "tool_results") | selectattr("tool_calls", "undefined") %}
13
+ {%- if (message["role"] == "user") != (loop.index0 % 2 == 0) %}
14
+ {{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
15
+ {%- endif %}
16
+ {%- endfor %}
17
+
18
+ {{- bos_token }}
19
+ {%- for message in loop_messages %}
20
+ {%- if message["role"] == "user" %}
21
+ {%- if tools is not none and (message == user_messages[-1]) %}
22
+ {{- "[AVAILABLE_TOOLS][" }}
23
+ {%- for tool in tools %}
24
+ {%- set tool = tool.function %}
25
+ {{- '{"type": "function", "function": {' }}
26
+ {%- for key, val in tool.items() if key != "return" %}
27
+ {%- if val is string %}
28
+ {{- '"' + key + '": "' + val + '"' }}
29
+ {%- else %}
30
+ {{- '"' + key + '": ' + val|tojson }}
31
+ {%- endif %}
32
+ {%- if not loop.last %}
33
+ {{- ", " }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {{- "}}" }}
37
+ {%- if not loop.last %}
38
+ {{- ", " }}
39
+ {%- else %}
40
+ {{- "]" }}
41
+ {%- endif %}
42
+ {%- endfor %}
43
+ {{- "[/AVAILABLE_TOOLS]" }}
44
+ {%- endif %}
45
+ {%- if loop.last and system_message is defined %}
46
+ {{- "[INST]" + system_message + "\n\n" + message["content"] + "[/INST]" }}
47
+ {%- else %}
48
+ {{- "[INST]" + message["content"] + "[/INST]" }}
49
+ {%- endif %}
50
+ {%- elif message["role"] == "tool_calls" or message.tool_calls is defined %}
51
+ {%- if message.tool_calls is defined %}
52
+ {%- set tool_calls = message.tool_calls %}
53
+ {%- else %}
54
+ {%- set tool_calls = message.content %}
55
+ {%- endif %}
56
+ {{- "[TOOL_CALLS][" }}
57
+ {%- for tool_call in tool_calls %}
58
+ {%- set out = tool_call.function|tojson %}
59
+ {{- out[:-1] }}
60
+ {%- if not tool_call.id is defined or tool_call.id|length != 9 %}
61
+ {{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
62
+ {%- endif %}
63
+ {{- ', "id": "' + tool_call.id + '"}' }}
64
+ {%- if not loop.last %}
65
+ {{- ", " }}
66
+ {%- else %}
67
+ {{- "]" + eos_token }}
68
+ {%- endif %}
69
+ {%- endfor %}
70
+ {%- elif message["role"] == "assistant" %}
71
+ {{- message["content"] + eos_token}}
72
+ {%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
73
+ {%- if message.content is defined and message.content.content is defined %}
74
+ {%- set content = message.content.content %}
75
+ {%- else %}
76
+ {%- set content = message.content %}
77
+ {%- endif %}
78
+ {{- '[TOOL_RESULTS]{"content": ' + content|string + ", " }}
79
+ {%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
80
+ {{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
81
+ {%- endif %}
82
+ {{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
83
+ {%- else %}
84
+ {{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
85
+ {%- endif %}
86
+ {%- endfor %}
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "MistralForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 1,
7
+ "eos_token_id": 2,
8
+ "head_dim": 128,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 5120,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 14336,
13
+ "max_position_embeddings": 1024000,
14
+ "model_type": "mistral",
15
+ "num_attention_heads": 32,
16
+ "num_hidden_layers": 40,
17
+ "num_key_value_heads": 8,
18
+ "pad_token_id": 10,
19
+ "rms_norm_eps": 1e-05,
20
+ "rope_theta": 1000000.0,
21
+ "sliding_window": null,
22
+ "tie_word_embeddings": false,
23
+ "torch_dtype": "bfloat16",
24
+ "transformers_version": "4.54.1",
25
+ "unsloth_version": "2024.8",
26
+ "use_cache": true,
27
+ "vocab_size": 131072
28
+ }
mergekit_config.yml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ merge_method: karcher
2
+ dtype: bfloat16
3
+ out_dtype: bfloat16
4
+ models:
5
+ - model: natong19/Mistral-Nemo-Instruct-2407-abliterated
6
+ - model: shisa-ai/shisa-v2-mistral-nemo-12b
7
+ - model: yamatazen/Himeyuri-Magnum-12B
8
+ tokenizer:
9
+ source: natong19/Mistral-Nemo-Instruct-2407-abliterated
model-00001-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c67e92d02859943243e26f98377375d737851cc2152bc0ccf0de972b6e228d4
3
+ size 1342177408
model-00002-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63d186eb720717761fe91fcb58ca7b581c7a1b0ae7dc7685c54d261ab4d37794
3
+ size 1342177424
model-00003-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a9ecfaeda37d3fdcfb5eda453a40b560389c4137bed0f2a4be31efafa1567f1
3
+ size 996189888
model-00004-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:268234d25e752cd6338e64f7fc5476aaf6ac3a30fbea7537f880b805b9010fd0
3
+ size 933265104
model-00005-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13633ec0bad18329f330de9e1757d87a40b50aeab44193642cfd2c30737fd328
3
+ size 943761344
model-00006-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a82fb46d9595121c6145d3f6b82ae6f21212ce9f9eb41b68a94da7fa33ff9fe
3
+ size 943761344
model-00007-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd4f86d821612849e8a9c65dd9097778c4c585ac08e80ac2f3c62da3c445a7ca
3
+ size 996179560
model-00008-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07dc19e53e269882e558c5e097a0b933aea95205a8df525f4315195134f12906
3
+ size 933265104
model-00009-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7359e80ce319edcbbdfb21073fd01b028ecb67f80e3c69205de0e7705b0a3ee
3
+ size 943761344
model-00010-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60d614b085d932860d51c166de910fb7dd1b3643e7ad0269c6f84b64de66f8d4
3
+ size 943761344
model-00011-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22608887d8a65eec67fea2ab5f46b9ee7ba6035bdf299e807fb4d4bcc2b420bd
3
+ size 996179560
model-00012-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:666d9c2bcbf9cac7b62e3785f618e0c6859bd19fd2a6ac97ebbf924fdb272ebc
3
+ size 933265104
model-00013-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa2c03772be65c1644852fbea56df6bcb584d57a26d9dd312d7d98ee0f11c75b
3
+ size 943761344
model-00014-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a55a5101a5f7a04f250818b90be0b8ab0c7d327cd3cfcfc64f58a4ac84d60e43
3
+ size 943761344
model-00015-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49e7f42fa590730ed1965c2dca2add861c839db4ec4c84b2efbb3c26f9061330
3
+ size 996179560
model-00016-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aececebc50635d8ed57e38ce384144d8ba34adc493b69cfa1fafaac8332f1fa1
3
+ size 933265096
model-00017-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c2759e674176853cd03e1719dbf31ec43ea21256ad999652c19791cd8b9f4a4
3
+ size 943761344
model-00018-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd522e4a4e63c3d88897c0d4fde15adbab12112371964c7277da8c951b859ba
3
+ size 943761344
model-00019-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1487b56791d4f987c3081b2fb9044bc895ceb9cee2d1eab72113c56a3c45eb63
3
+ size 996179560
model-00020-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73148be2cb4ae5912230d7b5c58bc1f474e70281da6539082021bc8134774cba
3
+ size 933265104
model-00021-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:411b8b0a6fb288ef833e198199ac68b633f5cbc6221f374b2e50697a9687c28c
3
+ size 943761344
model-00022-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:369dca6dee9d225c6d540d15123f94f81276c6ed083efb712598479ecab41518
3
+ size 943761336
model-00023-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfe6c38e4db0f833ec792c334cf506450015b023ec331f110d8b4afd7e1f5312
3
+ size 996179552
model-00024-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:098d7fc49f8709af32c4b741e27c60d6534e9b26a5385666fb0575b9d6ddf218
3
+ size 933265088
model-00025-of-00025.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1342ec0821c74c04db822dbf05efd80c760b612cf90fcff277f4e68cd6a38fba
3
+ size 796960560
model.safetensors.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {"mergekit_version": "0.1.3"}, "weight_map": {"lm_head.weight": "model-00001-of-00025.safetensors", "model.embed_tokens.weight": "model-00002-of-00025.safetensors", "model.layers.0.input_layernorm.weight": "model-00003-of-00025.safetensors", "model.layers.0.mlp.down_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.mlp.gate_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.mlp.up_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00003-of-00025.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00003-of-00025.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00003-of-00025.safetensors", "model.layers.1.input_layernorm.weight": "model-00003-of-00025.safetensors", "model.layers.1.mlp.down_proj.weight": "model-00003-of-00025.safetensors", "model.layers.1.mlp.gate_proj.weight": "model-00003-of-00025.safetensors", "model.layers.1.mlp.up_proj.weight": "model-00003-of-00025.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00003-of-00025.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00003-of-00025.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00004-of-00025.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00004-of-00025.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.input_layernorm.weight": "model-00004-of-00025.safetensors", "model.layers.10.mlp.down_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.mlp.gate_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.mlp.up_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00004-of-00025.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00004-of-00025.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00004-of-00025.safetensors", "model.layers.11.input_layernorm.weight": "model-00004-of-00025.safetensors", "model.layers.11.mlp.down_proj.weight": "model-00004-of-00025.safetensors", "model.layers.11.mlp.gate_proj.weight": "model-00004-of-00025.safetensors", "model.layers.11.mlp.up_proj.weight": "model-00005-of-00025.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00005-of-00025.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00005-of-00025.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00005-of-00025.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00005-of-00025.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.input_layernorm.weight": "model-00005-of-00025.safetensors", "model.layers.12.mlp.down_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.mlp.gate_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.mlp.up_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00005-of-00025.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00005-of-00025.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00005-of-00025.safetensors", "model.layers.13.input_layernorm.weight": "model-00005-of-00025.safetensors", "model.layers.13.mlp.down_proj.weight": "model-00005-of-00025.safetensors", "model.layers.13.mlp.gate_proj.weight": "model-00006-of-00025.safetensors", "model.layers.13.mlp.up_proj.weight": "model-00006-of-00025.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00006-of-00025.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00006-of-00025.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00006-of-00025.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00006-of-00025.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.input_layernorm.weight": "model-00006-of-00025.safetensors", "model.layers.14.mlp.down_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.mlp.gate_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.mlp.up_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00006-of-00025.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00006-of-00025.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00006-of-00025.safetensors", "model.layers.15.input_layernorm.weight": "model-00006-of-00025.safetensors", "model.layers.15.mlp.down_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.mlp.gate_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.mlp.up_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00007-of-00025.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00007-of-00025.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00007-of-00025.safetensors", "model.layers.16.input_layernorm.weight": "model-00007-of-00025.safetensors", "model.layers.16.mlp.down_proj.weight": "model-00007-of-00025.safetensors", "model.layers.16.mlp.gate_proj.weight": "model-00007-of-00025.safetensors", "model.layers.16.mlp.up_proj.weight": "model-00007-of-00025.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00007-of-00025.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00007-of-00025.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00008-of-00025.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00008-of-00025.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.input_layernorm.weight": "model-00008-of-00025.safetensors", "model.layers.17.mlp.down_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.mlp.gate_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.mlp.up_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00008-of-00025.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00008-of-00025.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00008-of-00025.safetensors", "model.layers.18.input_layernorm.weight": "model-00008-of-00025.safetensors", "model.layers.18.mlp.down_proj.weight": "model-00008-of-00025.safetensors", "model.layers.18.mlp.gate_proj.weight": "model-00008-of-00025.safetensors", "model.layers.18.mlp.up_proj.weight": "model-00009-of-00025.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00009-of-00025.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00009-of-00025.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00009-of-00025.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00009-of-00025.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.input_layernorm.weight": "model-00009-of-00025.safetensors", "model.layers.19.mlp.down_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.mlp.gate_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.mlp.up_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00009-of-00025.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00009-of-00025.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00009-of-00025.safetensors", "model.layers.2.input_layernorm.weight": "model-00009-of-00025.safetensors", "model.layers.2.mlp.down_proj.weight": "model-00009-of-00025.safetensors", "model.layers.2.mlp.gate_proj.weight": "model-00010-of-00025.safetensors", "model.layers.2.mlp.up_proj.weight": "model-00010-of-00025.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00010-of-00025.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00010-of-00025.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00010-of-00025.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00010-of-00025.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.input_layernorm.weight": "model-00010-of-00025.safetensors", "model.layers.20.mlp.down_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.mlp.gate_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.mlp.up_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00010-of-00025.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00010-of-00025.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00010-of-00025.safetensors", "model.layers.21.input_layernorm.weight": "model-00010-of-00025.safetensors", "model.layers.21.mlp.down_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.mlp.gate_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.mlp.up_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00011-of-00025.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00011-of-00025.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00011-of-00025.safetensors", "model.layers.22.input_layernorm.weight": "model-00011-of-00025.safetensors", "model.layers.22.mlp.down_proj.weight": "model-00011-of-00025.safetensors", "model.layers.22.mlp.gate_proj.weight": "model-00011-of-00025.safetensors", "model.layers.22.mlp.up_proj.weight": "model-00011-of-00025.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00011-of-00025.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00011-of-00025.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00012-of-00025.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00012-of-00025.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.input_layernorm.weight": "model-00012-of-00025.safetensors", "model.layers.23.mlp.down_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.mlp.gate_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.mlp.up_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00012-of-00025.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00012-of-00025.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00012-of-00025.safetensors", "model.layers.24.input_layernorm.weight": "model-00012-of-00025.safetensors", "model.layers.24.mlp.down_proj.weight": "model-00012-of-00025.safetensors", "model.layers.24.mlp.gate_proj.weight": "model-00012-of-00025.safetensors", "model.layers.24.mlp.up_proj.weight": "model-00013-of-00025.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00013-of-00025.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00013-of-00025.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00013-of-00025.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00013-of-00025.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.input_layernorm.weight": "model-00013-of-00025.safetensors", "model.layers.25.mlp.down_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.mlp.gate_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.mlp.up_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00013-of-00025.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00013-of-00025.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00013-of-00025.safetensors", "model.layers.26.input_layernorm.weight": "model-00013-of-00025.safetensors", "model.layers.26.mlp.down_proj.weight": "model-00013-of-00025.safetensors", "model.layers.26.mlp.gate_proj.weight": "model-00014-of-00025.safetensors", "model.layers.26.mlp.up_proj.weight": "model-00014-of-00025.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00014-of-00025.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00014-of-00025.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00014-of-00025.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00014-of-00025.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.input_layernorm.weight": "model-00014-of-00025.safetensors", "model.layers.27.mlp.down_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.mlp.gate_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.mlp.up_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00014-of-00025.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00014-of-00025.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00014-of-00025.safetensors", "model.layers.28.input_layernorm.weight": "model-00014-of-00025.safetensors", "model.layers.28.mlp.down_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.mlp.gate_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.mlp.up_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00015-of-00025.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00015-of-00025.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00015-of-00025.safetensors", "model.layers.29.input_layernorm.weight": "model-00015-of-00025.safetensors", "model.layers.29.mlp.down_proj.weight": "model-00015-of-00025.safetensors", "model.layers.29.mlp.gate_proj.weight": "model-00015-of-00025.safetensors", "model.layers.29.mlp.up_proj.weight": "model-00015-of-00025.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00015-of-00025.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00015-of-00025.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00016-of-00025.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00016-of-00025.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.input_layernorm.weight": "model-00016-of-00025.safetensors", "model.layers.3.mlp.down_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.mlp.gate_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.mlp.up_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00016-of-00025.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00016-of-00025.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00016-of-00025.safetensors", "model.layers.30.input_layernorm.weight": "model-00016-of-00025.safetensors", "model.layers.30.mlp.down_proj.weight": "model-00016-of-00025.safetensors", "model.layers.30.mlp.gate_proj.weight": "model-00016-of-00025.safetensors", "model.layers.30.mlp.up_proj.weight": "model-00017-of-00025.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00017-of-00025.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00017-of-00025.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00017-of-00025.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00017-of-00025.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.input_layernorm.weight": "model-00017-of-00025.safetensors", "model.layers.31.mlp.down_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.mlp.gate_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.mlp.up_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00017-of-00025.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00017-of-00025.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00017-of-00025.safetensors", "model.layers.32.input_layernorm.weight": "model-00017-of-00025.safetensors", "model.layers.32.mlp.down_proj.weight": "model-00017-of-00025.safetensors", "model.layers.32.mlp.gate_proj.weight": "model-00018-of-00025.safetensors", "model.layers.32.mlp.up_proj.weight": "model-00018-of-00025.safetensors", "model.layers.32.post_attention_layernorm.weight": "model-00018-of-00025.safetensors", "model.layers.32.self_attn.k_proj.weight": "model-00018-of-00025.safetensors", "model.layers.32.self_attn.o_proj.weight": "model-00018-of-00025.safetensors", "model.layers.32.self_attn.q_proj.weight": "model-00018-of-00025.safetensors", "model.layers.32.self_attn.v_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.input_layernorm.weight": "model-00018-of-00025.safetensors", "model.layers.33.mlp.down_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.mlp.gate_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.mlp.up_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.post_attention_layernorm.weight": "model-00018-of-00025.safetensors", "model.layers.33.self_attn.k_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.self_attn.o_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.self_attn.q_proj.weight": "model-00018-of-00025.safetensors", "model.layers.33.self_attn.v_proj.weight": "model-00018-of-00025.safetensors", "model.layers.34.input_layernorm.weight": "model-00018-of-00025.safetensors", "model.layers.34.mlp.down_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.mlp.gate_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.mlp.up_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.post_attention_layernorm.weight": "model-00019-of-00025.safetensors", "model.layers.34.self_attn.k_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.self_attn.o_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.self_attn.q_proj.weight": "model-00019-of-00025.safetensors", "model.layers.34.self_attn.v_proj.weight": "model-00019-of-00025.safetensors", "model.layers.35.input_layernorm.weight": "model-00019-of-00025.safetensors", "model.layers.35.mlp.down_proj.weight": "model-00019-of-00025.safetensors", "model.layers.35.mlp.gate_proj.weight": "model-00019-of-00025.safetensors", "model.layers.35.mlp.up_proj.weight": "model-00019-of-00025.safetensors", "model.layers.35.post_attention_layernorm.weight": "model-00019-of-00025.safetensors", "model.layers.35.self_attn.k_proj.weight": "model-00019-of-00025.safetensors", "model.layers.35.self_attn.o_proj.weight": "model-00020-of-00025.safetensors", "model.layers.35.self_attn.q_proj.weight": "model-00020-of-00025.safetensors", "model.layers.35.self_attn.v_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.input_layernorm.weight": "model-00020-of-00025.safetensors", "model.layers.36.mlp.down_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.mlp.gate_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.mlp.up_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.post_attention_layernorm.weight": "model-00020-of-00025.safetensors", "model.layers.36.self_attn.k_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.self_attn.o_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.self_attn.q_proj.weight": "model-00020-of-00025.safetensors", "model.layers.36.self_attn.v_proj.weight": "model-00020-of-00025.safetensors", "model.layers.37.input_layernorm.weight": "model-00020-of-00025.safetensors", "model.layers.37.mlp.down_proj.weight": "model-00020-of-00025.safetensors", "model.layers.37.mlp.gate_proj.weight": "model-00020-of-00025.safetensors", "model.layers.37.mlp.up_proj.weight": "model-00021-of-00025.safetensors", "model.layers.37.post_attention_layernorm.weight": "model-00021-of-00025.safetensors", "model.layers.37.self_attn.k_proj.weight": "model-00021-of-00025.safetensors", "model.layers.37.self_attn.o_proj.weight": "model-00021-of-00025.safetensors", "model.layers.37.self_attn.q_proj.weight": "model-00021-of-00025.safetensors", "model.layers.37.self_attn.v_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.input_layernorm.weight": "model-00021-of-00025.safetensors", "model.layers.38.mlp.down_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.mlp.gate_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.mlp.up_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.post_attention_layernorm.weight": "model-00021-of-00025.safetensors", "model.layers.38.self_attn.k_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.self_attn.o_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.self_attn.q_proj.weight": "model-00021-of-00025.safetensors", "model.layers.38.self_attn.v_proj.weight": "model-00021-of-00025.safetensors", "model.layers.39.input_layernorm.weight": "model-00021-of-00025.safetensors", "model.layers.39.mlp.down_proj.weight": "model-00021-of-00025.safetensors", "model.layers.39.mlp.gate_proj.weight": "model-00022-of-00025.safetensors", "model.layers.39.mlp.up_proj.weight": "model-00022-of-00025.safetensors", "model.layers.39.post_attention_layernorm.weight": "model-00022-of-00025.safetensors", "model.layers.39.self_attn.k_proj.weight": "model-00022-of-00025.safetensors", "model.layers.39.self_attn.o_proj.weight": "model-00022-of-00025.safetensors", "model.layers.39.self_attn.q_proj.weight": "model-00022-of-00025.safetensors", "model.layers.39.self_attn.v_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.input_layernorm.weight": "model-00022-of-00025.safetensors", "model.layers.4.mlp.down_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.mlp.gate_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.mlp.up_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00022-of-00025.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00022-of-00025.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00022-of-00025.safetensors", "model.layers.5.input_layernorm.weight": "model-00022-of-00025.safetensors", "model.layers.5.mlp.down_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.mlp.gate_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.mlp.up_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00023-of-00025.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00023-of-00025.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00023-of-00025.safetensors", "model.layers.6.input_layernorm.weight": "model-00023-of-00025.safetensors", "model.layers.6.mlp.down_proj.weight": "model-00023-of-00025.safetensors", "model.layers.6.mlp.gate_proj.weight": "model-00023-of-00025.safetensors", "model.layers.6.mlp.up_proj.weight": "model-00023-of-00025.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00023-of-00025.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00023-of-00025.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00024-of-00025.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00024-of-00025.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.input_layernorm.weight": "model-00024-of-00025.safetensors", "model.layers.7.mlp.down_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.mlp.gate_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.mlp.up_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00024-of-00025.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00024-of-00025.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00024-of-00025.safetensors", "model.layers.8.input_layernorm.weight": "model-00024-of-00025.safetensors", "model.layers.8.mlp.down_proj.weight": "model-00024-of-00025.safetensors", "model.layers.8.mlp.gate_proj.weight": "model-00024-of-00025.safetensors", "model.layers.8.mlp.up_proj.weight": "model-00025-of-00025.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00025-of-00025.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00025-of-00025.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00025-of-00025.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00025-of-00025.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.input_layernorm.weight": "model-00025-of-00025.safetensors", "model.layers.9.mlp.down_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.mlp.gate_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.mlp.up_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00025-of-00025.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00025-of-00025.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00025-of-00025.safetensors", "model.norm.weight": "model-00025-of-00025.safetensors"}}
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<pad>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
3
+ size 17078292
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff