Upload 14 files
Browse files- .gitattributes +2 -0
- added_tokens.json +28 -0
- config.json +39 -0
- generation_config.json +13 -0
- merges.txt +0 -0
- openvino_detokenizer.bin +3 -0
- openvino_detokenizer.xml +219 -0
- openvino_model.bin +3 -0
- openvino_model.xml +3 -0
- openvino_tokenizer.bin +3 -0
- openvino_tokenizer.xml +721 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +240 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ 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 |
+
openvino_model.xml filter=lfs diff=lfs merge=lfs -text
|
37 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
added_tokens.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</think>": 151668,
|
3 |
+
"</tool_call>": 151658,
|
4 |
+
"</tool_response>": 151666,
|
5 |
+
"<think>": 151667,
|
6 |
+
"<tool_call>": 151657,
|
7 |
+
"<tool_response>": 151665,
|
8 |
+
"<|box_end|>": 151649,
|
9 |
+
"<|box_start|>": 151648,
|
10 |
+
"<|endoftext|>": 151643,
|
11 |
+
"<|file_sep|>": 151664,
|
12 |
+
"<|fim_middle|>": 151660,
|
13 |
+
"<|fim_pad|>": 151662,
|
14 |
+
"<|fim_prefix|>": 151659,
|
15 |
+
"<|fim_suffix|>": 151661,
|
16 |
+
"<|im_end|>": 151645,
|
17 |
+
"<|im_start|>": 151644,
|
18 |
+
"<|image_pad|>": 151655,
|
19 |
+
"<|object_ref_end|>": 151647,
|
20 |
+
"<|object_ref_start|>": 151646,
|
21 |
+
"<|quad_end|>": 151651,
|
22 |
+
"<|quad_start|>": 151650,
|
23 |
+
"<|repo_name|>": 151663,
|
24 |
+
"<|video_pad|>": 151656,
|
25 |
+
"<|vision_end|>": 151653,
|
26 |
+
"<|vision_pad|>": 151654,
|
27 |
+
"<|vision_start|>": 151652
|
28 |
+
}
|
config.json
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_attn_implementation_autoset": true,
|
3 |
+
"architectures": [
|
4 |
+
"Qwen3MoeForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": false,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"bos_token_id": 151643,
|
9 |
+
"decoder_sparse_step": 1,
|
10 |
+
"eos_token_id": 151645,
|
11 |
+
"head_dim": 128,
|
12 |
+
"hidden_act": "silu",
|
13 |
+
"hidden_size": 2048,
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 6144,
|
16 |
+
"max_position_embeddings": 40960,
|
17 |
+
"max_window_layers": 48,
|
18 |
+
"mlp_only_layers": [],
|
19 |
+
"model_type": "qwen3_moe",
|
20 |
+
"moe_intermediate_size": 768,
|
21 |
+
"norm_topk_prob": true,
|
22 |
+
"num_attention_heads": 32,
|
23 |
+
"num_experts": 128,
|
24 |
+
"num_experts_per_tok": 8,
|
25 |
+
"num_hidden_layers": 48,
|
26 |
+
"num_key_value_heads": 4,
|
27 |
+
"output_router_logits": false,
|
28 |
+
"rms_norm_eps": 1e-06,
|
29 |
+
"rope_scaling": null,
|
30 |
+
"rope_theta": 1000000.0,
|
31 |
+
"router_aux_loss_coef": 0.001,
|
32 |
+
"sliding_window": null,
|
33 |
+
"tie_word_embeddings": false,
|
34 |
+
"torch_dtype": "bfloat16",
|
35 |
+
"transformers_version": "4.51.3",
|
36 |
+
"use_cache": true,
|
37 |
+
"use_sliding_window": false,
|
38 |
+
"vocab_size": 151936
|
39 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
151645,
|
6 |
+
151643
|
7 |
+
],
|
8 |
+
"pad_token_id": 151643,
|
9 |
+
"temperature": 0.6,
|
10 |
+
"top_k": 20,
|
11 |
+
"top_p": 0.95,
|
12 |
+
"transformers_version": "4.51.3"
|
13 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
openvino_detokenizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d73093f72c80ebcaffb76a192727170ecd3c6a06c4df52df0e76b3f70ad9d7f7
|
3 |
+
size 2189717
|
openvino_detokenizer.xml
ADDED
@@ -0,0 +1,219 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<net name="detokenizer" version="11">
|
3 |
+
<layers>
|
4 |
+
<layer id="0" name="Parameter_6888385" type="Parameter" version="opset1">
|
5 |
+
<data shape="?,?" element_type="i64" />
|
6 |
+
<output>
|
7 |
+
<port id="0" precision="I64" names="Parameter_6888385">
|
8 |
+
<dim>-1</dim>
|
9 |
+
<dim>-1</dim>
|
10 |
+
</port>
|
11 |
+
</output>
|
12 |
+
</layer>
|
13 |
+
<layer id="1" name="Convert_6888555" type="Convert" version="opset1">
|
14 |
+
<data destination_type="i32" />
|
15 |
+
<input>
|
16 |
+
<port id="0" precision="I64">
|
17 |
+
<dim>-1</dim>
|
18 |
+
<dim>-1</dim>
|
19 |
+
</port>
|
20 |
+
</input>
|
21 |
+
<output>
|
22 |
+
<port id="1" precision="I32">
|
23 |
+
<dim>-1</dim>
|
24 |
+
<dim>-1</dim>
|
25 |
+
</port>
|
26 |
+
</output>
|
27 |
+
</layer>
|
28 |
+
<layer id="2" name="Constant_6888387" type="Const" version="opset1">
|
29 |
+
<data element_type="i32" shape="151669" offset="0" size="606676" />
|
30 |
+
<output>
|
31 |
+
<port id="0" precision="I32">
|
32 |
+
<dim>151669</dim>
|
33 |
+
</port>
|
34 |
+
</output>
|
35 |
+
</layer>
|
36 |
+
<layer id="3" name="Constant_6888389" type="Const" version="opset1">
|
37 |
+
<data element_type="i32" shape="151669" offset="606676" size="606676" />
|
38 |
+
<output>
|
39 |
+
<port id="0" precision="I32">
|
40 |
+
<dim>151669</dim>
|
41 |
+
</port>
|
42 |
+
</output>
|
43 |
+
</layer>
|
44 |
+
<layer id="4" name="Constant_6888391" type="Const" version="opset1">
|
45 |
+
<data element_type="u8" shape="976309" offset="1213352" size="976309" />
|
46 |
+
<output>
|
47 |
+
<port id="0" precision="U8">
|
48 |
+
<dim>976309</dim>
|
49 |
+
</port>
|
50 |
+
</output>
|
51 |
+
</layer>
|
52 |
+
<layer id="5" name="Slice_6888396" type="Const" version="opset1">
|
53 |
+
<data element_type="i32" shape="14" offset="2189661" size="56" />
|
54 |
+
<output>
|
55 |
+
<port id="0" precision="I32">
|
56 |
+
<dim>14</dim>
|
57 |
+
</port>
|
58 |
+
</output>
|
59 |
+
</layer>
|
60 |
+
<layer id="6" name="VocabDecoder_6888398" type="VocabDecoder" version="extension">
|
61 |
+
<data skip_tokens="" />
|
62 |
+
<input>
|
63 |
+
<port id="0" precision="I32">
|
64 |
+
<dim>-1</dim>
|
65 |
+
<dim>-1</dim>
|
66 |
+
</port>
|
67 |
+
<port id="1" precision="I32">
|
68 |
+
<dim>151669</dim>
|
69 |
+
</port>
|
70 |
+
<port id="2" precision="I32">
|
71 |
+
<dim>151669</dim>
|
72 |
+
</port>
|
73 |
+
<port id="3" precision="U8">
|
74 |
+
<dim>976309</dim>
|
75 |
+
</port>
|
76 |
+
<port id="4" precision="I32">
|
77 |
+
<dim>14</dim>
|
78 |
+
</port>
|
79 |
+
</input>
|
80 |
+
<output>
|
81 |
+
<port id="5" precision="I32">
|
82 |
+
<dim>-1</dim>
|
83 |
+
</port>
|
84 |
+
<port id="6" precision="I32">
|
85 |
+
<dim>-1</dim>
|
86 |
+
</port>
|
87 |
+
<port id="7" precision="I32">
|
88 |
+
<dim>-1</dim>
|
89 |
+
</port>
|
90 |
+
<port id="8" precision="I32">
|
91 |
+
<dim>-1</dim>
|
92 |
+
</port>
|
93 |
+
<port id="9" precision="U8">
|
94 |
+
<dim>-1</dim>
|
95 |
+
</port>
|
96 |
+
</output>
|
97 |
+
</layer>
|
98 |
+
<layer id="7" name="FuzeRagged_6888399" type="FuzeRagged" version="extension">
|
99 |
+
<input>
|
100 |
+
<port id="0" precision="I32">
|
101 |
+
<dim>-1</dim>
|
102 |
+
</port>
|
103 |
+
<port id="1" precision="I32">
|
104 |
+
<dim>-1</dim>
|
105 |
+
</port>
|
106 |
+
<port id="2" precision="I32">
|
107 |
+
<dim>-1</dim>
|
108 |
+
</port>
|
109 |
+
<port id="3" precision="I32">
|
110 |
+
<dim>-1</dim>
|
111 |
+
</port>
|
112 |
+
</input>
|
113 |
+
<output>
|
114 |
+
<port id="4" precision="I32">
|
115 |
+
<dim>-1</dim>
|
116 |
+
</port>
|
117 |
+
<port id="5" precision="I32">
|
118 |
+
<dim>-1</dim>
|
119 |
+
</port>
|
120 |
+
</output>
|
121 |
+
</layer>
|
122 |
+
<layer id="8" name="UTF8Validate_6888400" type="UTF8Validate" version="extension">
|
123 |
+
<data replace_mode="true" />
|
124 |
+
<input>
|
125 |
+
<port id="0" precision="I32">
|
126 |
+
<dim>-1</dim>
|
127 |
+
</port>
|
128 |
+
<port id="1" precision="I32">
|
129 |
+
<dim>-1</dim>
|
130 |
+
</port>
|
131 |
+
<port id="2" precision="U8">
|
132 |
+
<dim>-1</dim>
|
133 |
+
</port>
|
134 |
+
</input>
|
135 |
+
<output>
|
136 |
+
<port id="3" precision="I32">
|
137 |
+
<dim>-1</dim>
|
138 |
+
</port>
|
139 |
+
<port id="4" precision="I32">
|
140 |
+
<dim>-1</dim>
|
141 |
+
</port>
|
142 |
+
<port id="5" precision="U8">
|
143 |
+
<dim>-1</dim>
|
144 |
+
</port>
|
145 |
+
</output>
|
146 |
+
</layer>
|
147 |
+
<layer id="9" name="StringTensorPack_6888401" type="StringTensorPack" version="opset15">
|
148 |
+
<input>
|
149 |
+
<port id="0" precision="I32">
|
150 |
+
<dim>-1</dim>
|
151 |
+
</port>
|
152 |
+
<port id="1" precision="I32">
|
153 |
+
<dim>-1</dim>
|
154 |
+
</port>
|
155 |
+
<port id="2" precision="U8">
|
156 |
+
<dim>-1</dim>
|
157 |
+
</port>
|
158 |
+
</input>
|
159 |
+
<output>
|
160 |
+
<port id="3" precision="STRING" names="Result_6888402,string_output">
|
161 |
+
<dim>-1</dim>
|
162 |
+
</port>
|
163 |
+
</output>
|
164 |
+
</layer>
|
165 |
+
<layer id="10" name="Result_6888402" type="Result" version="opset1" output_names="Result_6888402,string_output">
|
166 |
+
<input>
|
167 |
+
<port id="0" precision="STRING">
|
168 |
+
<dim>-1</dim>
|
169 |
+
</port>
|
170 |
+
</input>
|
171 |
+
</layer>
|
172 |
+
</layers>
|
173 |
+
<edges>
|
174 |
+
<edge from-layer="0" from-port="0" to-layer="1" to-port="0" />
|
175 |
+
<edge from-layer="1" from-port="1" to-layer="6" to-port="0" />
|
176 |
+
<edge from-layer="2" from-port="0" to-layer="6" to-port="1" />
|
177 |
+
<edge from-layer="3" from-port="0" to-layer="6" to-port="2" />
|
178 |
+
<edge from-layer="4" from-port="0" to-layer="6" to-port="3" />
|
179 |
+
<edge from-layer="5" from-port="0" to-layer="6" to-port="4" />
|
180 |
+
<edge from-layer="6" from-port="7" to-layer="7" to-port="2" />
|
181 |
+
<edge from-layer="6" from-port="9" to-layer="8" to-port="2" />
|
182 |
+
<edge from-layer="6" from-port="8" to-layer="7" to-port="3" />
|
183 |
+
<edge from-layer="6" from-port="6" to-layer="7" to-port="1" />
|
184 |
+
<edge from-layer="6" from-port="5" to-layer="7" to-port="0" />
|
185 |
+
<edge from-layer="7" from-port="4" to-layer="8" to-port="0" />
|
186 |
+
<edge from-layer="7" from-port="5" to-layer="8" to-port="1" />
|
187 |
+
<edge from-layer="8" from-port="3" to-layer="9" to-port="0" />
|
188 |
+
<edge from-layer="8" from-port="4" to-layer="9" to-port="1" />
|
189 |
+
<edge from-layer="8" from-port="5" to-layer="9" to-port="2" />
|
190 |
+
<edge from-layer="9" from-port="3" to-layer="10" to-port="0" />
|
191 |
+
</edges>
|
192 |
+
<rt_info>
|
193 |
+
<add_attention_mask value="True" />
|
194 |
+
<add_prefix_space />
|
195 |
+
<add_special_tokens value="True" />
|
196 |
+
<chat_template value="{%- if tools %} {{- '<|im_start|>system\n' }} {%- if messages[0].role == 'system' %} {{- messages[0].content + '\n\n' }} {%- endif %} {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }} {%- for tool in tools %} {{- "\n" }} {{- tool | tojson }} {%- endfor %} {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }} {%- else %} {%- if messages[0].role == 'system' %} {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} {%- endif %} {%- endif %} {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} {%- for message in messages[::-1] %} {%- set index = (messages|length - 1) - loop.index0 %} {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %} {%- set ns.multi_step_tool = false %} {%- set ns.last_query_index = index %} {%- endif %} {%- endfor %} {%- for message in messages %} {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} {%- elif message.role == "assistant" %} {%- set content = message.content %} {%- set reasoning_content = '' %} {%- if message.reasoning_content is defined and message.reasoning_content is not none %} {%- set reasoning_content = message.reasoning_content %} {%- else %} {%- if '</think>' in message.content %} {%- set content = message.content.split('</think>')[-1].lstrip('\n') %} {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %} {%- endif %} {%- endif %} {%- if loop.index0 > ns.last_query_index %} {%- if loop.last or (not loop.last and reasoning_content) %} {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }} {%- else %} {{- '<|im_start|>' + message.role + '\n' + content }} {%- endif %} {%- else %} {{- '<|im_start|>' + message.role + '\n' + content }} {%- endif %} {%- if message.tool_calls %} {%- for tool_call in message.tool_calls %} {%- if (loop.first and content) or (not loop.first) %} {{- '\n' }} {%- endif %} {%- if tool_call.function %} {%- set tool_call = tool_call.function %} {%- endif %} {{- '<tool_call>\n{"name": "' }} {{- tool_call.name }} {{- '", "arguments": ' }} {%- if tool_call.arguments is string %} {{- tool_call.arguments }} {%- else %} {{- tool_call.arguments | tojson }} {%- endif %} {{- '}\n</tool_call>' }} {%- endfor %} {%- endif %} {{- '<|im_end|>\n' }} {%- elif message.role == "tool" %} {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} {{- '<|im_start|>user' }} {%- endif %} {{- '\n<tool_response>\n' }} {{- message.content }} {{- '\n</tool_response>' }} {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} {{- '<|im_end|>\n' }} {%- endif %} {%- endif %} {%- endfor %} {%- if add_generation_prompt %} {{- '<|im_start|>assistant\n' }} {%- if enable_thinking is defined and enable_thinking is false %} {{- '<think>\n\n</think>\n\n' }} {%- endif %} {%- endif %}" />
|
197 |
+
<clean_up_tokenization_spaces />
|
198 |
+
<detokenizer_input_type value="i64" />
|
199 |
+
<eos_token_id value="151645" />
|
200 |
+
<handle_special_tokens_with_re />
|
201 |
+
<max_length />
|
202 |
+
<number_of_inputs value="1" />
|
203 |
+
<openvino_tokenizers_version value="2025.1.0.0-523-710ddf14de8" />
|
204 |
+
<openvino_version value="2025.1.0-18503-6fec06580ab-releases/2025/1" />
|
205 |
+
<original_post_processor_template value="{"type": "ByteLevel", "add_prefix_space": false, "trim_offsets": false, "use_regex": false}" />
|
206 |
+
<original_tokenizer_class value="<class 'transformers.models.qwen2.tokenization_qwen2_fast.Qwen2TokenizerFast'>" />
|
207 |
+
<pad_token_id value="151643" />
|
208 |
+
<sentencepiece_version value="0.2.0" />
|
209 |
+
<skip_special_tokens value="True" />
|
210 |
+
<streaming_detokenizer value="False" />
|
211 |
+
<tokenizer_output_type value="i64" />
|
212 |
+
<tokenizers_version value="0.21.1" />
|
213 |
+
<transformers_version value="4.51.3" />
|
214 |
+
<use_max_padding value="False" />
|
215 |
+
<use_sentencepiece_backend value="False" />
|
216 |
+
<utf8_replace_mode value="replace" />
|
217 |
+
<with_detokenizer value="True" />
|
218 |
+
</rt_info>
|
219 |
+
</net>
|
openvino_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:60e5b0e681a9de286c1ecafbdfed085897d08223dac9004efc2b3e3091d26e42
|
3 |
+
size 16046215060
|
openvino_model.xml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:298508bc8f8f7a67619df19f6a900e6dcd7a2599c0bf9c5f638d0995cf9c69ae
|
3 |
+
size 174114223
|
openvino_tokenizer.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e31f7285e95a4d08f1e5516c5099f96e169253100b4919db936990fa1923395
|
3 |
+
size 5588868
|
openvino_tokenizer.xml
ADDED
@@ -0,0 +1,721 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<net name="tokenizer" version="11">
|
3 |
+
<layers>
|
4 |
+
<layer id="0" name="Parameter_6888266" type="Parameter" version="opset1">
|
5 |
+
<data shape="?" element_type="string" />
|
6 |
+
<output>
|
7 |
+
<port id="0" precision="STRING" names="Parameter_6888266">
|
8 |
+
<dim>-1</dim>
|
9 |
+
</port>
|
10 |
+
</output>
|
11 |
+
</layer>
|
12 |
+
<layer id="1" name="Constant_6888272" type="Const" version="opset1">
|
13 |
+
<data element_type="i64" shape="" offset="0" size="8" />
|
14 |
+
<output>
|
15 |
+
<port id="0" precision="I64" />
|
16 |
+
</output>
|
17 |
+
</layer>
|
18 |
+
<layer id="2" name="StringTensorUnpack_6888267" type="StringTensorUnpack" version="opset15">
|
19 |
+
<input>
|
20 |
+
<port id="0" precision="STRING">
|
21 |
+
<dim>-1</dim>
|
22 |
+
</port>
|
23 |
+
</input>
|
24 |
+
<output>
|
25 |
+
<port id="1" precision="I32">
|
26 |
+
<dim>-1</dim>
|
27 |
+
</port>
|
28 |
+
<port id="2" precision="I32">
|
29 |
+
<dim>-1</dim>
|
30 |
+
</port>
|
31 |
+
<port id="3" precision="U8">
|
32 |
+
<dim>-1</dim>
|
33 |
+
</port>
|
34 |
+
</output>
|
35 |
+
</layer>
|
36 |
+
<layer id="3" name="ShapeOf_6888268" type="ShapeOf" version="opset3">
|
37 |
+
<data output_type="i64" />
|
38 |
+
<input>
|
39 |
+
<port id="0" precision="I32">
|
40 |
+
<dim>-1</dim>
|
41 |
+
</port>
|
42 |
+
</input>
|
43 |
+
<output>
|
44 |
+
<port id="1" precision="I64">
|
45 |
+
<dim>1</dim>
|
46 |
+
</port>
|
47 |
+
</output>
|
48 |
+
</layer>
|
49 |
+
<layer id="4" name="Constant_6888269" type="Const" version="opset1">
|
50 |
+
<data element_type="i64" shape="" offset="0" size="8" />
|
51 |
+
<output>
|
52 |
+
<port id="0" precision="I64" />
|
53 |
+
</output>
|
54 |
+
</layer>
|
55 |
+
<layer id="5" name="Constant_6888270" type="Const" version="opset1">
|
56 |
+
<data element_type="i64" shape="" offset="0" size="8" />
|
57 |
+
<output>
|
58 |
+
<port id="0" precision="I64" />
|
59 |
+
</output>
|
60 |
+
</layer>
|
61 |
+
<layer id="6" name="Gather_6888271" type="Gather" version="opset8">
|
62 |
+
<data batch_dims="0" />
|
63 |
+
<input>
|
64 |
+
<port id="0" precision="I64">
|
65 |
+
<dim>1</dim>
|
66 |
+
</port>
|
67 |
+
<port id="1" precision="I64" />
|
68 |
+
<port id="2" precision="I64" />
|
69 |
+
</input>
|
70 |
+
<output>
|
71 |
+
<port id="3" precision="I64" />
|
72 |
+
</output>
|
73 |
+
</layer>
|
74 |
+
<layer id="7" name="Constant_6888273" type="Const" version="opset1">
|
75 |
+
<data element_type="i64" shape="" offset="8" size="8" />
|
76 |
+
<output>
|
77 |
+
<port id="0" precision="I64" />
|
78 |
+
</output>
|
79 |
+
</layer>
|
80 |
+
<layer id="8" name="Range_6888274" type="Range" version="opset4">
|
81 |
+
<data output_type="i32" />
|
82 |
+
<input>
|
83 |
+
<port id="0" precision="I64" />
|
84 |
+
<port id="1" precision="I64" />
|
85 |
+
<port id="2" precision="I64" />
|
86 |
+
</input>
|
87 |
+
<output>
|
88 |
+
<port id="3" precision="I32">
|
89 |
+
<dim>-1</dim>
|
90 |
+
</port>
|
91 |
+
</output>
|
92 |
+
</layer>
|
93 |
+
<layer id="9" name="Constant_6888275" type="Const" version="opset1">
|
94 |
+
<data element_type="i64" shape="" offset="8" size="8" />
|
95 |
+
<output>
|
96 |
+
<port id="0" precision="I64" />
|
97 |
+
</output>
|
98 |
+
</layer>
|
99 |
+
<layer id="10" name="Constant_6888276" type="Const" version="opset1">
|
100 |
+
<data element_type="i64" shape="" offset="8" size="8" />
|
101 |
+
<output>
|
102 |
+
<port id="0" precision="I64" />
|
103 |
+
</output>
|
104 |
+
</layer>
|
105 |
+
<layer id="11" name="Add_6888277" type="Add" version="opset1">
|
106 |
+
<data auto_broadcast="numpy" />
|
107 |
+
<input>
|
108 |
+
<port id="0" precision="I64" />
|
109 |
+
<port id="1" precision="I64" />
|
110 |
+
</input>
|
111 |
+
<output>
|
112 |
+
<port id="2" precision="I64" />
|
113 |
+
</output>
|
114 |
+
</layer>
|
115 |
+
<layer id="12" name="Constant_6888278" type="Const" version="opset1">
|
116 |
+
<data element_type="i64" shape="" offset="8" size="8" />
|
117 |
+
<output>
|
118 |
+
<port id="0" precision="I64" />
|
119 |
+
</output>
|
120 |
+
</layer>
|
121 |
+
<layer id="13" name="Range_6888279" type="Range" version="opset4">
|
122 |
+
<data output_type="i32" />
|
123 |
+
<input>
|
124 |
+
<port id="0" precision="I64" />
|
125 |
+
<port id="1" precision="I64" />
|
126 |
+
<port id="2" precision="I64" />
|
127 |
+
</input>
|
128 |
+
<output>
|
129 |
+
<port id="3" precision="I32">
|
130 |
+
<dim>-1</dim>
|
131 |
+
</port>
|
132 |
+
</output>
|
133 |
+
</layer>
|
134 |
+
<layer id="14" name="Constant_6888341" type="Const" version="opset1">
|
135 |
+
<data element_type="u8" shape="512" offset="16" size="512" />
|
136 |
+
<output>
|
137 |
+
<port id="0" precision="U8">
|
138 |
+
<dim>512</dim>
|
139 |
+
</port>
|
140 |
+
</output>
|
141 |
+
</layer>
|
142 |
+
<layer id="15" name="SpecialTokensSplit_6888342" type="SpecialTokensSplit" version="extension">
|
143 |
+
<input>
|
144 |
+
<port id="0" precision="I32">
|
145 |
+
<dim>-1</dim>
|
146 |
+
</port>
|
147 |
+
<port id="1" precision="I32">
|
148 |
+
<dim>-1</dim>
|
149 |
+
</port>
|
150 |
+
<port id="2" precision="I32">
|
151 |
+
<dim>-1</dim>
|
152 |
+
</port>
|
153 |
+
<port id="3" precision="I32">
|
154 |
+
<dim>-1</dim>
|
155 |
+
</port>
|
156 |
+
<port id="4" precision="U8">
|
157 |
+
<dim>-1</dim>
|
158 |
+
</port>
|
159 |
+
<port id="5" precision="U8">
|
160 |
+
<dim>512</dim>
|
161 |
+
</port>
|
162 |
+
</input>
|
163 |
+
<output>
|
164 |
+
<port id="6" precision="I32">
|
165 |
+
<dim>-1</dim>
|
166 |
+
</port>
|
167 |
+
<port id="7" precision="I32">
|
168 |
+
<dim>-1</dim>
|
169 |
+
</port>
|
170 |
+
<port id="8" precision="I32">
|
171 |
+
<dim>-1</dim>
|
172 |
+
</port>
|
173 |
+
<port id="9" precision="I32">
|
174 |
+
<dim>-1</dim>
|
175 |
+
</port>
|
176 |
+
<port id="10" precision="U8">
|
177 |
+
<dim>-1</dim>
|
178 |
+
</port>
|
179 |
+
<port id="11" precision="BOOL">
|
180 |
+
<dim>-1</dim>
|
181 |
+
</port>
|
182 |
+
</output>
|
183 |
+
</layer>
|
184 |
+
<layer id="16" name="CharsMapNormalization_6888343" type="CharsMapNormalization" version="extension">
|
185 |
+
<data add_dummy_prefix="false" remove_extra_whitespaces="false" escape_whitespaces="false" normalization_form="nfc" case_fold="false" nmt="false" />
|
186 |
+
<input>
|
187 |
+
<port id="0" precision="I32">
|
188 |
+
<dim>-1</dim>
|
189 |
+
</port>
|
190 |
+
<port id="1" precision="I32">
|
191 |
+
<dim>-1</dim>
|
192 |
+
</port>
|
193 |
+
<port id="2" precision="U8">
|
194 |
+
<dim>-1</dim>
|
195 |
+
</port>
|
196 |
+
<port id="3" precision="BOOL">
|
197 |
+
<dim>-1</dim>
|
198 |
+
</port>
|
199 |
+
</input>
|
200 |
+
<output>
|
201 |
+
<port id="4" precision="I32">
|
202 |
+
<dim>-1</dim>
|
203 |
+
</port>
|
204 |
+
<port id="5" precision="I32">
|
205 |
+
<dim>-1</dim>
|
206 |
+
</port>
|
207 |
+
<port id="6" precision="U8">
|
208 |
+
<dim>-1</dim>
|
209 |
+
</port>
|
210 |
+
<port id="7" precision="BOOL">
|
211 |
+
<dim>-1</dim>
|
212 |
+
</port>
|
213 |
+
</output>
|
214 |
+
</layer>
|
215 |
+
<layer id="17" name="Constant_6888345" type="Const" version="opset1">
|
216 |
+
<data element_type="u8" shape="110" offset="528" size="110" />
|
217 |
+
<output>
|
218 |
+
<port id="0" precision="U8">
|
219 |
+
<dim>110</dim>
|
220 |
+
</port>
|
221 |
+
</output>
|
222 |
+
</layer>
|
223 |
+
<layer id="18" name="RegexSplit_6888346" type="RegexSplit" version="extension">
|
224 |
+
<data behaviour="isolate" invert="false" max_splits="-1" />
|
225 |
+
<input>
|
226 |
+
<port id="0" precision="I32">
|
227 |
+
<dim>-1</dim>
|
228 |
+
</port>
|
229 |
+
<port id="1" precision="I32">
|
230 |
+
<dim>-1</dim>
|
231 |
+
</port>
|
232 |
+
<port id="2" precision="I32">
|
233 |
+
<dim>-1</dim>
|
234 |
+
</port>
|
235 |
+
<port id="3" precision="I32">
|
236 |
+
<dim>-1</dim>
|
237 |
+
</port>
|
238 |
+
<port id="4" precision="U8">
|
239 |
+
<dim>-1</dim>
|
240 |
+
</port>
|
241 |
+
<port id="5" precision="BOOL">
|
242 |
+
<dim>-1</dim>
|
243 |
+
</port>
|
244 |
+
<port id="6" precision="U8">
|
245 |
+
<dim>110</dim>
|
246 |
+
</port>
|
247 |
+
</input>
|
248 |
+
<output>
|
249 |
+
<port id="7" precision="I32">
|
250 |
+
<dim>-1</dim>
|
251 |
+
</port>
|
252 |
+
<port id="8" precision="I32">
|
253 |
+
<dim>-1</dim>
|
254 |
+
</port>
|
255 |
+
<port id="9" precision="I32">
|
256 |
+
<dim>-1</dim>
|
257 |
+
</port>
|
258 |
+
<port id="10" precision="I32">
|
259 |
+
<dim>-1</dim>
|
260 |
+
</port>
|
261 |
+
<port id="11" precision="U8">
|
262 |
+
<dim>-1</dim>
|
263 |
+
</port>
|
264 |
+
<port id="12" precision="BOOL">
|
265 |
+
<dim>-1</dim>
|
266 |
+
</port>
|
267 |
+
</output>
|
268 |
+
</layer>
|
269 |
+
<layer id="19" name="Constant_6888348" type="Const" version="opset1">
|
270 |
+
<data element_type="i32" shape="151669" offset="638" size="606676" />
|
271 |
+
<output>
|
272 |
+
<port id="0" precision="I32">
|
273 |
+
<dim>151669</dim>
|
274 |
+
</port>
|
275 |
+
</output>
|
276 |
+
</layer>
|
277 |
+
<layer id="20" name="Constant_6888350" type="Const" version="opset1">
|
278 |
+
<data element_type="i32" shape="151669" offset="607314" size="606676" />
|
279 |
+
<output>
|
280 |
+
<port id="0" precision="I32">
|
281 |
+
<dim>151669</dim>
|
282 |
+
</port>
|
283 |
+
</output>
|
284 |
+
</layer>
|
285 |
+
<layer id="21" name="Constant_6888352" type="Const" version="opset1">
|
286 |
+
<data element_type="u8" shape="976309" offset="1213990" size="976309" />
|
287 |
+
<output>
|
288 |
+
<port id="0" precision="U8">
|
289 |
+
<dim>976309</dim>
|
290 |
+
</port>
|
291 |
+
</output>
|
292 |
+
</layer>
|
293 |
+
<layer id="22" name="Constant_6888360" type="Const" version="opset1">
|
294 |
+
<data element_type="i32" shape="151387" offset="2190299" size="605548" />
|
295 |
+
<output>
|
296 |
+
<port id="0" precision="I32">
|
297 |
+
<dim>151387</dim>
|
298 |
+
</port>
|
299 |
+
</output>
|
300 |
+
</layer>
|
301 |
+
<layer id="23" name="Constant_6888362" type="Const" version="opset1">
|
302 |
+
<data element_type="i32" shape="151387" offset="2795847" size="605548" />
|
303 |
+
<output>
|
304 |
+
<port id="0" precision="I32">
|
305 |
+
<dim>151387</dim>
|
306 |
+
</port>
|
307 |
+
</output>
|
308 |
+
</layer>
|
309 |
+
<layer id="24" name="Constant_6888364" type="Const" version="opset1">
|
310 |
+
<data element_type="u8" shape="491359" offset="3401395" size="491359" />
|
311 |
+
<output>
|
312 |
+
<port id="0" precision="U8">
|
313 |
+
<dim>491359</dim>
|
314 |
+
</port>
|
315 |
+
</output>
|
316 |
+
</layer>
|
317 |
+
<layer id="25" name="Constant_6888366" type="Const" version="opset1">
|
318 |
+
<data element_type="i32" shape="151387" offset="3892754" size="605548" />
|
319 |
+
<output>
|
320 |
+
<port id="0" precision="I32">
|
321 |
+
<dim>151387</dim>
|
322 |
+
</port>
|
323 |
+
</output>
|
324 |
+
</layer>
|
325 |
+
<layer id="26" name="Constant_6888368" type="Const" version="opset1">
|
326 |
+
<data element_type="i32" shape="151387" offset="4498302" size="605548" />
|
327 |
+
<output>
|
328 |
+
<port id="0" precision="I32">
|
329 |
+
<dim>151387</dim>
|
330 |
+
</port>
|
331 |
+
</output>
|
332 |
+
</layer>
|
333 |
+
<layer id="27" name="Constant_6888370" type="Const" version="opset1">
|
334 |
+
<data element_type="u8" shape="484354" offset="5103850" size="484354" />
|
335 |
+
<output>
|
336 |
+
<port id="0" precision="U8">
|
337 |
+
<dim>484354</dim>
|
338 |
+
</port>
|
339 |
+
</output>
|
340 |
+
</layer>
|
341 |
+
<layer id="28" name="Constant_6888354" type="Const" version="opset1">
|
342 |
+
<data element_type="i32" shape="26" offset="5588204" size="104" />
|
343 |
+
<output>
|
344 |
+
<port id="0" precision="I32">
|
345 |
+
<dim>26</dim>
|
346 |
+
</port>
|
347 |
+
</output>
|
348 |
+
</layer>
|
349 |
+
<layer id="29" name="Constant_6888356" type="Const" version="opset1">
|
350 |
+
<data element_type="i32" shape="26" offset="5588308" size="104" />
|
351 |
+
<output>
|
352 |
+
<port id="0" precision="I32">
|
353 |
+
<dim>26</dim>
|
354 |
+
</port>
|
355 |
+
</output>
|
356 |
+
</layer>
|
357 |
+
<layer id="30" name="Constant_6888358" type="Const" version="opset1">
|
358 |
+
<data element_type="u8" shape="340" offset="5588412" size="340" />
|
359 |
+
<output>
|
360 |
+
<port id="0" precision="U8">
|
361 |
+
<dim>340</dim>
|
362 |
+
</port>
|
363 |
+
</output>
|
364 |
+
</layer>
|
365 |
+
<layer id="31" name="Constant_6888371" type="Const" version="opset1">
|
366 |
+
<data element_type="i32" shape="26" offset="5588752" size="104" />
|
367 |
+
<output>
|
368 |
+
<port id="0" precision="I32">
|
369 |
+
<dim>26</dim>
|
370 |
+
</port>
|
371 |
+
</output>
|
372 |
+
</layer>
|
373 |
+
<layer id="32" name="BPETokenizer_6888372" type="BPETokenizer" version="extension">
|
374 |
+
<data unk_token="" fuse_unk="false" suffix_indicator="" end_suffix="" byte_fallback="false" cache_capacity="30328" />
|
375 |
+
<input>
|
376 |
+
<port id="0" precision="I32">
|
377 |
+
<dim>-1</dim>
|
378 |
+
</port>
|
379 |
+
<port id="1" precision="I32">
|
380 |
+
<dim>-1</dim>
|
381 |
+
</port>
|
382 |
+
<port id="2" precision="I32">
|
383 |
+
<dim>-1</dim>
|
384 |
+
</port>
|
385 |
+
<port id="3" precision="I32">
|
386 |
+
<dim>-1</dim>
|
387 |
+
</port>
|
388 |
+
<port id="4" precision="U8">
|
389 |
+
<dim>-1</dim>
|
390 |
+
</port>
|
391 |
+
<port id="5" precision="I32">
|
392 |
+
<dim>151669</dim>
|
393 |
+
</port>
|
394 |
+
<port id="6" precision="I32">
|
395 |
+
<dim>151669</dim>
|
396 |
+
</port>
|
397 |
+
<port id="7" precision="U8">
|
398 |
+
<dim>976309</dim>
|
399 |
+
</port>
|
400 |
+
<port id="8" precision="I32">
|
401 |
+
<dim>151387</dim>
|
402 |
+
</port>
|
403 |
+
<port id="9" precision="I32">
|
404 |
+
<dim>151387</dim>
|
405 |
+
</port>
|
406 |
+
<port id="10" precision="U8">
|
407 |
+
<dim>491359</dim>
|
408 |
+
</port>
|
409 |
+
<port id="11" precision="I32">
|
410 |
+
<dim>151387</dim>
|
411 |
+
</port>
|
412 |
+
<port id="12" precision="I32">
|
413 |
+
<dim>151387</dim>
|
414 |
+
</port>
|
415 |
+
<port id="13" precision="U8">
|
416 |
+
<dim>484354</dim>
|
417 |
+
</port>
|
418 |
+
<port id="14" precision="I32">
|
419 |
+
<dim>26</dim>
|
420 |
+
</port>
|
421 |
+
<port id="15" precision="I32">
|
422 |
+
<dim>26</dim>
|
423 |
+
</port>
|
424 |
+
<port id="16" precision="U8">
|
425 |
+
<dim>340</dim>
|
426 |
+
</port>
|
427 |
+
<port id="17" precision="I32">
|
428 |
+
<dim>26</dim>
|
429 |
+
</port>
|
430 |
+
</input>
|
431 |
+
<output>
|
432 |
+
<port id="18" precision="I32">
|
433 |
+
<dim>-1</dim>
|
434 |
+
</port>
|
435 |
+
<port id="19" precision="I32">
|
436 |
+
<dim>-1</dim>
|
437 |
+
</port>
|
438 |
+
<port id="20" precision="I32">
|
439 |
+
<dim>-1</dim>
|
440 |
+
</port>
|
441 |
+
</output>
|
442 |
+
</layer>
|
443 |
+
<layer id="33" name="Subtract_6888373" type="Subtract" version="opset1">
|
444 |
+
<data auto_broadcast="numpy" />
|
445 |
+
<input>
|
446 |
+
<port id="0" precision="I32">
|
447 |
+
<dim>-1</dim>
|
448 |
+
</port>
|
449 |
+
<port id="1" precision="I32">
|
450 |
+
<dim>-1</dim>
|
451 |
+
</port>
|
452 |
+
</input>
|
453 |
+
<output>
|
454 |
+
<port id="2" precision="I32">
|
455 |
+
<dim>-1</dim>
|
456 |
+
</port>
|
457 |
+
</output>
|
458 |
+
</layer>
|
459 |
+
<layer id="34" name="Constant_6888374" type="Const" version="opset1">
|
460 |
+
<data element_type="i32" shape="" offset="5588856" size="4" />
|
461 |
+
<output>
|
462 |
+
<port id="0" precision="I32" />
|
463 |
+
</output>
|
464 |
+
</layer>
|
465 |
+
<layer id="35" name="Minimum_6888375" type="Minimum" version="opset1">
|
466 |
+
<data auto_broadcast="numpy" />
|
467 |
+
<input>
|
468 |
+
<port id="0" precision="I32">
|
469 |
+
<dim>-1</dim>
|
470 |
+
</port>
|
471 |
+
<port id="1" precision="I32" />
|
472 |
+
</input>
|
473 |
+
<output>
|
474 |
+
<port id="2" precision="I32">
|
475 |
+
<dim>-1</dim>
|
476 |
+
</port>
|
477 |
+
</output>
|
478 |
+
</layer>
|
479 |
+
<layer id="36" name="Subtract_6888376" type="Subtract" version="opset1">
|
480 |
+
<data auto_broadcast="numpy" />
|
481 |
+
<input>
|
482 |
+
<port id="0" precision="I32">
|
483 |
+
<dim>-1</dim>
|
484 |
+
</port>
|
485 |
+
<port id="1" precision="I32">
|
486 |
+
<dim>-1</dim>
|
487 |
+
</port>
|
488 |
+
</input>
|
489 |
+
<output>
|
490 |
+
<port id="2" precision="I32">
|
491 |
+
<dim>-1</dim>
|
492 |
+
</port>
|
493 |
+
</output>
|
494 |
+
</layer>
|
495 |
+
<layer id="37" name="Subtract_6888377" type="Subtract" version="opset1">
|
496 |
+
<data auto_broadcast="numpy" />
|
497 |
+
<input>
|
498 |
+
<port id="0" precision="I32">
|
499 |
+
<dim>-1</dim>
|
500 |
+
</port>
|
501 |
+
<port id="1" precision="I32">
|
502 |
+
<dim>-1</dim>
|
503 |
+
</port>
|
504 |
+
</input>
|
505 |
+
<output>
|
506 |
+
<port id="2" precision="I32">
|
507 |
+
<dim>-1</dim>
|
508 |
+
</port>
|
509 |
+
</output>
|
510 |
+
</layer>
|
511 |
+
<layer id="38" name="Constant_6888378" type="Const" version="opset1">
|
512 |
+
<data element_type="i32" shape="" offset="5588860" size="4" />
|
513 |
+
<output>
|
514 |
+
<port id="0" precision="I32" />
|
515 |
+
</output>
|
516 |
+
</layer>
|
517 |
+
<layer id="39" name="ReduceMax_6888379" type="ReduceMax" version="opset1">
|
518 |
+
<data keep_dims="false" />
|
519 |
+
<input>
|
520 |
+
<port id="0" precision="I32">
|
521 |
+
<dim>-1</dim>
|
522 |
+
</port>
|
523 |
+
<port id="1" precision="I32" />
|
524 |
+
</input>
|
525 |
+
<output>
|
526 |
+
<port id="2" precision="I32" />
|
527 |
+
</output>
|
528 |
+
</layer>
|
529 |
+
<layer id="40" name="Constant_6888380" type="Const" version="opset1">
|
530 |
+
<data element_type="i32" shape="" offset="5588864" size="4" />
|
531 |
+
<output>
|
532 |
+
<port id="0" precision="I32" />
|
533 |
+
</output>
|
534 |
+
</layer>
|
535 |
+
<layer id="41" name="RaggedToDense_6888381" type="RaggedToDense" version="extension">
|
536 |
+
<data pad_right="false" m_pad_max_length="false" />
|
537 |
+
<input>
|
538 |
+
<port id="0" precision="I32">
|
539 |
+
<dim>-1</dim>
|
540 |
+
</port>
|
541 |
+
<port id="1" precision="I32">
|
542 |
+
<dim>-1</dim>
|
543 |
+
</port>
|
544 |
+
<port id="2" precision="I32">
|
545 |
+
<dim>-1</dim>
|
546 |
+
</port>
|
547 |
+
<port id="3" precision="I32" />
|
548 |
+
<port id="4" precision="I32" />
|
549 |
+
</input>
|
550 |
+
<output>
|
551 |
+
<port id="5" precision="I32">
|
552 |
+
<dim>-1</dim>
|
553 |
+
<dim>-1</dim>
|
554 |
+
</port>
|
555 |
+
<port id="6" precision="BOOL">
|
556 |
+
<dim>-1</dim>
|
557 |
+
<dim>-1</dim>
|
558 |
+
</port>
|
559 |
+
</output>
|
560 |
+
</layer>
|
561 |
+
<layer id="42" name="Convert_6888382" type="Convert" version="opset1">
|
562 |
+
<data destination_type="i32" />
|
563 |
+
<input>
|
564 |
+
<port id="0" precision="BOOL">
|
565 |
+
<dim>-1</dim>
|
566 |
+
<dim>-1</dim>
|
567 |
+
</port>
|
568 |
+
</input>
|
569 |
+
<output>
|
570 |
+
<port id="1" precision="I32">
|
571 |
+
<dim>-1</dim>
|
572 |
+
<dim>-1</dim>
|
573 |
+
</port>
|
574 |
+
</output>
|
575 |
+
</layer>
|
576 |
+
<layer id="43" name="Convert_6888382.0" type="Convert" version="opset1">
|
577 |
+
<data destination_type="i64" />
|
578 |
+
<input>
|
579 |
+
<port id="0" precision="I32">
|
580 |
+
<dim>-1</dim>
|
581 |
+
<dim>-1</dim>
|
582 |
+
</port>
|
583 |
+
</input>
|
584 |
+
<output>
|
585 |
+
<port id="1" precision="I64" names="attention_mask">
|
586 |
+
<dim>-1</dim>
|
587 |
+
<dim>-1</dim>
|
588 |
+
</port>
|
589 |
+
</output>
|
590 |
+
</layer>
|
591 |
+
<layer id="45" name="RaggedToDense_6888381.0" type="Convert" version="opset1">
|
592 |
+
<data destination_type="i64" />
|
593 |
+
<input>
|
594 |
+
<port id="0" precision="I32">
|
595 |
+
<dim>-1</dim>
|
596 |
+
<dim>-1</dim>
|
597 |
+
</port>
|
598 |
+
</input>
|
599 |
+
<output>
|
600 |
+
<port id="1" precision="I64" names="input_ids">
|
601 |
+
<dim>-1</dim>
|
602 |
+
<dim>-1</dim>
|
603 |
+
</port>
|
604 |
+
</output>
|
605 |
+
</layer>
|
606 |
+
<layer id="46" name="Result_6888383" type="Result" version="opset1" output_names="input_ids">
|
607 |
+
<input>
|
608 |
+
<port id="0" precision="I64">
|
609 |
+
<dim>-1</dim>
|
610 |
+
<dim>-1</dim>
|
611 |
+
</port>
|
612 |
+
</input>
|
613 |
+
</layer>
|
614 |
+
<layer id="44" name="Result_6888384" type="Result" version="opset1" output_names="attention_mask">
|
615 |
+
<input>
|
616 |
+
<port id="0" precision="I64">
|
617 |
+
<dim>-1</dim>
|
618 |
+
<dim>-1</dim>
|
619 |
+
</port>
|
620 |
+
</input>
|
621 |
+
</layer>
|
622 |
+
</layers>
|
623 |
+
<edges>
|
624 |
+
<edge from-layer="0" from-port="0" to-layer="2" to-port="0" />
|
625 |
+
<edge from-layer="1" from-port="0" to-layer="8" to-port="0" />
|
626 |
+
<edge from-layer="2" from-port="1" to-layer="3" to-port="0" />
|
627 |
+
<edge from-layer="2" from-port="3" to-layer="15" to-port="4" />
|
628 |
+
<edge from-layer="2" from-port="2" to-layer="15" to-port="3" />
|
629 |
+
<edge from-layer="2" from-port="1" to-layer="15" to-port="2" />
|
630 |
+
<edge from-layer="3" from-port="1" to-layer="6" to-port="0" />
|
631 |
+
<edge from-layer="4" from-port="0" to-layer="6" to-port="1" />
|
632 |
+
<edge from-layer="5" from-port="0" to-layer="6" to-port="2" />
|
633 |
+
<edge from-layer="6" from-port="3" to-layer="11" to-port="0" />
|
634 |
+
<edge from-layer="6" from-port="3" to-layer="8" to-port="1" />
|
635 |
+
<edge from-layer="7" from-port="0" to-layer="8" to-port="2" />
|
636 |
+
<edge from-layer="8" from-port="3" to-layer="15" to-port="0" />
|
637 |
+
<edge from-layer="9" from-port="0" to-layer="13" to-port="0" />
|
638 |
+
<edge from-layer="10" from-port="0" to-layer="11" to-port="1" />
|
639 |
+
<edge from-layer="11" from-port="2" to-layer="13" to-port="1" />
|
640 |
+
<edge from-layer="12" from-port="0" to-layer="13" to-port="2" />
|
641 |
+
<edge from-layer="13" from-port="3" to-layer="15" to-port="1" />
|
642 |
+
<edge from-layer="14" from-port="0" to-layer="15" to-port="5" />
|
643 |
+
<edge from-layer="15" from-port="8" to-layer="16" to-port="0" />
|
644 |
+
<edge from-layer="15" from-port="7" to-layer="18" to-port="1" />
|
645 |
+
<edge from-layer="15" from-port="6" to-layer="18" to-port="0" />
|
646 |
+
<edge from-layer="15" from-port="11" to-layer="16" to-port="3" />
|
647 |
+
<edge from-layer="15" from-port="10" to-layer="16" to-port="2" />
|
648 |
+
<edge from-layer="15" from-port="9" to-layer="16" to-port="1" />
|
649 |
+
<edge from-layer="16" from-port="4" to-layer="18" to-port="2" />
|
650 |
+
<edge from-layer="16" from-port="5" to-layer="18" to-port="3" />
|
651 |
+
<edge from-layer="16" from-port="6" to-layer="18" to-port="4" />
|
652 |
+
<edge from-layer="16" from-port="7" to-layer="18" to-port="5" />
|
653 |
+
<edge from-layer="17" from-port="0" to-layer="18" to-port="6" />
|
654 |
+
<edge from-layer="18" from-port="11" to-layer="32" to-port="4" />
|
655 |
+
<edge from-layer="18" from-port="10" to-layer="32" to-port="3" />
|
656 |
+
<edge from-layer="18" from-port="8" to-layer="32" to-port="1" />
|
657 |
+
<edge from-layer="18" from-port="7" to-layer="32" to-port="0" />
|
658 |
+
<edge from-layer="18" from-port="9" to-layer="32" to-port="2" />
|
659 |
+
<edge from-layer="19" from-port="0" to-layer="32" to-port="5" />
|
660 |
+
<edge from-layer="20" from-port="0" to-layer="32" to-port="6" />
|
661 |
+
<edge from-layer="21" from-port="0" to-layer="32" to-port="7" />
|
662 |
+
<edge from-layer="22" from-port="0" to-layer="32" to-port="8" />
|
663 |
+
<edge from-layer="23" from-port="0" to-layer="32" to-port="9" />
|
664 |
+
<edge from-layer="24" from-port="0" to-layer="32" to-port="10" />
|
665 |
+
<edge from-layer="25" from-port="0" to-layer="32" to-port="11" />
|
666 |
+
<edge from-layer="26" from-port="0" to-layer="32" to-port="12" />
|
667 |
+
<edge from-layer="27" from-port="0" to-layer="32" to-port="13" />
|
668 |
+
<edge from-layer="28" from-port="0" to-layer="32" to-port="14" />
|
669 |
+
<edge from-layer="29" from-port="0" to-layer="32" to-port="15" />
|
670 |
+
<edge from-layer="30" from-port="0" to-layer="32" to-port="16" />
|
671 |
+
<edge from-layer="31" from-port="0" to-layer="32" to-port="17" />
|
672 |
+
<edge from-layer="32" from-port="19" to-layer="33" to-port="0" />
|
673 |
+
<edge from-layer="32" from-port="18" to-layer="33" to-port="1" />
|
674 |
+
<edge from-layer="32" from-port="20" to-layer="41" to-port="2" />
|
675 |
+
<edge from-layer="32" from-port="19" to-layer="36" to-port="0" />
|
676 |
+
<edge from-layer="32" from-port="19" to-layer="41" to-port="1" />
|
677 |
+
<edge from-layer="32" from-port="19" to-layer="37" to-port="0" />
|
678 |
+
<edge from-layer="33" from-port="2" to-layer="35" to-port="0" />
|
679 |
+
<edge from-layer="34" from-port="0" to-layer="35" to-port="1" />
|
680 |
+
<edge from-layer="35" from-port="2" to-layer="36" to-port="1" />
|
681 |
+
<edge from-layer="36" from-port="2" to-layer="37" to-port="1" />
|
682 |
+
<edge from-layer="36" from-port="2" to-layer="41" to-port="0" />
|
683 |
+
<edge from-layer="37" from-port="2" to-layer="39" to-port="0" />
|
684 |
+
<edge from-layer="38" from-port="0" to-layer="39" to-port="1" />
|
685 |
+
<edge from-layer="39" from-port="2" to-layer="41" to-port="3" />
|
686 |
+
<edge from-layer="40" from-port="0" to-layer="41" to-port="4" />
|
687 |
+
<edge from-layer="41" from-port="6" to-layer="42" to-port="0" />
|
688 |
+
<edge from-layer="41" from-port="5" to-layer="45" to-port="0" />
|
689 |
+
<edge from-layer="42" from-port="1" to-layer="43" to-port="0" />
|
690 |
+
<edge from-layer="43" from-port="1" to-layer="44" to-port="0" />
|
691 |
+
<edge from-layer="45" from-port="1" to-layer="46" to-port="0" />
|
692 |
+
</edges>
|
693 |
+
<rt_info>
|
694 |
+
<add_attention_mask value="True" />
|
695 |
+
<add_prefix_space />
|
696 |
+
<add_special_tokens value="True" />
|
697 |
+
<chat_template value="{%- if tools %} {{- '<|im_start|>system\n' }} {%- if messages[0].role == 'system' %} {{- messages[0].content + '\n\n' }} {%- endif %} {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }} {%- for tool in tools %} {{- "\n" }} {{- tool | tojson }} {%- endfor %} {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }} {%- else %} {%- if messages[0].role == 'system' %} {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }} {%- endif %} {%- endif %} {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} {%- for message in messages[::-1] %} {%- set index = (messages|length - 1) - loop.index0 %} {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %} {%- set ns.multi_step_tool = false %} {%- set ns.last_query_index = index %} {%- endif %} {%- endfor %} {%- for message in messages %} {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }} {%- elif message.role == "assistant" %} {%- set content = message.content %} {%- set reasoning_content = '' %} {%- if message.reasoning_content is defined and message.reasoning_content is not none %} {%- set reasoning_content = message.reasoning_content %} {%- else %} {%- if '</think>' in message.content %} {%- set content = message.content.split('</think>')[-1].lstrip('\n') %} {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %} {%- endif %} {%- endif %} {%- if loop.index0 > ns.last_query_index %} {%- if loop.last or (not loop.last and reasoning_content) %} {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }} {%- else %} {{- '<|im_start|>' + message.role + '\n' + content }} {%- endif %} {%- else %} {{- '<|im_start|>' + message.role + '\n' + content }} {%- endif %} {%- if message.tool_calls %} {%- for tool_call in message.tool_calls %} {%- if (loop.first and content) or (not loop.first) %} {{- '\n' }} {%- endif %} {%- if tool_call.function %} {%- set tool_call = tool_call.function %} {%- endif %} {{- '<tool_call>\n{"name": "' }} {{- tool_call.name }} {{- '", "arguments": ' }} {%- if tool_call.arguments is string %} {{- tool_call.arguments }} {%- else %} {{- tool_call.arguments | tojson }} {%- endif %} {{- '}\n</tool_call>' }} {%- endfor %} {%- endif %} {{- '<|im_end|>\n' }} {%- elif message.role == "tool" %} {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} {{- '<|im_start|>user' }} {%- endif %} {{- '\n<tool_response>\n' }} {{- message.content }} {{- '\n</tool_response>' }} {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} {{- '<|im_end|>\n' }} {%- endif %} {%- endif %} {%- endfor %} {%- if add_generation_prompt %} {{- '<|im_start|>assistant\n' }} {%- if enable_thinking is defined and enable_thinking is false %} {{- '<think>\n\n</think>\n\n' }} {%- endif %} {%- endif %}" />
|
698 |
+
<clean_up_tokenization_spaces />
|
699 |
+
<detokenizer_input_type value="i64" />
|
700 |
+
<eos_token_id value="151645" />
|
701 |
+
<handle_special_tokens_with_re />
|
702 |
+
<max_length />
|
703 |
+
<number_of_inputs value="1" />
|
704 |
+
<openvino_tokenizers_version value="2025.1.0.0-523-710ddf14de8" />
|
705 |
+
<openvino_version value="2025.1.0-18503-6fec06580ab-releases/2025/1" />
|
706 |
+
<original_post_processor_template value="{"type": "ByteLevel", "add_prefix_space": false, "trim_offsets": false, "use_regex": false}" />
|
707 |
+
<original_tokenizer_class value="<class 'transformers.models.qwen2.tokenization_qwen2_fast.Qwen2TokenizerFast'>" />
|
708 |
+
<pad_token_id value="151643" />
|
709 |
+
<sentencepiece_version value="0.2.0" />
|
710 |
+
<simplified_chat_template value="{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system You are a helpful assistant.<|im_end|> ' }}{% endif %}{{'<|im_start|>' + message['role'] + ' ' + message['content'] + '<|im_end|>' + ' '}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant ' }}{% endif %}" />
|
711 |
+
<skip_special_tokens value="True" />
|
712 |
+
<streaming_detokenizer value="False" />
|
713 |
+
<tokenizer_output_type value="i64" />
|
714 |
+
<tokenizers_version value="0.21.1" />
|
715 |
+
<transformers_version value="4.51.3" />
|
716 |
+
<use_max_padding value="False" />
|
717 |
+
<use_sentencepiece_backend value="False" />
|
718 |
+
<utf8_replace_mode value="replace" />
|
719 |
+
<with_detokenizer value="True" />
|
720 |
+
</rt_info>
|
721 |
+
</net>
|
special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
3 |
+
size 11422654
|
tokenizer_config.json
ADDED
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
},
|
181 |
+
"151665": {
|
182 |
+
"content": "<tool_response>",
|
183 |
+
"lstrip": false,
|
184 |
+
"normalized": false,
|
185 |
+
"rstrip": false,
|
186 |
+
"single_word": false,
|
187 |
+
"special": false
|
188 |
+
},
|
189 |
+
"151666": {
|
190 |
+
"content": "</tool_response>",
|
191 |
+
"lstrip": false,
|
192 |
+
"normalized": false,
|
193 |
+
"rstrip": false,
|
194 |
+
"single_word": false,
|
195 |
+
"special": false
|
196 |
+
},
|
197 |
+
"151667": {
|
198 |
+
"content": "<think>",
|
199 |
+
"lstrip": false,
|
200 |
+
"normalized": false,
|
201 |
+
"rstrip": false,
|
202 |
+
"single_word": false,
|
203 |
+
"special": false
|
204 |
+
},
|
205 |
+
"151668": {
|
206 |
+
"content": "</think>",
|
207 |
+
"lstrip": false,
|
208 |
+
"normalized": false,
|
209 |
+
"rstrip": false,
|
210 |
+
"single_word": false,
|
211 |
+
"special": false
|
212 |
+
}
|
213 |
+
},
|
214 |
+
"additional_special_tokens": [
|
215 |
+
"<|im_start|>",
|
216 |
+
"<|im_end|>",
|
217 |
+
"<|object_ref_start|>",
|
218 |
+
"<|object_ref_end|>",
|
219 |
+
"<|box_start|>",
|
220 |
+
"<|box_end|>",
|
221 |
+
"<|quad_start|>",
|
222 |
+
"<|quad_end|>",
|
223 |
+
"<|vision_start|>",
|
224 |
+
"<|vision_end|>",
|
225 |
+
"<|vision_pad|>",
|
226 |
+
"<|image_pad|>",
|
227 |
+
"<|video_pad|>"
|
228 |
+
],
|
229 |
+
"bos_token": null,
|
230 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = message.content.split('</think>')[-1].lstrip('\\n') %}\n {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- endif %}\n{%- endif %}",
|
231 |
+
"clean_up_tokenization_spaces": false,
|
232 |
+
"eos_token": "<|im_end|>",
|
233 |
+
"errors": "replace",
|
234 |
+
"extra_special_tokens": {},
|
235 |
+
"model_max_length": 131072,
|
236 |
+
"pad_token": "<|endoftext|>",
|
237 |
+
"split_special_tokens": false,
|
238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
239 |
+
"unk_token": null
|
240 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|