Text Generation
Transformers
Safetensors
xlstm
sft
trl
conversational
🇪🇺 Region: EU
mrs83 commited on
Commit
0c60e4b
·
verified ·
1 Parent(s): 63109d1

Upload 7 files

Browse files
chat_template.jinja ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {# ───── defaults ───── #}
2
+ {%- if enable_thinking is not defined -%}
3
+ {%- set enable_thinking = true -%}
4
+ {%- endif -%}
5
+
6
+ {# ───── reasoning mode ───── #}
7
+ {%- if enable_thinking -%}
8
+ {%- set reasoning_mode = "/think" -%}
9
+ {%- else -%}
10
+ {%- set reasoning_mode = "/no_think" -%}
11
+ {%- endif -%}
12
+
13
+ {# ───── header (system message) ───── #}
14
+ {{- "<|im_start|>system\n" -}}
15
+
16
+ {%- if messages[0].role == "system" -%}
17
+ {%- set system_message = messages[0].content -%}
18
+ {%- if "/no_think" in system_message -%}
19
+ {%- set reasoning_mode = "/no_think" -%}
20
+ {%- elif "/think" in system_message -%}
21
+ {%- set reasoning_mode = "/think" -%}
22
+ {%- endif -%}
23
+ {%- set custom_instructions = system_message.replace("/no_think", "").replace("/think", "").rstrip() -%}
24
+ {%- endif -%}
25
+
26
+ {%- if "/system_override" in system_message -%}
27
+ {{- custom_instructions.replace("/system_override", "").rstrip() -}}
28
+ {{- "<|im_end|>\n" -}}
29
+ {%- else -%}
30
+ {{- "## Metadata\n\n" -}}
31
+ {{- "Knowledge Cutoff Date: June 2025\n" -}}
32
+ {%- set today = strftime_now("%d %B %Y") -%}
33
+ {{- "Today Date: " ~ today ~ "\n" -}}
34
+ {{- "Reasoning Mode: " + reasoning_mode + "\n\n" -}}
35
+
36
+ {{- "## Custom Instructions\n\n" -}}
37
+ {%- if custom_instructions -%}
38
+ {{- custom_instructions + "\n\n" -}}
39
+ {%- elif reasoning_mode == "/think" -%}
40
+ {{- "You are a helpful AI assistant named SmolLM, trained by Hugging Face. Your role as an assistant involves thoroughly exploring questions through a systematic thinking process before providing the final precise and accurate solutions. This requires engaging in a comprehensive cycle of analysis, summarizing, exploration, reassessment, reflection, backtracking, and iteration to develop well-considered thinking process. Please structure your response into two main sections: Thought and Solution using the specified format: <think> Thought section </think> Solution section. In the Thought section, detail your reasoning process in steps. Each step should include detailed considerations such as analysing questions, summarizing relevant findings, brainstorming new ideas, verifying the accuracy of the current steps, refining any errors, and revisiting previous steps. In the Solution section, based on various attempts, explorations, and reflections from the Thought section, systematically present the final solution that you deem correct. The Solution section should be logical, accurate, and concise and detail necessary steps needed to reach the conclusion.\n\n" -}}
41
+ {%- else -%}
42
+ {{- "You are a helpful AI assistant named SmolLM, trained by Hugging Face.\n\n" -}}
43
+ {%- endif -%}
44
+
45
+ {%- if xml_tools or python_tools or tools -%}
46
+ {{- "### Tools\n\n" -}}
47
+ {%- if xml_tools or tools -%}
48
+ {%- if tools -%}
49
+ {%- set xml_tools = tools -%}
50
+ {%- endif -%}
51
+ {%- set ns = namespace(xml_tool_string="You may call one or more functions to assist with the user query.\nYou are provided with function signatures within <tools></tools> XML tags:\n\n<tools>\n") -%}
52
+ {%- for tool in xml_tools[:] -%} {# The slicing makes sure that xml_tools is a list #}
53
+ {%- set ns.xml_tool_string = ns.xml_tool_string ~ (tool | string) ~ "\n" -%}
54
+ {%- endfor -%}
55
+ {%- set xml_tool_string = ns.xml_tool_string + "</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>" -%}
56
+ {{- xml_tool_string -}}
57
+ {%- endif -%}
58
+ {%- if python_tools -%}
59
+ {%- set ns = namespace(python_tool_string="When you send a message containing Python code between '<code>' and '</code>' tags, it will be executed in a stateful Jupyter notebook environment, and you will then be given the output to continued reasoning in an agentic loop.\n\nYou can use the following tools in your python code like regular functions:\n<tools>\n") -%}
60
+ {%- for tool in python_tools[:] -%} {# The slicing makes sure that python_tools is a list #}
61
+ {%- set ns.python_tool_string = ns.python_tool_string ~ (tool | string) ~ "\n" -%}
62
+ {%- endfor -%}
63
+ {%- set python_tool_string = ns.python_tool_string + "</tools>\n\nThe state persists between code executions: so variables that you define in one step are still available thereafter." -%}
64
+ {{- python_tool_string -}}
65
+ {%- endif -%}
66
+ {{- "\n\n" -}}
67
+ {{- "<|im_end|>\n" -}}
68
+ {%- endif -%}
69
+ {%- endif -%}
70
+ {# ───── main loop ───── #}
71
+ {%- for message in messages -%}
72
+ {%- set content = message.content if message.content is string else "" -%}
73
+ {%- if message.role == "user" -%}
74
+ {{ "<|im_start|>" + message.role + "\n" + content + "<|im_end|>\n" }}
75
+ {%- elif message.role == "assistant" -%}
76
+ {% generation %}
77
+ {%- if reasoning_mode == "/think" -%}
78
+ {{ "<|im_start|>assistant\n" + content.lstrip("\n") + "<|im_end|>\n" }}
79
+ {%- else -%}
80
+ {{ "<|im_start|>assistant\n" + "<think>\n\n</think>\n" + content.lstrip("\n") + "<|im_end|>\n" }}
81
+ {%- endif -%}
82
+ {% endgeneration %}
83
+ {%- elif message.role == "tool" -%}
84
+ {{ "<|im_start|>" + "user\n" + content + "<|im_end|>\n" }}
85
+ {%- endif -%}
86
+ {%- endfor -%}
87
+ {# ───── generation prompt ───── #}
88
+ {%- if add_generation_prompt -%}
89
+ {%- if reasoning_mode == "/think" -%}
90
+ {{ "<|im_start|>assistant\n" }}
91
+ {%- else -%}
92
+ {{ "<|im_start|>assistant\n" + "<think>\n\n</think>\n" }}
93
+ {%- endif -%}
94
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_embedding_dropout": false,
3
+ "add_forward_backend_padding": false,
4
+ "add_out_norm": true,
5
+ "add_post_blocks_norm": true,
6
+ "add_post_norm": false,
7
+ "add_qk_norm": false,
8
+ "architectures": [
9
+ "xLSTMForCausalLM"
10
+ ],
11
+ "autocast_kernel_dtype": "bfloat16",
12
+ "bos_token_id": 0,
13
+ "cell_norm_eps": 1e-06,
14
+ "chunk_size": 64,
15
+ "chunkwise_kernel": "chunkwise--triton_xl_chunk",
16
+ "dtype": "bfloat16",
17
+ "embedding_dim": 4096,
18
+ "eos_token_id": 2,
19
+ "eps": 1e-06,
20
+ "ffn_proj_factor": 2.667,
21
+ "ffn_round_up_to_multiple_of": 64,
22
+ "force_bos_token_insert": true,
23
+ "gate_soft_cap": 15.0,
24
+ "head_dim": 512,
25
+ "hidden_size": 4096,
26
+ "igate_bias_init_range": -10.0,
27
+ "inference_state_dtype": "float32",
28
+ "max_inference_chunksize": 16384,
29
+ "mlstm_round_up_to_multiple_of": 64,
30
+ "mode": "inference",
31
+ "model_type": "xlstm",
32
+ "norm_eps": 1e-06,
33
+ "norm_reduction_force_float32": true,
34
+ "num_blocks": 32,
35
+ "num_heads": 8,
36
+ "num_hidden_layers": 32,
37
+ "output_logit_soft_cap": 30.0,
38
+ "pad_token_id": 1,
39
+ "qk_dim_factor": 0.5,
40
+ "return_last_states": true,
41
+ "sequence_kernel": "native_sequence__triton",
42
+ "step_kernel": "triton",
43
+ "tie_word_embeddings": false,
44
+ "transformers_version": "4.57.0",
45
+ "use_bias": false,
46
+ "use_cache": true,
47
+ "v_dim_factor": 1.0,
48
+ "vocab_size": 50560,
49
+ "weight_mode": "single"
50
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 1,
6
+ "transformers_version": "4.57.0"
7
+ }
model.safetensors.index.json ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 6867522048,
4
+ "total_size": 13735044096
5
+ },
6
+ "weight_map": {
7
+ "backbone.blocks.0.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
8
+ "backbone.blocks.0.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
9
+ "backbone.blocks.0.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
10
+ "backbone.blocks.0.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
11
+ "backbone.blocks.0.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
12
+ "backbone.blocks.0.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
13
+ "backbone.blocks.0.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
14
+ "backbone.blocks.0.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
15
+ "backbone.blocks.0.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
16
+ "backbone.blocks.0.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
17
+ "backbone.blocks.0.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
18
+ "backbone.blocks.0.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
19
+ "backbone.blocks.0.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
20
+ "backbone.blocks.0.norm_ffn.weight": "model-00001-of-00003.safetensors",
21
+ "backbone.blocks.0.norm_mlstm.weight": "model-00001-of-00003.safetensors",
22
+ "backbone.blocks.1.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
23
+ "backbone.blocks.1.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
24
+ "backbone.blocks.1.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
25
+ "backbone.blocks.1.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
26
+ "backbone.blocks.1.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
27
+ "backbone.blocks.1.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
28
+ "backbone.blocks.1.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
29
+ "backbone.blocks.1.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
30
+ "backbone.blocks.1.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
31
+ "backbone.blocks.1.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
32
+ "backbone.blocks.1.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
33
+ "backbone.blocks.1.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
34
+ "backbone.blocks.1.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
35
+ "backbone.blocks.1.norm_ffn.weight": "model-00001-of-00003.safetensors",
36
+ "backbone.blocks.1.norm_mlstm.weight": "model-00001-of-00003.safetensors",
37
+ "backbone.blocks.10.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
38
+ "backbone.blocks.10.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
39
+ "backbone.blocks.10.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
40
+ "backbone.blocks.10.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
41
+ "backbone.blocks.10.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
42
+ "backbone.blocks.10.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
43
+ "backbone.blocks.10.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
44
+ "backbone.blocks.10.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
45
+ "backbone.blocks.10.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
46
+ "backbone.blocks.10.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
47
+ "backbone.blocks.10.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
48
+ "backbone.blocks.10.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
49
+ "backbone.blocks.10.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
50
+ "backbone.blocks.10.norm_ffn.weight": "model-00001-of-00003.safetensors",
51
+ "backbone.blocks.10.norm_mlstm.weight": "model-00001-of-00003.safetensors",
52
+ "backbone.blocks.11.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
53
+ "backbone.blocks.11.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
54
+ "backbone.blocks.11.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
55
+ "backbone.blocks.11.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
56
+ "backbone.blocks.11.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
57
+ "backbone.blocks.11.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
58
+ "backbone.blocks.11.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
59
+ "backbone.blocks.11.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
60
+ "backbone.blocks.11.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
61
+ "backbone.blocks.11.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
62
+ "backbone.blocks.11.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
63
+ "backbone.blocks.11.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
64
+ "backbone.blocks.11.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
65
+ "backbone.blocks.11.norm_ffn.weight": "model-00001-of-00003.safetensors",
66
+ "backbone.blocks.11.norm_mlstm.weight": "model-00001-of-00003.safetensors",
67
+ "backbone.blocks.12.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
68
+ "backbone.blocks.12.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
69
+ "backbone.blocks.12.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
70
+ "backbone.blocks.12.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
71
+ "backbone.blocks.12.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
72
+ "backbone.blocks.12.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
73
+ "backbone.blocks.12.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
74
+ "backbone.blocks.12.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
75
+ "backbone.blocks.12.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
76
+ "backbone.blocks.12.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
77
+ "backbone.blocks.12.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
78
+ "backbone.blocks.12.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
79
+ "backbone.blocks.12.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
80
+ "backbone.blocks.12.norm_ffn.weight": "model-00002-of-00003.safetensors",
81
+ "backbone.blocks.12.norm_mlstm.weight": "model-00002-of-00003.safetensors",
82
+ "backbone.blocks.13.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
83
+ "backbone.blocks.13.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
84
+ "backbone.blocks.13.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
85
+ "backbone.blocks.13.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
86
+ "backbone.blocks.13.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
87
+ "backbone.blocks.13.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
88
+ "backbone.blocks.13.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
89
+ "backbone.blocks.13.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
90
+ "backbone.blocks.13.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
91
+ "backbone.blocks.13.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
92
+ "backbone.blocks.13.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
93
+ "backbone.blocks.13.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
94
+ "backbone.blocks.13.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
95
+ "backbone.blocks.13.norm_ffn.weight": "model-00002-of-00003.safetensors",
96
+ "backbone.blocks.13.norm_mlstm.weight": "model-00002-of-00003.safetensors",
97
+ "backbone.blocks.14.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
98
+ "backbone.blocks.14.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
99
+ "backbone.blocks.14.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
100
+ "backbone.blocks.14.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
101
+ "backbone.blocks.14.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
102
+ "backbone.blocks.14.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
103
+ "backbone.blocks.14.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
104
+ "backbone.blocks.14.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
105
+ "backbone.blocks.14.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
106
+ "backbone.blocks.14.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
107
+ "backbone.blocks.14.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
108
+ "backbone.blocks.14.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
109
+ "backbone.blocks.14.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
110
+ "backbone.blocks.14.norm_ffn.weight": "model-00002-of-00003.safetensors",
111
+ "backbone.blocks.14.norm_mlstm.weight": "model-00002-of-00003.safetensors",
112
+ "backbone.blocks.15.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
113
+ "backbone.blocks.15.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
114
+ "backbone.blocks.15.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
115
+ "backbone.blocks.15.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
116
+ "backbone.blocks.15.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
117
+ "backbone.blocks.15.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
118
+ "backbone.blocks.15.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
119
+ "backbone.blocks.15.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
120
+ "backbone.blocks.15.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
121
+ "backbone.blocks.15.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
122
+ "backbone.blocks.15.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
123
+ "backbone.blocks.15.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
124
+ "backbone.blocks.15.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
125
+ "backbone.blocks.15.norm_ffn.weight": "model-00002-of-00003.safetensors",
126
+ "backbone.blocks.15.norm_mlstm.weight": "model-00002-of-00003.safetensors",
127
+ "backbone.blocks.16.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
128
+ "backbone.blocks.16.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
129
+ "backbone.blocks.16.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
130
+ "backbone.blocks.16.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
131
+ "backbone.blocks.16.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
132
+ "backbone.blocks.16.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
133
+ "backbone.blocks.16.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
134
+ "backbone.blocks.16.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
135
+ "backbone.blocks.16.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
136
+ "backbone.blocks.16.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
137
+ "backbone.blocks.16.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
138
+ "backbone.blocks.16.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
139
+ "backbone.blocks.16.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
140
+ "backbone.blocks.16.norm_ffn.weight": "model-00002-of-00003.safetensors",
141
+ "backbone.blocks.16.norm_mlstm.weight": "model-00002-of-00003.safetensors",
142
+ "backbone.blocks.17.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
143
+ "backbone.blocks.17.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
144
+ "backbone.blocks.17.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
145
+ "backbone.blocks.17.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
146
+ "backbone.blocks.17.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
147
+ "backbone.blocks.17.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
148
+ "backbone.blocks.17.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
149
+ "backbone.blocks.17.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
150
+ "backbone.blocks.17.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
151
+ "backbone.blocks.17.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
152
+ "backbone.blocks.17.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
153
+ "backbone.blocks.17.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
154
+ "backbone.blocks.17.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
155
+ "backbone.blocks.17.norm_ffn.weight": "model-00002-of-00003.safetensors",
156
+ "backbone.blocks.17.norm_mlstm.weight": "model-00002-of-00003.safetensors",
157
+ "backbone.blocks.18.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
158
+ "backbone.blocks.18.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
159
+ "backbone.blocks.18.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
160
+ "backbone.blocks.18.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
161
+ "backbone.blocks.18.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
162
+ "backbone.blocks.18.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
163
+ "backbone.blocks.18.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
164
+ "backbone.blocks.18.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
165
+ "backbone.blocks.18.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
166
+ "backbone.blocks.18.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
167
+ "backbone.blocks.18.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
168
+ "backbone.blocks.18.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
169
+ "backbone.blocks.18.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
170
+ "backbone.blocks.18.norm_ffn.weight": "model-00002-of-00003.safetensors",
171
+ "backbone.blocks.18.norm_mlstm.weight": "model-00002-of-00003.safetensors",
172
+ "backbone.blocks.19.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
173
+ "backbone.blocks.19.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
174
+ "backbone.blocks.19.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
175
+ "backbone.blocks.19.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
176
+ "backbone.blocks.19.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
177
+ "backbone.blocks.19.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
178
+ "backbone.blocks.19.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
179
+ "backbone.blocks.19.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
180
+ "backbone.blocks.19.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
181
+ "backbone.blocks.19.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
182
+ "backbone.blocks.19.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
183
+ "backbone.blocks.19.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
184
+ "backbone.blocks.19.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
185
+ "backbone.blocks.19.norm_ffn.weight": "model-00002-of-00003.safetensors",
186
+ "backbone.blocks.19.norm_mlstm.weight": "model-00002-of-00003.safetensors",
187
+ "backbone.blocks.2.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
188
+ "backbone.blocks.2.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
189
+ "backbone.blocks.2.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
190
+ "backbone.blocks.2.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
191
+ "backbone.blocks.2.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
192
+ "backbone.blocks.2.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
193
+ "backbone.blocks.2.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
194
+ "backbone.blocks.2.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
195
+ "backbone.blocks.2.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
196
+ "backbone.blocks.2.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
197
+ "backbone.blocks.2.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
198
+ "backbone.blocks.2.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
199
+ "backbone.blocks.2.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
200
+ "backbone.blocks.2.norm_ffn.weight": "model-00001-of-00003.safetensors",
201
+ "backbone.blocks.2.norm_mlstm.weight": "model-00001-of-00003.safetensors",
202
+ "backbone.blocks.20.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
203
+ "backbone.blocks.20.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
204
+ "backbone.blocks.20.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
205
+ "backbone.blocks.20.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
206
+ "backbone.blocks.20.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
207
+ "backbone.blocks.20.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
208
+ "backbone.blocks.20.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
209
+ "backbone.blocks.20.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
210
+ "backbone.blocks.20.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
211
+ "backbone.blocks.20.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
212
+ "backbone.blocks.20.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
213
+ "backbone.blocks.20.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
214
+ "backbone.blocks.20.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
215
+ "backbone.blocks.20.norm_ffn.weight": "model-00002-of-00003.safetensors",
216
+ "backbone.blocks.20.norm_mlstm.weight": "model-00002-of-00003.safetensors",
217
+ "backbone.blocks.21.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
218
+ "backbone.blocks.21.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
219
+ "backbone.blocks.21.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
220
+ "backbone.blocks.21.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
221
+ "backbone.blocks.21.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
222
+ "backbone.blocks.21.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
223
+ "backbone.blocks.21.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
224
+ "backbone.blocks.21.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
225
+ "backbone.blocks.21.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
226
+ "backbone.blocks.21.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
227
+ "backbone.blocks.21.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
228
+ "backbone.blocks.21.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
229
+ "backbone.blocks.21.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
230
+ "backbone.blocks.21.norm_ffn.weight": "model-00002-of-00003.safetensors",
231
+ "backbone.blocks.21.norm_mlstm.weight": "model-00002-of-00003.safetensors",
232
+ "backbone.blocks.22.ffn.proj_down.weight": "model-00002-of-00003.safetensors",
233
+ "backbone.blocks.22.ffn.proj_up.weight": "model-00002-of-00003.safetensors",
234
+ "backbone.blocks.22.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
235
+ "backbone.blocks.22.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
236
+ "backbone.blocks.22.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
237
+ "backbone.blocks.22.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
238
+ "backbone.blocks.22.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
239
+ "backbone.blocks.22.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
240
+ "backbone.blocks.22.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
241
+ "backbone.blocks.22.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
242
+ "backbone.blocks.22.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
243
+ "backbone.blocks.22.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
244
+ "backbone.blocks.22.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
245
+ "backbone.blocks.22.norm_ffn.weight": "model-00002-of-00003.safetensors",
246
+ "backbone.blocks.22.norm_mlstm.weight": "model-00002-of-00003.safetensors",
247
+ "backbone.blocks.23.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
248
+ "backbone.blocks.23.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
249
+ "backbone.blocks.23.ffn.proj_up_gate.weight": "model-00002-of-00003.safetensors",
250
+ "backbone.blocks.23.mlstm_layer.fgate_preact.bias": "model-00002-of-00003.safetensors",
251
+ "backbone.blocks.23.mlstm_layer.fgate_preact.weight": "model-00002-of-00003.safetensors",
252
+ "backbone.blocks.23.mlstm_layer.igate_preact.bias": "model-00002-of-00003.safetensors",
253
+ "backbone.blocks.23.mlstm_layer.igate_preact.weight": "model-00002-of-00003.safetensors",
254
+ "backbone.blocks.23.mlstm_layer.k.weight": "model-00002-of-00003.safetensors",
255
+ "backbone.blocks.23.mlstm_layer.multihead_norm.weight": "model-00002-of-00003.safetensors",
256
+ "backbone.blocks.23.mlstm_layer.ogate_preact.weight": "model-00002-of-00003.safetensors",
257
+ "backbone.blocks.23.mlstm_layer.out_proj.weight": "model-00002-of-00003.safetensors",
258
+ "backbone.blocks.23.mlstm_layer.q.weight": "model-00002-of-00003.safetensors",
259
+ "backbone.blocks.23.mlstm_layer.v.weight": "model-00002-of-00003.safetensors",
260
+ "backbone.blocks.23.norm_ffn.weight": "model-00002-of-00003.safetensors",
261
+ "backbone.blocks.23.norm_mlstm.weight": "model-00002-of-00003.safetensors",
262
+ "backbone.blocks.24.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
263
+ "backbone.blocks.24.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
264
+ "backbone.blocks.24.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
265
+ "backbone.blocks.24.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
266
+ "backbone.blocks.24.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
267
+ "backbone.blocks.24.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
268
+ "backbone.blocks.24.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
269
+ "backbone.blocks.24.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
270
+ "backbone.blocks.24.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
271
+ "backbone.blocks.24.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
272
+ "backbone.blocks.24.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
273
+ "backbone.blocks.24.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
274
+ "backbone.blocks.24.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
275
+ "backbone.blocks.24.norm_ffn.weight": "model-00003-of-00003.safetensors",
276
+ "backbone.blocks.24.norm_mlstm.weight": "model-00003-of-00003.safetensors",
277
+ "backbone.blocks.25.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
278
+ "backbone.blocks.25.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
279
+ "backbone.blocks.25.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
280
+ "backbone.blocks.25.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
281
+ "backbone.blocks.25.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
282
+ "backbone.blocks.25.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
283
+ "backbone.blocks.25.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
284
+ "backbone.blocks.25.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
285
+ "backbone.blocks.25.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
286
+ "backbone.blocks.25.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
287
+ "backbone.blocks.25.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
288
+ "backbone.blocks.25.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
289
+ "backbone.blocks.25.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
290
+ "backbone.blocks.25.norm_ffn.weight": "model-00003-of-00003.safetensors",
291
+ "backbone.blocks.25.norm_mlstm.weight": "model-00003-of-00003.safetensors",
292
+ "backbone.blocks.26.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
293
+ "backbone.blocks.26.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
294
+ "backbone.blocks.26.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
295
+ "backbone.blocks.26.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
296
+ "backbone.blocks.26.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
297
+ "backbone.blocks.26.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
298
+ "backbone.blocks.26.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
299
+ "backbone.blocks.26.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
300
+ "backbone.blocks.26.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
301
+ "backbone.blocks.26.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
302
+ "backbone.blocks.26.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
303
+ "backbone.blocks.26.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
304
+ "backbone.blocks.26.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
305
+ "backbone.blocks.26.norm_ffn.weight": "model-00003-of-00003.safetensors",
306
+ "backbone.blocks.26.norm_mlstm.weight": "model-00003-of-00003.safetensors",
307
+ "backbone.blocks.27.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
308
+ "backbone.blocks.27.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
309
+ "backbone.blocks.27.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
310
+ "backbone.blocks.27.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
311
+ "backbone.blocks.27.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
312
+ "backbone.blocks.27.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
313
+ "backbone.blocks.27.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
314
+ "backbone.blocks.27.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
315
+ "backbone.blocks.27.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
316
+ "backbone.blocks.27.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
317
+ "backbone.blocks.27.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
318
+ "backbone.blocks.27.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
319
+ "backbone.blocks.27.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
320
+ "backbone.blocks.27.norm_ffn.weight": "model-00003-of-00003.safetensors",
321
+ "backbone.blocks.27.norm_mlstm.weight": "model-00003-of-00003.safetensors",
322
+ "backbone.blocks.28.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
323
+ "backbone.blocks.28.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
324
+ "backbone.blocks.28.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
325
+ "backbone.blocks.28.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
326
+ "backbone.blocks.28.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
327
+ "backbone.blocks.28.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
328
+ "backbone.blocks.28.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
329
+ "backbone.blocks.28.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
330
+ "backbone.blocks.28.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
331
+ "backbone.blocks.28.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
332
+ "backbone.blocks.28.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
333
+ "backbone.blocks.28.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
334
+ "backbone.blocks.28.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
335
+ "backbone.blocks.28.norm_ffn.weight": "model-00003-of-00003.safetensors",
336
+ "backbone.blocks.28.norm_mlstm.weight": "model-00003-of-00003.safetensors",
337
+ "backbone.blocks.29.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
338
+ "backbone.blocks.29.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
339
+ "backbone.blocks.29.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
340
+ "backbone.blocks.29.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
341
+ "backbone.blocks.29.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
342
+ "backbone.blocks.29.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
343
+ "backbone.blocks.29.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
344
+ "backbone.blocks.29.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
345
+ "backbone.blocks.29.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
346
+ "backbone.blocks.29.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
347
+ "backbone.blocks.29.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
348
+ "backbone.blocks.29.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
349
+ "backbone.blocks.29.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
350
+ "backbone.blocks.29.norm_ffn.weight": "model-00003-of-00003.safetensors",
351
+ "backbone.blocks.29.norm_mlstm.weight": "model-00003-of-00003.safetensors",
352
+ "backbone.blocks.3.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
353
+ "backbone.blocks.3.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
354
+ "backbone.blocks.3.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
355
+ "backbone.blocks.3.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
356
+ "backbone.blocks.3.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
357
+ "backbone.blocks.3.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
358
+ "backbone.blocks.3.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
359
+ "backbone.blocks.3.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
360
+ "backbone.blocks.3.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
361
+ "backbone.blocks.3.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
362
+ "backbone.blocks.3.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
363
+ "backbone.blocks.3.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
364
+ "backbone.blocks.3.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
365
+ "backbone.blocks.3.norm_ffn.weight": "model-00001-of-00003.safetensors",
366
+ "backbone.blocks.3.norm_mlstm.weight": "model-00001-of-00003.safetensors",
367
+ "backbone.blocks.30.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
368
+ "backbone.blocks.30.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
369
+ "backbone.blocks.30.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
370
+ "backbone.blocks.30.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
371
+ "backbone.blocks.30.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
372
+ "backbone.blocks.30.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
373
+ "backbone.blocks.30.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
374
+ "backbone.blocks.30.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
375
+ "backbone.blocks.30.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
376
+ "backbone.blocks.30.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
377
+ "backbone.blocks.30.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
378
+ "backbone.blocks.30.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
379
+ "backbone.blocks.30.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
380
+ "backbone.blocks.30.norm_ffn.weight": "model-00003-of-00003.safetensors",
381
+ "backbone.blocks.30.norm_mlstm.weight": "model-00003-of-00003.safetensors",
382
+ "backbone.blocks.31.ffn.proj_down.weight": "model-00003-of-00003.safetensors",
383
+ "backbone.blocks.31.ffn.proj_up.weight": "model-00003-of-00003.safetensors",
384
+ "backbone.blocks.31.ffn.proj_up_gate.weight": "model-00003-of-00003.safetensors",
385
+ "backbone.blocks.31.mlstm_layer.fgate_preact.bias": "model-00003-of-00003.safetensors",
386
+ "backbone.blocks.31.mlstm_layer.fgate_preact.weight": "model-00003-of-00003.safetensors",
387
+ "backbone.blocks.31.mlstm_layer.igate_preact.bias": "model-00003-of-00003.safetensors",
388
+ "backbone.blocks.31.mlstm_layer.igate_preact.weight": "model-00003-of-00003.safetensors",
389
+ "backbone.blocks.31.mlstm_layer.k.weight": "model-00003-of-00003.safetensors",
390
+ "backbone.blocks.31.mlstm_layer.multihead_norm.weight": "model-00003-of-00003.safetensors",
391
+ "backbone.blocks.31.mlstm_layer.ogate_preact.weight": "model-00003-of-00003.safetensors",
392
+ "backbone.blocks.31.mlstm_layer.out_proj.weight": "model-00003-of-00003.safetensors",
393
+ "backbone.blocks.31.mlstm_layer.q.weight": "model-00003-of-00003.safetensors",
394
+ "backbone.blocks.31.mlstm_layer.v.weight": "model-00003-of-00003.safetensors",
395
+ "backbone.blocks.31.norm_ffn.weight": "model-00003-of-00003.safetensors",
396
+ "backbone.blocks.31.norm_mlstm.weight": "model-00003-of-00003.safetensors",
397
+ "backbone.blocks.4.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
398
+ "backbone.blocks.4.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
399
+ "backbone.blocks.4.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
400
+ "backbone.blocks.4.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
401
+ "backbone.blocks.4.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
402
+ "backbone.blocks.4.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
403
+ "backbone.blocks.4.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
404
+ "backbone.blocks.4.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
405
+ "backbone.blocks.4.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
406
+ "backbone.blocks.4.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
407
+ "backbone.blocks.4.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
408
+ "backbone.blocks.4.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
409
+ "backbone.blocks.4.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
410
+ "backbone.blocks.4.norm_ffn.weight": "model-00001-of-00003.safetensors",
411
+ "backbone.blocks.4.norm_mlstm.weight": "model-00001-of-00003.safetensors",
412
+ "backbone.blocks.5.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
413
+ "backbone.blocks.5.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
414
+ "backbone.blocks.5.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
415
+ "backbone.blocks.5.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
416
+ "backbone.blocks.5.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
417
+ "backbone.blocks.5.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
418
+ "backbone.blocks.5.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
419
+ "backbone.blocks.5.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
420
+ "backbone.blocks.5.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
421
+ "backbone.blocks.5.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
422
+ "backbone.blocks.5.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
423
+ "backbone.blocks.5.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
424
+ "backbone.blocks.5.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
425
+ "backbone.blocks.5.norm_ffn.weight": "model-00001-of-00003.safetensors",
426
+ "backbone.blocks.5.norm_mlstm.weight": "model-00001-of-00003.safetensors",
427
+ "backbone.blocks.6.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
428
+ "backbone.blocks.6.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
429
+ "backbone.blocks.6.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
430
+ "backbone.blocks.6.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
431
+ "backbone.blocks.6.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
432
+ "backbone.blocks.6.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
433
+ "backbone.blocks.6.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
434
+ "backbone.blocks.6.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
435
+ "backbone.blocks.6.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
436
+ "backbone.blocks.6.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
437
+ "backbone.blocks.6.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
438
+ "backbone.blocks.6.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
439
+ "backbone.blocks.6.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
440
+ "backbone.blocks.6.norm_ffn.weight": "model-00001-of-00003.safetensors",
441
+ "backbone.blocks.6.norm_mlstm.weight": "model-00001-of-00003.safetensors",
442
+ "backbone.blocks.7.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
443
+ "backbone.blocks.7.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
444
+ "backbone.blocks.7.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
445
+ "backbone.blocks.7.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
446
+ "backbone.blocks.7.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
447
+ "backbone.blocks.7.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
448
+ "backbone.blocks.7.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
449
+ "backbone.blocks.7.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
450
+ "backbone.blocks.7.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
451
+ "backbone.blocks.7.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
452
+ "backbone.blocks.7.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
453
+ "backbone.blocks.7.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
454
+ "backbone.blocks.7.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
455
+ "backbone.blocks.7.norm_ffn.weight": "model-00001-of-00003.safetensors",
456
+ "backbone.blocks.7.norm_mlstm.weight": "model-00001-of-00003.safetensors",
457
+ "backbone.blocks.8.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
458
+ "backbone.blocks.8.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
459
+ "backbone.blocks.8.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
460
+ "backbone.blocks.8.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
461
+ "backbone.blocks.8.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
462
+ "backbone.blocks.8.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
463
+ "backbone.blocks.8.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
464
+ "backbone.blocks.8.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
465
+ "backbone.blocks.8.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
466
+ "backbone.blocks.8.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
467
+ "backbone.blocks.8.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
468
+ "backbone.blocks.8.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
469
+ "backbone.blocks.8.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
470
+ "backbone.blocks.8.norm_ffn.weight": "model-00001-of-00003.safetensors",
471
+ "backbone.blocks.8.norm_mlstm.weight": "model-00001-of-00003.safetensors",
472
+ "backbone.blocks.9.ffn.proj_down.weight": "model-00001-of-00003.safetensors",
473
+ "backbone.blocks.9.ffn.proj_up.weight": "model-00001-of-00003.safetensors",
474
+ "backbone.blocks.9.ffn.proj_up_gate.weight": "model-00001-of-00003.safetensors",
475
+ "backbone.blocks.9.mlstm_layer.fgate_preact.bias": "model-00001-of-00003.safetensors",
476
+ "backbone.blocks.9.mlstm_layer.fgate_preact.weight": "model-00001-of-00003.safetensors",
477
+ "backbone.blocks.9.mlstm_layer.igate_preact.bias": "model-00001-of-00003.safetensors",
478
+ "backbone.blocks.9.mlstm_layer.igate_preact.weight": "model-00001-of-00003.safetensors",
479
+ "backbone.blocks.9.mlstm_layer.k.weight": "model-00001-of-00003.safetensors",
480
+ "backbone.blocks.9.mlstm_layer.multihead_norm.weight": "model-00001-of-00003.safetensors",
481
+ "backbone.blocks.9.mlstm_layer.ogate_preact.weight": "model-00001-of-00003.safetensors",
482
+ "backbone.blocks.9.mlstm_layer.out_proj.weight": "model-00001-of-00003.safetensors",
483
+ "backbone.blocks.9.mlstm_layer.q.weight": "model-00001-of-00003.safetensors",
484
+ "backbone.blocks.9.mlstm_layer.v.weight": "model-00001-of-00003.safetensors",
485
+ "backbone.blocks.9.norm_ffn.weight": "model-00001-of-00003.safetensors",
486
+ "backbone.blocks.9.norm_mlstm.weight": "model-00001-of-00003.safetensors",
487
+ "backbone.embeddings.weight": "model-00001-of-00003.safetensors",
488
+ "backbone.out_norm.weight": "model-00003-of-00003.safetensors",
489
+ "lm_head.weight": "model-00003-of-00003.safetensors"
490
+ }
491
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|im_end|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<|endoftext|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,2479 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": false,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<|endoftext|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<|padding|>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "50254": {
23
+ "content": " ",
24
+ "lstrip": false,
25
+ "normalized": true,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "50255": {
31
+ "content": " ",
32
+ "lstrip": false,
33
+ "normalized": true,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": false
37
+ },
38
+ "50256": {
39
+ "content": " ",
40
+ "lstrip": false,
41
+ "normalized": true,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "50257": {
47
+ "content": " ",
48
+ "lstrip": false,
49
+ "normalized": true,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "50258": {
55
+ "content": " ",
56
+ "lstrip": false,
57
+ "normalized": true,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "50259": {
63
+ "content": " ",
64
+ "lstrip": false,
65
+ "normalized": true,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": false
69
+ },
70
+ "50260": {
71
+ "content": " ",
72
+ "lstrip": false,
73
+ "normalized": true,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": false
77
+ },
78
+ "50261": {
79
+ "content": " ",
80
+ "lstrip": false,
81
+ "normalized": true,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": false
85
+ },
86
+ "50262": {
87
+ "content": " ",
88
+ "lstrip": false,
89
+ "normalized": true,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": false
93
+ },
94
+ "50263": {
95
+ "content": " ",
96
+ "lstrip": false,
97
+ "normalized": true,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": false
101
+ },
102
+ "50264": {
103
+ "content": " ",
104
+ "lstrip": false,
105
+ "normalized": true,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": false
109
+ },
110
+ "50265": {
111
+ "content": " ",
112
+ "lstrip": false,
113
+ "normalized": true,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": false
117
+ },
118
+ "50266": {
119
+ "content": " ",
120
+ "lstrip": false,
121
+ "normalized": true,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "50267": {
127
+ "content": " ",
128
+ "lstrip": false,
129
+ "normalized": true,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "50268": {
135
+ "content": " ",
136
+ "lstrip": false,
137
+ "normalized": true,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "50269": {
143
+ "content": " ",
144
+ "lstrip": false,
145
+ "normalized": true,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "50270": {
151
+ "content": " ",
152
+ "lstrip": false,
153
+ "normalized": true,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "50271": {
159
+ "content": " ",
160
+ "lstrip": false,
161
+ "normalized": true,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "50272": {
167
+ "content": " ",
168
+ "lstrip": false,
169
+ "normalized": true,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "50273": {
175
+ "content": " ",
176
+ "lstrip": false,
177
+ "normalized": true,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ },
182
+ "50274": {
183
+ "content": " ",
184
+ "lstrip": false,
185
+ "normalized": true,
186
+ "rstrip": false,
187
+ "single_word": false,
188
+ "special": false
189
+ },
190
+ "50275": {
191
+ "content": " ",
192
+ "lstrip": false,
193
+ "normalized": true,
194
+ "rstrip": false,
195
+ "single_word": false,
196
+ "special": false
197
+ },
198
+ "50276": {
199
+ "content": " ",
200
+ "lstrip": false,
201
+ "normalized": true,
202
+ "rstrip": false,
203
+ "single_word": false,
204
+ "special": false
205
+ },
206
+ "50277": {
207
+ "content": "<|begin_of_text|>",
208
+ "lstrip": false,
209
+ "normalized": false,
210
+ "rstrip": false,
211
+ "single_word": false,
212
+ "special": true
213
+ },
214
+ "50278": {
215
+ "content": "<|end_of_text|>",
216
+ "lstrip": false,
217
+ "normalized": false,
218
+ "rstrip": false,
219
+ "single_word": false,
220
+ "special": true
221
+ },
222
+ "50279": {
223
+ "content": "<think>",
224
+ "lstrip": false,
225
+ "normalized": false,
226
+ "rstrip": false,
227
+ "single_word": false,
228
+ "special": false
229
+ },
230
+ "50280": {
231
+ "content": "</think>",
232
+ "lstrip": false,
233
+ "normalized": false,
234
+ "rstrip": false,
235
+ "single_word": false,
236
+ "special": false
237
+ },
238
+ "50281": {
239
+ "content": "<|finetune_right_pad_id|>",
240
+ "lstrip": false,
241
+ "normalized": false,
242
+ "rstrip": false,
243
+ "single_word": false,
244
+ "special": true
245
+ },
246
+ "50282": {
247
+ "content": "<|reserved_special_token_2|>",
248
+ "lstrip": false,
249
+ "normalized": false,
250
+ "rstrip": false,
251
+ "single_word": false,
252
+ "special": true
253
+ },
254
+ "50283": {
255
+ "content": "<|start_header_id|>",
256
+ "lstrip": false,
257
+ "normalized": false,
258
+ "rstrip": false,
259
+ "single_word": false,
260
+ "special": true
261
+ },
262
+ "50284": {
263
+ "content": "<|end_header_id|>",
264
+ "lstrip": false,
265
+ "normalized": false,
266
+ "rstrip": false,
267
+ "single_word": false,
268
+ "special": true
269
+ },
270
+ "50285": {
271
+ "content": "<|eom_id|>",
272
+ "lstrip": false,
273
+ "normalized": false,
274
+ "rstrip": false,
275
+ "single_word": false,
276
+ "special": true
277
+ },
278
+ "50286": {
279
+ "content": "<|eot_id|>",
280
+ "lstrip": false,
281
+ "normalized": false,
282
+ "rstrip": false,
283
+ "single_word": false,
284
+ "special": true
285
+ },
286
+ "50287": {
287
+ "content": "<|python_tag|>",
288
+ "lstrip": false,
289
+ "normalized": false,
290
+ "rstrip": false,
291
+ "single_word": false,
292
+ "special": true
293
+ },
294
+ "50288": {
295
+ "content": "<|im_start|>",
296
+ "lstrip": false,
297
+ "normalized": false,
298
+ "rstrip": false,
299
+ "single_word": false,
300
+ "special": true
301
+ },
302
+ "50289": {
303
+ "content": "<|im_end|>",
304
+ "lstrip": false,
305
+ "normalized": false,
306
+ "rstrip": false,
307
+ "single_word": false,
308
+ "special": true
309
+ },
310
+ "50290": {
311
+ "content": "<tool_response>",
312
+ "lstrip": false,
313
+ "normalized": false,
314
+ "rstrip": false,
315
+ "single_word": false,
316
+ "special": false
317
+ },
318
+ "50291": {
319
+ "content": "</tool_response>",
320
+ "lstrip": false,
321
+ "normalized": false,
322
+ "rstrip": false,
323
+ "single_word": false,
324
+ "special": false
325
+ },
326
+ "50292": {
327
+ "content": "<tool_call>",
328
+ "lstrip": false,
329
+ "normalized": false,
330
+ "rstrip": false,
331
+ "single_word": false,
332
+ "special": false
333
+ },
334
+ "50293": {
335
+ "content": "</tool_call>",
336
+ "lstrip": false,
337
+ "normalized": false,
338
+ "rstrip": false,
339
+ "single_word": false,
340
+ "special": false
341
+ },
342
+ "50294": {
343
+ "content": "<code>",
344
+ "lstrip": false,
345
+ "normalized": false,
346
+ "rstrip": false,
347
+ "single_word": false,
348
+ "special": false
349
+ },
350
+ "50295": {
351
+ "content": "</code>",
352
+ "lstrip": false,
353
+ "normalized": false,
354
+ "rstrip": false,
355
+ "single_word": false,
356
+ "special": false
357
+ },
358
+ "50296": {
359
+ "content": "<|reserved_special_token_11|>",
360
+ "lstrip": false,
361
+ "normalized": false,
362
+ "rstrip": false,
363
+ "single_word": false,
364
+ "special": true
365
+ },
366
+ "50297": {
367
+ "content": "<|reserved_special_token_12|>",
368
+ "lstrip": false,
369
+ "normalized": false,
370
+ "rstrip": false,
371
+ "single_word": false,
372
+ "special": true
373
+ },
374
+ "50298": {
375
+ "content": "<|reserved_special_token_13|>",
376
+ "lstrip": false,
377
+ "normalized": false,
378
+ "rstrip": false,
379
+ "single_word": false,
380
+ "special": true
381
+ },
382
+ "50299": {
383
+ "content": "<|reserved_special_token_14|>",
384
+ "lstrip": false,
385
+ "normalized": false,
386
+ "rstrip": false,
387
+ "single_word": false,
388
+ "special": true
389
+ },
390
+ "50300": {
391
+ "content": "<|reserved_special_token_15|>",
392
+ "lstrip": false,
393
+ "normalized": false,
394
+ "rstrip": false,
395
+ "single_word": false,
396
+ "special": true
397
+ },
398
+ "50301": {
399
+ "content": "<|reserved_special_token_16|>",
400
+ "lstrip": false,
401
+ "normalized": false,
402
+ "rstrip": false,
403
+ "single_word": false,
404
+ "special": true
405
+ },
406
+ "50302": {
407
+ "content": "<|reserved_special_token_17|>",
408
+ "lstrip": false,
409
+ "normalized": false,
410
+ "rstrip": false,
411
+ "single_word": false,
412
+ "special": true
413
+ },
414
+ "50303": {
415
+ "content": "<|reserved_special_token_18|>",
416
+ "lstrip": false,
417
+ "normalized": false,
418
+ "rstrip": false,
419
+ "single_word": false,
420
+ "special": true
421
+ },
422
+ "50304": {
423
+ "content": "<|reserved_special_token_19|>",
424
+ "lstrip": false,
425
+ "normalized": false,
426
+ "rstrip": false,
427
+ "single_word": false,
428
+ "special": true
429
+ },
430
+ "50305": {
431
+ "content": "<|reserved_special_token_20|>",
432
+ "lstrip": false,
433
+ "normalized": false,
434
+ "rstrip": false,
435
+ "single_word": false,
436
+ "special": true
437
+ },
438
+ "50306": {
439
+ "content": "<|reserved_special_token_21|>",
440
+ "lstrip": false,
441
+ "normalized": false,
442
+ "rstrip": false,
443
+ "single_word": false,
444
+ "special": true
445
+ },
446
+ "50307": {
447
+ "content": "<|reserved_special_token_22|>",
448
+ "lstrip": false,
449
+ "normalized": false,
450
+ "rstrip": false,
451
+ "single_word": false,
452
+ "special": true
453
+ },
454
+ "50308": {
455
+ "content": "<|reserved_special_token_23|>",
456
+ "lstrip": false,
457
+ "normalized": false,
458
+ "rstrip": false,
459
+ "single_word": false,
460
+ "special": true
461
+ },
462
+ "50309": {
463
+ "content": "<|reserved_special_token_24|>",
464
+ "lstrip": false,
465
+ "normalized": false,
466
+ "rstrip": false,
467
+ "single_word": false,
468
+ "special": true
469
+ },
470
+ "50310": {
471
+ "content": "<|reserved_special_token_25|>",
472
+ "lstrip": false,
473
+ "normalized": false,
474
+ "rstrip": false,
475
+ "single_word": false,
476
+ "special": true
477
+ },
478
+ "50311": {
479
+ "content": "<|reserved_special_token_26|>",
480
+ "lstrip": false,
481
+ "normalized": false,
482
+ "rstrip": false,
483
+ "single_word": false,
484
+ "special": true
485
+ },
486
+ "50312": {
487
+ "content": "<|reserved_special_token_27|>",
488
+ "lstrip": false,
489
+ "normalized": false,
490
+ "rstrip": false,
491
+ "single_word": false,
492
+ "special": true
493
+ },
494
+ "50313": {
495
+ "content": "<|reserved_special_token_28|>",
496
+ "lstrip": false,
497
+ "normalized": false,
498
+ "rstrip": false,
499
+ "single_word": false,
500
+ "special": true
501
+ },
502
+ "50314": {
503
+ "content": "<|reserved_special_token_29|>",
504
+ "lstrip": false,
505
+ "normalized": false,
506
+ "rstrip": false,
507
+ "single_word": false,
508
+ "special": true
509
+ },
510
+ "50315": {
511
+ "content": "<|reserved_special_token_30|>",
512
+ "lstrip": false,
513
+ "normalized": false,
514
+ "rstrip": false,
515
+ "single_word": false,
516
+ "special": true
517
+ },
518
+ "50316": {
519
+ "content": "<|reserved_special_token_31|>",
520
+ "lstrip": false,
521
+ "normalized": false,
522
+ "rstrip": false,
523
+ "single_word": false,
524
+ "special": true
525
+ },
526
+ "50317": {
527
+ "content": "<|reserved_special_token_32|>",
528
+ "lstrip": false,
529
+ "normalized": false,
530
+ "rstrip": false,
531
+ "single_word": false,
532
+ "special": true
533
+ },
534
+ "50318": {
535
+ "content": "<|reserved_special_token_33|>",
536
+ "lstrip": false,
537
+ "normalized": false,
538
+ "rstrip": false,
539
+ "single_word": false,
540
+ "special": true
541
+ },
542
+ "50319": {
543
+ "content": "<|reserved_special_token_34|>",
544
+ "lstrip": false,
545
+ "normalized": false,
546
+ "rstrip": false,
547
+ "single_word": false,
548
+ "special": true
549
+ },
550
+ "50320": {
551
+ "content": "<|reserved_special_token_35|>",
552
+ "lstrip": false,
553
+ "normalized": false,
554
+ "rstrip": false,
555
+ "single_word": false,
556
+ "special": true
557
+ },
558
+ "50321": {
559
+ "content": "<|reserved_special_token_36|>",
560
+ "lstrip": false,
561
+ "normalized": false,
562
+ "rstrip": false,
563
+ "single_word": false,
564
+ "special": true
565
+ },
566
+ "50322": {
567
+ "content": "<|reserved_special_token_37|>",
568
+ "lstrip": false,
569
+ "normalized": false,
570
+ "rstrip": false,
571
+ "single_word": false,
572
+ "special": true
573
+ },
574
+ "50323": {
575
+ "content": "<|reserved_special_token_38|>",
576
+ "lstrip": false,
577
+ "normalized": false,
578
+ "rstrip": false,
579
+ "single_word": false,
580
+ "special": true
581
+ },
582
+ "50324": {
583
+ "content": "<|reserved_special_token_39|>",
584
+ "lstrip": false,
585
+ "normalized": false,
586
+ "rstrip": false,
587
+ "single_word": false,
588
+ "special": true
589
+ },
590
+ "50325": {
591
+ "content": "<|reserved_special_token_40|>",
592
+ "lstrip": false,
593
+ "normalized": false,
594
+ "rstrip": false,
595
+ "single_word": false,
596
+ "special": true
597
+ },
598
+ "50326": {
599
+ "content": "<|reserved_special_token_41|>",
600
+ "lstrip": false,
601
+ "normalized": false,
602
+ "rstrip": false,
603
+ "single_word": false,
604
+ "special": true
605
+ },
606
+ "50327": {
607
+ "content": "<|reserved_special_token_42|>",
608
+ "lstrip": false,
609
+ "normalized": false,
610
+ "rstrip": false,
611
+ "single_word": false,
612
+ "special": true
613
+ },
614
+ "50328": {
615
+ "content": "<|reserved_special_token_43|>",
616
+ "lstrip": false,
617
+ "normalized": false,
618
+ "rstrip": false,
619
+ "single_word": false,
620
+ "special": true
621
+ },
622
+ "50329": {
623
+ "content": "<|reserved_special_token_44|>",
624
+ "lstrip": false,
625
+ "normalized": false,
626
+ "rstrip": false,
627
+ "single_word": false,
628
+ "special": true
629
+ },
630
+ "50330": {
631
+ "content": "<|reserved_special_token_45|>",
632
+ "lstrip": false,
633
+ "normalized": false,
634
+ "rstrip": false,
635
+ "single_word": false,
636
+ "special": true
637
+ },
638
+ "50331": {
639
+ "content": "<|reserved_special_token_46|>",
640
+ "lstrip": false,
641
+ "normalized": false,
642
+ "rstrip": false,
643
+ "single_word": false,
644
+ "special": true
645
+ },
646
+ "50332": {
647
+ "content": "<|reserved_special_token_47|>",
648
+ "lstrip": false,
649
+ "normalized": false,
650
+ "rstrip": false,
651
+ "single_word": false,
652
+ "special": true
653
+ },
654
+ "50333": {
655
+ "content": "<|reserved_special_token_48|>",
656
+ "lstrip": false,
657
+ "normalized": false,
658
+ "rstrip": false,
659
+ "single_word": false,
660
+ "special": true
661
+ },
662
+ "50334": {
663
+ "content": "<|reserved_special_token_49|>",
664
+ "lstrip": false,
665
+ "normalized": false,
666
+ "rstrip": false,
667
+ "single_word": false,
668
+ "special": true
669
+ },
670
+ "50335": {
671
+ "content": "<|reserved_special_token_50|>",
672
+ "lstrip": false,
673
+ "normalized": false,
674
+ "rstrip": false,
675
+ "single_word": false,
676
+ "special": true
677
+ },
678
+ "50336": {
679
+ "content": "<|reserved_special_token_51|>",
680
+ "lstrip": false,
681
+ "normalized": false,
682
+ "rstrip": false,
683
+ "single_word": false,
684
+ "special": true
685
+ },
686
+ "50337": {
687
+ "content": "<|reserved_special_token_52|>",
688
+ "lstrip": false,
689
+ "normalized": false,
690
+ "rstrip": false,
691
+ "single_word": false,
692
+ "special": true
693
+ },
694
+ "50338": {
695
+ "content": "<|reserved_special_token_53|>",
696
+ "lstrip": false,
697
+ "normalized": false,
698
+ "rstrip": false,
699
+ "single_word": false,
700
+ "special": true
701
+ },
702
+ "50339": {
703
+ "content": "<|reserved_special_token_54|>",
704
+ "lstrip": false,
705
+ "normalized": false,
706
+ "rstrip": false,
707
+ "single_word": false,
708
+ "special": true
709
+ },
710
+ "50340": {
711
+ "content": "<|reserved_special_token_55|>",
712
+ "lstrip": false,
713
+ "normalized": false,
714
+ "rstrip": false,
715
+ "single_word": false,
716
+ "special": true
717
+ },
718
+ "50341": {
719
+ "content": "<|reserved_special_token_56|>",
720
+ "lstrip": false,
721
+ "normalized": false,
722
+ "rstrip": false,
723
+ "single_word": false,
724
+ "special": true
725
+ },
726
+ "50342": {
727
+ "content": "<|reserved_special_token_57|>",
728
+ "lstrip": false,
729
+ "normalized": false,
730
+ "rstrip": false,
731
+ "single_word": false,
732
+ "special": true
733
+ },
734
+ "50343": {
735
+ "content": "<|reserved_special_token_58|>",
736
+ "lstrip": false,
737
+ "normalized": false,
738
+ "rstrip": false,
739
+ "single_word": false,
740
+ "special": true
741
+ },
742
+ "50344": {
743
+ "content": "<|reserved_special_token_59|>",
744
+ "lstrip": false,
745
+ "normalized": false,
746
+ "rstrip": false,
747
+ "single_word": false,
748
+ "special": true
749
+ },
750
+ "50345": {
751
+ "content": "<|reserved_special_token_60|>",
752
+ "lstrip": false,
753
+ "normalized": false,
754
+ "rstrip": false,
755
+ "single_word": false,
756
+ "special": true
757
+ },
758
+ "50346": {
759
+ "content": "<|reserved_special_token_61|>",
760
+ "lstrip": false,
761
+ "normalized": false,
762
+ "rstrip": false,
763
+ "single_word": false,
764
+ "special": true
765
+ },
766
+ "50347": {
767
+ "content": "<|reserved_special_token_62|>",
768
+ "lstrip": false,
769
+ "normalized": false,
770
+ "rstrip": false,
771
+ "single_word": false,
772
+ "special": true
773
+ },
774
+ "50348": {
775
+ "content": "<|reserved_special_token_63|>",
776
+ "lstrip": false,
777
+ "normalized": false,
778
+ "rstrip": false,
779
+ "single_word": false,
780
+ "special": true
781
+ },
782
+ "50349": {
783
+ "content": "<|reserved_special_token_64|>",
784
+ "lstrip": false,
785
+ "normalized": false,
786
+ "rstrip": false,
787
+ "single_word": false,
788
+ "special": true
789
+ },
790
+ "50350": {
791
+ "content": "<|reserved_special_token_65|>",
792
+ "lstrip": false,
793
+ "normalized": false,
794
+ "rstrip": false,
795
+ "single_word": false,
796
+ "special": true
797
+ },
798
+ "50351": {
799
+ "content": "<|reserved_special_token_66|>",
800
+ "lstrip": false,
801
+ "normalized": false,
802
+ "rstrip": false,
803
+ "single_word": false,
804
+ "special": true
805
+ },
806
+ "50352": {
807
+ "content": "<|reserved_special_token_67|>",
808
+ "lstrip": false,
809
+ "normalized": false,
810
+ "rstrip": false,
811
+ "single_word": false,
812
+ "special": true
813
+ },
814
+ "50353": {
815
+ "content": "<|reserved_special_token_68|>",
816
+ "lstrip": false,
817
+ "normalized": false,
818
+ "rstrip": false,
819
+ "single_word": false,
820
+ "special": true
821
+ },
822
+ "50354": {
823
+ "content": "<|reserved_special_token_69|>",
824
+ "lstrip": false,
825
+ "normalized": false,
826
+ "rstrip": false,
827
+ "single_word": false,
828
+ "special": true
829
+ },
830
+ "50355": {
831
+ "content": "<|reserved_special_token_70|>",
832
+ "lstrip": false,
833
+ "normalized": false,
834
+ "rstrip": false,
835
+ "single_word": false,
836
+ "special": true
837
+ },
838
+ "50356": {
839
+ "content": "<|reserved_special_token_71|>",
840
+ "lstrip": false,
841
+ "normalized": false,
842
+ "rstrip": false,
843
+ "single_word": false,
844
+ "special": true
845
+ },
846
+ "50357": {
847
+ "content": "<|reserved_special_token_72|>",
848
+ "lstrip": false,
849
+ "normalized": false,
850
+ "rstrip": false,
851
+ "single_word": false,
852
+ "special": true
853
+ },
854
+ "50358": {
855
+ "content": "<|reserved_special_token_73|>",
856
+ "lstrip": false,
857
+ "normalized": false,
858
+ "rstrip": false,
859
+ "single_word": false,
860
+ "special": true
861
+ },
862
+ "50359": {
863
+ "content": "<|reserved_special_token_74|>",
864
+ "lstrip": false,
865
+ "normalized": false,
866
+ "rstrip": false,
867
+ "single_word": false,
868
+ "special": true
869
+ },
870
+ "50360": {
871
+ "content": "<|reserved_special_token_75|>",
872
+ "lstrip": false,
873
+ "normalized": false,
874
+ "rstrip": false,
875
+ "single_word": false,
876
+ "special": true
877
+ },
878
+ "50361": {
879
+ "content": "<|reserved_special_token_76|>",
880
+ "lstrip": false,
881
+ "normalized": false,
882
+ "rstrip": false,
883
+ "single_word": false,
884
+ "special": true
885
+ },
886
+ "50362": {
887
+ "content": "<|reserved_special_token_77|>",
888
+ "lstrip": false,
889
+ "normalized": false,
890
+ "rstrip": false,
891
+ "single_word": false,
892
+ "special": true
893
+ },
894
+ "50363": {
895
+ "content": "<|reserved_special_token_78|>",
896
+ "lstrip": false,
897
+ "normalized": false,
898
+ "rstrip": false,
899
+ "single_word": false,
900
+ "special": true
901
+ },
902
+ "50364": {
903
+ "content": "<|reserved_special_token_79|>",
904
+ "lstrip": false,
905
+ "normalized": false,
906
+ "rstrip": false,
907
+ "single_word": false,
908
+ "special": true
909
+ },
910
+ "50365": {
911
+ "content": "<|reserved_special_token_80|>",
912
+ "lstrip": false,
913
+ "normalized": false,
914
+ "rstrip": false,
915
+ "single_word": false,
916
+ "special": true
917
+ },
918
+ "50366": {
919
+ "content": "<|reserved_special_token_81|>",
920
+ "lstrip": false,
921
+ "normalized": false,
922
+ "rstrip": false,
923
+ "single_word": false,
924
+ "special": true
925
+ },
926
+ "50367": {
927
+ "content": "<|reserved_special_token_82|>",
928
+ "lstrip": false,
929
+ "normalized": false,
930
+ "rstrip": false,
931
+ "single_word": false,
932
+ "special": true
933
+ },
934
+ "50368": {
935
+ "content": "<|reserved_special_token_83|>",
936
+ "lstrip": false,
937
+ "normalized": false,
938
+ "rstrip": false,
939
+ "single_word": false,
940
+ "special": true
941
+ },
942
+ "50369": {
943
+ "content": "<|reserved_special_token_84|>",
944
+ "lstrip": false,
945
+ "normalized": false,
946
+ "rstrip": false,
947
+ "single_word": false,
948
+ "special": true
949
+ },
950
+ "50370": {
951
+ "content": "<|reserved_special_token_85|>",
952
+ "lstrip": false,
953
+ "normalized": false,
954
+ "rstrip": false,
955
+ "single_word": false,
956
+ "special": true
957
+ },
958
+ "50371": {
959
+ "content": "<|reserved_special_token_86|>",
960
+ "lstrip": false,
961
+ "normalized": false,
962
+ "rstrip": false,
963
+ "single_word": false,
964
+ "special": true
965
+ },
966
+ "50372": {
967
+ "content": "<|reserved_special_token_87|>",
968
+ "lstrip": false,
969
+ "normalized": false,
970
+ "rstrip": false,
971
+ "single_word": false,
972
+ "special": true
973
+ },
974
+ "50373": {
975
+ "content": "<|reserved_special_token_88|>",
976
+ "lstrip": false,
977
+ "normalized": false,
978
+ "rstrip": false,
979
+ "single_word": false,
980
+ "special": true
981
+ },
982
+ "50374": {
983
+ "content": "<|reserved_special_token_89|>",
984
+ "lstrip": false,
985
+ "normalized": false,
986
+ "rstrip": false,
987
+ "single_word": false,
988
+ "special": true
989
+ },
990
+ "50375": {
991
+ "content": "<|reserved_special_token_90|>",
992
+ "lstrip": false,
993
+ "normalized": false,
994
+ "rstrip": false,
995
+ "single_word": false,
996
+ "special": true
997
+ },
998
+ "50376": {
999
+ "content": "<|reserved_special_token_91|>",
1000
+ "lstrip": false,
1001
+ "normalized": false,
1002
+ "rstrip": false,
1003
+ "single_word": false,
1004
+ "special": true
1005
+ },
1006
+ "50377": {
1007
+ "content": "<|reserved_special_token_92|>",
1008
+ "lstrip": false,
1009
+ "normalized": false,
1010
+ "rstrip": false,
1011
+ "single_word": false,
1012
+ "special": true
1013
+ },
1014
+ "50378": {
1015
+ "content": "<|reserved_special_token_93|>",
1016
+ "lstrip": false,
1017
+ "normalized": false,
1018
+ "rstrip": false,
1019
+ "single_word": false,
1020
+ "special": true
1021
+ },
1022
+ "50379": {
1023
+ "content": "<|reserved_special_token_94|>",
1024
+ "lstrip": false,
1025
+ "normalized": false,
1026
+ "rstrip": false,
1027
+ "single_word": false,
1028
+ "special": true
1029
+ },
1030
+ "50380": {
1031
+ "content": "<|reserved_special_token_95|>",
1032
+ "lstrip": false,
1033
+ "normalized": false,
1034
+ "rstrip": false,
1035
+ "single_word": false,
1036
+ "special": true
1037
+ },
1038
+ "50381": {
1039
+ "content": "<|reserved_special_token_96|>",
1040
+ "lstrip": false,
1041
+ "normalized": false,
1042
+ "rstrip": false,
1043
+ "single_word": false,
1044
+ "special": true
1045
+ },
1046
+ "50382": {
1047
+ "content": "<|reserved_special_token_97|>",
1048
+ "lstrip": false,
1049
+ "normalized": false,
1050
+ "rstrip": false,
1051
+ "single_word": false,
1052
+ "special": true
1053
+ },
1054
+ "50383": {
1055
+ "content": "<|reserved_special_token_98|>",
1056
+ "lstrip": false,
1057
+ "normalized": false,
1058
+ "rstrip": false,
1059
+ "single_word": false,
1060
+ "special": true
1061
+ },
1062
+ "50384": {
1063
+ "content": "<|reserved_special_token_99|>",
1064
+ "lstrip": false,
1065
+ "normalized": false,
1066
+ "rstrip": false,
1067
+ "single_word": false,
1068
+ "special": true
1069
+ },
1070
+ "50385": {
1071
+ "content": "<|reserved_special_token_100|>",
1072
+ "lstrip": false,
1073
+ "normalized": false,
1074
+ "rstrip": false,
1075
+ "single_word": false,
1076
+ "special": true
1077
+ },
1078
+ "50386": {
1079
+ "content": "<|reserved_special_token_101|>",
1080
+ "lstrip": false,
1081
+ "normalized": false,
1082
+ "rstrip": false,
1083
+ "single_word": false,
1084
+ "special": true
1085
+ },
1086
+ "50387": {
1087
+ "content": "<|reserved_special_token_102|>",
1088
+ "lstrip": false,
1089
+ "normalized": false,
1090
+ "rstrip": false,
1091
+ "single_word": false,
1092
+ "special": true
1093
+ },
1094
+ "50388": {
1095
+ "content": "<|reserved_special_token_103|>",
1096
+ "lstrip": false,
1097
+ "normalized": false,
1098
+ "rstrip": false,
1099
+ "single_word": false,
1100
+ "special": true
1101
+ },
1102
+ "50389": {
1103
+ "content": "<|reserved_special_token_104|>",
1104
+ "lstrip": false,
1105
+ "normalized": false,
1106
+ "rstrip": false,
1107
+ "single_word": false,
1108
+ "special": true
1109
+ },
1110
+ "50390": {
1111
+ "content": "<|reserved_special_token_105|>",
1112
+ "lstrip": false,
1113
+ "normalized": false,
1114
+ "rstrip": false,
1115
+ "single_word": false,
1116
+ "special": true
1117
+ },
1118
+ "50391": {
1119
+ "content": "<|reserved_special_token_106|>",
1120
+ "lstrip": false,
1121
+ "normalized": false,
1122
+ "rstrip": false,
1123
+ "single_word": false,
1124
+ "special": true
1125
+ },
1126
+ "50392": {
1127
+ "content": "<|reserved_special_token_107|>",
1128
+ "lstrip": false,
1129
+ "normalized": false,
1130
+ "rstrip": false,
1131
+ "single_word": false,
1132
+ "special": true
1133
+ },
1134
+ "50393": {
1135
+ "content": "<|reserved_special_token_108|>",
1136
+ "lstrip": false,
1137
+ "normalized": false,
1138
+ "rstrip": false,
1139
+ "single_word": false,
1140
+ "special": true
1141
+ },
1142
+ "50394": {
1143
+ "content": "<|reserved_special_token_109|>",
1144
+ "lstrip": false,
1145
+ "normalized": false,
1146
+ "rstrip": false,
1147
+ "single_word": false,
1148
+ "special": true
1149
+ },
1150
+ "50395": {
1151
+ "content": "<|reserved_special_token_110|>",
1152
+ "lstrip": false,
1153
+ "normalized": false,
1154
+ "rstrip": false,
1155
+ "single_word": false,
1156
+ "special": true
1157
+ },
1158
+ "50396": {
1159
+ "content": "<|reserved_special_token_111|>",
1160
+ "lstrip": false,
1161
+ "normalized": false,
1162
+ "rstrip": false,
1163
+ "single_word": false,
1164
+ "special": true
1165
+ },
1166
+ "50397": {
1167
+ "content": "<|reserved_special_token_112|>",
1168
+ "lstrip": false,
1169
+ "normalized": false,
1170
+ "rstrip": false,
1171
+ "single_word": false,
1172
+ "special": true
1173
+ },
1174
+ "50398": {
1175
+ "content": "<|reserved_special_token_113|>",
1176
+ "lstrip": false,
1177
+ "normalized": false,
1178
+ "rstrip": false,
1179
+ "single_word": false,
1180
+ "special": true
1181
+ },
1182
+ "50399": {
1183
+ "content": "<|reserved_special_token_114|>",
1184
+ "lstrip": false,
1185
+ "normalized": false,
1186
+ "rstrip": false,
1187
+ "single_word": false,
1188
+ "special": true
1189
+ },
1190
+ "50400": {
1191
+ "content": "<|reserved_special_token_115|>",
1192
+ "lstrip": false,
1193
+ "normalized": false,
1194
+ "rstrip": false,
1195
+ "single_word": false,
1196
+ "special": true
1197
+ },
1198
+ "50401": {
1199
+ "content": "<|reserved_special_token_116|>",
1200
+ "lstrip": false,
1201
+ "normalized": false,
1202
+ "rstrip": false,
1203
+ "single_word": false,
1204
+ "special": true
1205
+ },
1206
+ "50402": {
1207
+ "content": "<|reserved_special_token_117|>",
1208
+ "lstrip": false,
1209
+ "normalized": false,
1210
+ "rstrip": false,
1211
+ "single_word": false,
1212
+ "special": true
1213
+ },
1214
+ "50403": {
1215
+ "content": "<|reserved_special_token_118|>",
1216
+ "lstrip": false,
1217
+ "normalized": false,
1218
+ "rstrip": false,
1219
+ "single_word": false,
1220
+ "special": true
1221
+ },
1222
+ "50404": {
1223
+ "content": "<|reserved_special_token_119|>",
1224
+ "lstrip": false,
1225
+ "normalized": false,
1226
+ "rstrip": false,
1227
+ "single_word": false,
1228
+ "special": true
1229
+ },
1230
+ "50405": {
1231
+ "content": "<|reserved_special_token_120|>",
1232
+ "lstrip": false,
1233
+ "normalized": false,
1234
+ "rstrip": false,
1235
+ "single_word": false,
1236
+ "special": true
1237
+ },
1238
+ "50406": {
1239
+ "content": "<|reserved_special_token_121|>",
1240
+ "lstrip": false,
1241
+ "normalized": false,
1242
+ "rstrip": false,
1243
+ "single_word": false,
1244
+ "special": true
1245
+ },
1246
+ "50407": {
1247
+ "content": "<|reserved_special_token_122|>",
1248
+ "lstrip": false,
1249
+ "normalized": false,
1250
+ "rstrip": false,
1251
+ "single_word": false,
1252
+ "special": true
1253
+ },
1254
+ "50408": {
1255
+ "content": "<|reserved_special_token_123|>",
1256
+ "lstrip": false,
1257
+ "normalized": false,
1258
+ "rstrip": false,
1259
+ "single_word": false,
1260
+ "special": true
1261
+ },
1262
+ "50409": {
1263
+ "content": "<|reserved_special_token_124|>",
1264
+ "lstrip": false,
1265
+ "normalized": false,
1266
+ "rstrip": false,
1267
+ "single_word": false,
1268
+ "special": true
1269
+ },
1270
+ "50410": {
1271
+ "content": "<|reserved_special_token_125|>",
1272
+ "lstrip": false,
1273
+ "normalized": false,
1274
+ "rstrip": false,
1275
+ "single_word": false,
1276
+ "special": true
1277
+ },
1278
+ "50411": {
1279
+ "content": "<|reserved_special_token_126|>",
1280
+ "lstrip": false,
1281
+ "normalized": false,
1282
+ "rstrip": false,
1283
+ "single_word": false,
1284
+ "special": true
1285
+ },
1286
+ "50412": {
1287
+ "content": "<|reserved_special_token_127|>",
1288
+ "lstrip": false,
1289
+ "normalized": false,
1290
+ "rstrip": false,
1291
+ "single_word": false,
1292
+ "special": true
1293
+ },
1294
+ "50413": {
1295
+ "content": "<|reserved_special_token_128|>",
1296
+ "lstrip": false,
1297
+ "normalized": false,
1298
+ "rstrip": false,
1299
+ "single_word": false,
1300
+ "special": true
1301
+ },
1302
+ "50414": {
1303
+ "content": "<|reserved_special_token_129|>",
1304
+ "lstrip": false,
1305
+ "normalized": false,
1306
+ "rstrip": false,
1307
+ "single_word": false,
1308
+ "special": true
1309
+ },
1310
+ "50415": {
1311
+ "content": "<|reserved_special_token_130|>",
1312
+ "lstrip": false,
1313
+ "normalized": false,
1314
+ "rstrip": false,
1315
+ "single_word": false,
1316
+ "special": true
1317
+ },
1318
+ "50416": {
1319
+ "content": "<|reserved_special_token_131|>",
1320
+ "lstrip": false,
1321
+ "normalized": false,
1322
+ "rstrip": false,
1323
+ "single_word": false,
1324
+ "special": true
1325
+ },
1326
+ "50417": {
1327
+ "content": "<|reserved_special_token_132|>",
1328
+ "lstrip": false,
1329
+ "normalized": false,
1330
+ "rstrip": false,
1331
+ "single_word": false,
1332
+ "special": true
1333
+ },
1334
+ "50418": {
1335
+ "content": "<|reserved_special_token_133|>",
1336
+ "lstrip": false,
1337
+ "normalized": false,
1338
+ "rstrip": false,
1339
+ "single_word": false,
1340
+ "special": true
1341
+ },
1342
+ "50419": {
1343
+ "content": "<|reserved_special_token_134|>",
1344
+ "lstrip": false,
1345
+ "normalized": false,
1346
+ "rstrip": false,
1347
+ "single_word": false,
1348
+ "special": true
1349
+ },
1350
+ "50420": {
1351
+ "content": "<|reserved_special_token_135|>",
1352
+ "lstrip": false,
1353
+ "normalized": false,
1354
+ "rstrip": false,
1355
+ "single_word": false,
1356
+ "special": true
1357
+ },
1358
+ "50421": {
1359
+ "content": "<|reserved_special_token_136|>",
1360
+ "lstrip": false,
1361
+ "normalized": false,
1362
+ "rstrip": false,
1363
+ "single_word": false,
1364
+ "special": true
1365
+ },
1366
+ "50422": {
1367
+ "content": "<|reserved_special_token_137|>",
1368
+ "lstrip": false,
1369
+ "normalized": false,
1370
+ "rstrip": false,
1371
+ "single_word": false,
1372
+ "special": true
1373
+ },
1374
+ "50423": {
1375
+ "content": "<|reserved_special_token_138|>",
1376
+ "lstrip": false,
1377
+ "normalized": false,
1378
+ "rstrip": false,
1379
+ "single_word": false,
1380
+ "special": true
1381
+ },
1382
+ "50424": {
1383
+ "content": "<|reserved_special_token_139|>",
1384
+ "lstrip": false,
1385
+ "normalized": false,
1386
+ "rstrip": false,
1387
+ "single_word": false,
1388
+ "special": true
1389
+ },
1390
+ "50425": {
1391
+ "content": "<|reserved_special_token_140|>",
1392
+ "lstrip": false,
1393
+ "normalized": false,
1394
+ "rstrip": false,
1395
+ "single_word": false,
1396
+ "special": true
1397
+ },
1398
+ "50426": {
1399
+ "content": "<|reserved_special_token_141|>",
1400
+ "lstrip": false,
1401
+ "normalized": false,
1402
+ "rstrip": false,
1403
+ "single_word": false,
1404
+ "special": true
1405
+ },
1406
+ "50427": {
1407
+ "content": "<|reserved_special_token_142|>",
1408
+ "lstrip": false,
1409
+ "normalized": false,
1410
+ "rstrip": false,
1411
+ "single_word": false,
1412
+ "special": true
1413
+ },
1414
+ "50428": {
1415
+ "content": "<|reserved_special_token_143|>",
1416
+ "lstrip": false,
1417
+ "normalized": false,
1418
+ "rstrip": false,
1419
+ "single_word": false,
1420
+ "special": true
1421
+ },
1422
+ "50429": {
1423
+ "content": "<|reserved_special_token_144|>",
1424
+ "lstrip": false,
1425
+ "normalized": false,
1426
+ "rstrip": false,
1427
+ "single_word": false,
1428
+ "special": true
1429
+ },
1430
+ "50430": {
1431
+ "content": "<|reserved_special_token_145|>",
1432
+ "lstrip": false,
1433
+ "normalized": false,
1434
+ "rstrip": false,
1435
+ "single_word": false,
1436
+ "special": true
1437
+ },
1438
+ "50431": {
1439
+ "content": "<|reserved_special_token_146|>",
1440
+ "lstrip": false,
1441
+ "normalized": false,
1442
+ "rstrip": false,
1443
+ "single_word": false,
1444
+ "special": true
1445
+ },
1446
+ "50432": {
1447
+ "content": "<|reserved_special_token_147|>",
1448
+ "lstrip": false,
1449
+ "normalized": false,
1450
+ "rstrip": false,
1451
+ "single_word": false,
1452
+ "special": true
1453
+ },
1454
+ "50433": {
1455
+ "content": "<|reserved_special_token_148|>",
1456
+ "lstrip": false,
1457
+ "normalized": false,
1458
+ "rstrip": false,
1459
+ "single_word": false,
1460
+ "special": true
1461
+ },
1462
+ "50434": {
1463
+ "content": "<|reserved_special_token_149|>",
1464
+ "lstrip": false,
1465
+ "normalized": false,
1466
+ "rstrip": false,
1467
+ "single_word": false,
1468
+ "special": true
1469
+ },
1470
+ "50435": {
1471
+ "content": "<|reserved_special_token_150|>",
1472
+ "lstrip": false,
1473
+ "normalized": false,
1474
+ "rstrip": false,
1475
+ "single_word": false,
1476
+ "special": true
1477
+ },
1478
+ "50436": {
1479
+ "content": "<|reserved_special_token_151|>",
1480
+ "lstrip": false,
1481
+ "normalized": false,
1482
+ "rstrip": false,
1483
+ "single_word": false,
1484
+ "special": true
1485
+ },
1486
+ "50437": {
1487
+ "content": "<|reserved_special_token_152|>",
1488
+ "lstrip": false,
1489
+ "normalized": false,
1490
+ "rstrip": false,
1491
+ "single_word": false,
1492
+ "special": true
1493
+ },
1494
+ "50438": {
1495
+ "content": "<|reserved_special_token_153|>",
1496
+ "lstrip": false,
1497
+ "normalized": false,
1498
+ "rstrip": false,
1499
+ "single_word": false,
1500
+ "special": true
1501
+ },
1502
+ "50439": {
1503
+ "content": "<|reserved_special_token_154|>",
1504
+ "lstrip": false,
1505
+ "normalized": false,
1506
+ "rstrip": false,
1507
+ "single_word": false,
1508
+ "special": true
1509
+ },
1510
+ "50440": {
1511
+ "content": "<|reserved_special_token_155|>",
1512
+ "lstrip": false,
1513
+ "normalized": false,
1514
+ "rstrip": false,
1515
+ "single_word": false,
1516
+ "special": true
1517
+ },
1518
+ "50441": {
1519
+ "content": "<|reserved_special_token_156|>",
1520
+ "lstrip": false,
1521
+ "normalized": false,
1522
+ "rstrip": false,
1523
+ "single_word": false,
1524
+ "special": true
1525
+ },
1526
+ "50442": {
1527
+ "content": "<|reserved_special_token_157|>",
1528
+ "lstrip": false,
1529
+ "normalized": false,
1530
+ "rstrip": false,
1531
+ "single_word": false,
1532
+ "special": true
1533
+ },
1534
+ "50443": {
1535
+ "content": "<|reserved_special_token_158|>",
1536
+ "lstrip": false,
1537
+ "normalized": false,
1538
+ "rstrip": false,
1539
+ "single_word": false,
1540
+ "special": true
1541
+ },
1542
+ "50444": {
1543
+ "content": "<|reserved_special_token_159|>",
1544
+ "lstrip": false,
1545
+ "normalized": false,
1546
+ "rstrip": false,
1547
+ "single_word": false,
1548
+ "special": true
1549
+ },
1550
+ "50445": {
1551
+ "content": "<|reserved_special_token_160|>",
1552
+ "lstrip": false,
1553
+ "normalized": false,
1554
+ "rstrip": false,
1555
+ "single_word": false,
1556
+ "special": true
1557
+ },
1558
+ "50446": {
1559
+ "content": "<|reserved_special_token_161|>",
1560
+ "lstrip": false,
1561
+ "normalized": false,
1562
+ "rstrip": false,
1563
+ "single_word": false,
1564
+ "special": true
1565
+ },
1566
+ "50447": {
1567
+ "content": "<|reserved_special_token_162|>",
1568
+ "lstrip": false,
1569
+ "normalized": false,
1570
+ "rstrip": false,
1571
+ "single_word": false,
1572
+ "special": true
1573
+ },
1574
+ "50448": {
1575
+ "content": "<|reserved_special_token_163|>",
1576
+ "lstrip": false,
1577
+ "normalized": false,
1578
+ "rstrip": false,
1579
+ "single_word": false,
1580
+ "special": true
1581
+ },
1582
+ "50449": {
1583
+ "content": "<|reserved_special_token_164|>",
1584
+ "lstrip": false,
1585
+ "normalized": false,
1586
+ "rstrip": false,
1587
+ "single_word": false,
1588
+ "special": true
1589
+ },
1590
+ "50450": {
1591
+ "content": "<|reserved_special_token_165|>",
1592
+ "lstrip": false,
1593
+ "normalized": false,
1594
+ "rstrip": false,
1595
+ "single_word": false,
1596
+ "special": true
1597
+ },
1598
+ "50451": {
1599
+ "content": "<|reserved_special_token_166|>",
1600
+ "lstrip": false,
1601
+ "normalized": false,
1602
+ "rstrip": false,
1603
+ "single_word": false,
1604
+ "special": true
1605
+ },
1606
+ "50452": {
1607
+ "content": "<|reserved_special_token_167|>",
1608
+ "lstrip": false,
1609
+ "normalized": false,
1610
+ "rstrip": false,
1611
+ "single_word": false,
1612
+ "special": true
1613
+ },
1614
+ "50453": {
1615
+ "content": "<|reserved_special_token_168|>",
1616
+ "lstrip": false,
1617
+ "normalized": false,
1618
+ "rstrip": false,
1619
+ "single_word": false,
1620
+ "special": true
1621
+ },
1622
+ "50454": {
1623
+ "content": "<|reserved_special_token_169|>",
1624
+ "lstrip": false,
1625
+ "normalized": false,
1626
+ "rstrip": false,
1627
+ "single_word": false,
1628
+ "special": true
1629
+ },
1630
+ "50455": {
1631
+ "content": "<|reserved_special_token_170|>",
1632
+ "lstrip": false,
1633
+ "normalized": false,
1634
+ "rstrip": false,
1635
+ "single_word": false,
1636
+ "special": true
1637
+ },
1638
+ "50456": {
1639
+ "content": "<|reserved_special_token_171|>",
1640
+ "lstrip": false,
1641
+ "normalized": false,
1642
+ "rstrip": false,
1643
+ "single_word": false,
1644
+ "special": true
1645
+ },
1646
+ "50457": {
1647
+ "content": "<|reserved_special_token_172|>",
1648
+ "lstrip": false,
1649
+ "normalized": false,
1650
+ "rstrip": false,
1651
+ "single_word": false,
1652
+ "special": true
1653
+ },
1654
+ "50458": {
1655
+ "content": "<|reserved_special_token_173|>",
1656
+ "lstrip": false,
1657
+ "normalized": false,
1658
+ "rstrip": false,
1659
+ "single_word": false,
1660
+ "special": true
1661
+ },
1662
+ "50459": {
1663
+ "content": "<|reserved_special_token_174|>",
1664
+ "lstrip": false,
1665
+ "normalized": false,
1666
+ "rstrip": false,
1667
+ "single_word": false,
1668
+ "special": true
1669
+ },
1670
+ "50460": {
1671
+ "content": "<|reserved_special_token_175|>",
1672
+ "lstrip": false,
1673
+ "normalized": false,
1674
+ "rstrip": false,
1675
+ "single_word": false,
1676
+ "special": true
1677
+ },
1678
+ "50461": {
1679
+ "content": "<|reserved_special_token_176|>",
1680
+ "lstrip": false,
1681
+ "normalized": false,
1682
+ "rstrip": false,
1683
+ "single_word": false,
1684
+ "special": true
1685
+ },
1686
+ "50462": {
1687
+ "content": "<|reserved_special_token_177|>",
1688
+ "lstrip": false,
1689
+ "normalized": false,
1690
+ "rstrip": false,
1691
+ "single_word": false,
1692
+ "special": true
1693
+ },
1694
+ "50463": {
1695
+ "content": "<|reserved_special_token_178|>",
1696
+ "lstrip": false,
1697
+ "normalized": false,
1698
+ "rstrip": false,
1699
+ "single_word": false,
1700
+ "special": true
1701
+ },
1702
+ "50464": {
1703
+ "content": "<|reserved_special_token_179|>",
1704
+ "lstrip": false,
1705
+ "normalized": false,
1706
+ "rstrip": false,
1707
+ "single_word": false,
1708
+ "special": true
1709
+ },
1710
+ "50465": {
1711
+ "content": "<|reserved_special_token_180|>",
1712
+ "lstrip": false,
1713
+ "normalized": false,
1714
+ "rstrip": false,
1715
+ "single_word": false,
1716
+ "special": true
1717
+ },
1718
+ "50466": {
1719
+ "content": "<|reserved_special_token_181|>",
1720
+ "lstrip": false,
1721
+ "normalized": false,
1722
+ "rstrip": false,
1723
+ "single_word": false,
1724
+ "special": true
1725
+ },
1726
+ "50467": {
1727
+ "content": "<|reserved_special_token_182|>",
1728
+ "lstrip": false,
1729
+ "normalized": false,
1730
+ "rstrip": false,
1731
+ "single_word": false,
1732
+ "special": true
1733
+ },
1734
+ "50468": {
1735
+ "content": "<|reserved_special_token_183|>",
1736
+ "lstrip": false,
1737
+ "normalized": false,
1738
+ "rstrip": false,
1739
+ "single_word": false,
1740
+ "special": true
1741
+ },
1742
+ "50469": {
1743
+ "content": "<|reserved_special_token_184|>",
1744
+ "lstrip": false,
1745
+ "normalized": false,
1746
+ "rstrip": false,
1747
+ "single_word": false,
1748
+ "special": true
1749
+ },
1750
+ "50470": {
1751
+ "content": "<|reserved_special_token_185|>",
1752
+ "lstrip": false,
1753
+ "normalized": false,
1754
+ "rstrip": false,
1755
+ "single_word": false,
1756
+ "special": true
1757
+ },
1758
+ "50471": {
1759
+ "content": "<|reserved_special_token_186|>",
1760
+ "lstrip": false,
1761
+ "normalized": false,
1762
+ "rstrip": false,
1763
+ "single_word": false,
1764
+ "special": true
1765
+ },
1766
+ "50472": {
1767
+ "content": "<|reserved_special_token_187|>",
1768
+ "lstrip": false,
1769
+ "normalized": false,
1770
+ "rstrip": false,
1771
+ "single_word": false,
1772
+ "special": true
1773
+ },
1774
+ "50473": {
1775
+ "content": "<|reserved_special_token_188|>",
1776
+ "lstrip": false,
1777
+ "normalized": false,
1778
+ "rstrip": false,
1779
+ "single_word": false,
1780
+ "special": true
1781
+ },
1782
+ "50474": {
1783
+ "content": "<|reserved_special_token_189|>",
1784
+ "lstrip": false,
1785
+ "normalized": false,
1786
+ "rstrip": false,
1787
+ "single_word": false,
1788
+ "special": true
1789
+ },
1790
+ "50475": {
1791
+ "content": "<|reserved_special_token_190|>",
1792
+ "lstrip": false,
1793
+ "normalized": false,
1794
+ "rstrip": false,
1795
+ "single_word": false,
1796
+ "special": true
1797
+ },
1798
+ "50476": {
1799
+ "content": "<|reserved_special_token_191|>",
1800
+ "lstrip": false,
1801
+ "normalized": false,
1802
+ "rstrip": false,
1803
+ "single_word": false,
1804
+ "special": true
1805
+ },
1806
+ "50477": {
1807
+ "content": "<|reserved_special_token_192|>",
1808
+ "lstrip": false,
1809
+ "normalized": false,
1810
+ "rstrip": false,
1811
+ "single_word": false,
1812
+ "special": true
1813
+ },
1814
+ "50478": {
1815
+ "content": "<|reserved_special_token_193|>",
1816
+ "lstrip": false,
1817
+ "normalized": false,
1818
+ "rstrip": false,
1819
+ "single_word": false,
1820
+ "special": true
1821
+ },
1822
+ "50479": {
1823
+ "content": "<|reserved_special_token_194|>",
1824
+ "lstrip": false,
1825
+ "normalized": false,
1826
+ "rstrip": false,
1827
+ "single_word": false,
1828
+ "special": true
1829
+ },
1830
+ "50480": {
1831
+ "content": "<|reserved_special_token_195|>",
1832
+ "lstrip": false,
1833
+ "normalized": false,
1834
+ "rstrip": false,
1835
+ "single_word": false,
1836
+ "special": true
1837
+ },
1838
+ "50481": {
1839
+ "content": "<|reserved_special_token_196|>",
1840
+ "lstrip": false,
1841
+ "normalized": false,
1842
+ "rstrip": false,
1843
+ "single_word": false,
1844
+ "special": true
1845
+ },
1846
+ "50482": {
1847
+ "content": "<|reserved_special_token_197|>",
1848
+ "lstrip": false,
1849
+ "normalized": false,
1850
+ "rstrip": false,
1851
+ "single_word": false,
1852
+ "special": true
1853
+ },
1854
+ "50483": {
1855
+ "content": "<|reserved_special_token_198|>",
1856
+ "lstrip": false,
1857
+ "normalized": false,
1858
+ "rstrip": false,
1859
+ "single_word": false,
1860
+ "special": true
1861
+ },
1862
+ "50484": {
1863
+ "content": "<|reserved_special_token_199|>",
1864
+ "lstrip": false,
1865
+ "normalized": false,
1866
+ "rstrip": false,
1867
+ "single_word": false,
1868
+ "special": true
1869
+ },
1870
+ "50485": {
1871
+ "content": "<|reserved_special_token_200|>",
1872
+ "lstrip": false,
1873
+ "normalized": false,
1874
+ "rstrip": false,
1875
+ "single_word": false,
1876
+ "special": true
1877
+ },
1878
+ "50486": {
1879
+ "content": "<|reserved_special_token_201|>",
1880
+ "lstrip": false,
1881
+ "normalized": false,
1882
+ "rstrip": false,
1883
+ "single_word": false,
1884
+ "special": true
1885
+ },
1886
+ "50487": {
1887
+ "content": "<|reserved_special_token_202|>",
1888
+ "lstrip": false,
1889
+ "normalized": false,
1890
+ "rstrip": false,
1891
+ "single_word": false,
1892
+ "special": true
1893
+ },
1894
+ "50488": {
1895
+ "content": "<|reserved_special_token_203|>",
1896
+ "lstrip": false,
1897
+ "normalized": false,
1898
+ "rstrip": false,
1899
+ "single_word": false,
1900
+ "special": true
1901
+ },
1902
+ "50489": {
1903
+ "content": "<|reserved_special_token_204|>",
1904
+ "lstrip": false,
1905
+ "normalized": false,
1906
+ "rstrip": false,
1907
+ "single_word": false,
1908
+ "special": true
1909
+ },
1910
+ "50490": {
1911
+ "content": "<|reserved_special_token_205|>",
1912
+ "lstrip": false,
1913
+ "normalized": false,
1914
+ "rstrip": false,
1915
+ "single_word": false,
1916
+ "special": true
1917
+ },
1918
+ "50491": {
1919
+ "content": "<|reserved_special_token_206|>",
1920
+ "lstrip": false,
1921
+ "normalized": false,
1922
+ "rstrip": false,
1923
+ "single_word": false,
1924
+ "special": true
1925
+ },
1926
+ "50492": {
1927
+ "content": "<|reserved_special_token_207|>",
1928
+ "lstrip": false,
1929
+ "normalized": false,
1930
+ "rstrip": false,
1931
+ "single_word": false,
1932
+ "special": true
1933
+ },
1934
+ "50493": {
1935
+ "content": "<|reserved_special_token_208|>",
1936
+ "lstrip": false,
1937
+ "normalized": false,
1938
+ "rstrip": false,
1939
+ "single_word": false,
1940
+ "special": true
1941
+ },
1942
+ "50494": {
1943
+ "content": "<|reserved_special_token_209|>",
1944
+ "lstrip": false,
1945
+ "normalized": false,
1946
+ "rstrip": false,
1947
+ "single_word": false,
1948
+ "special": true
1949
+ },
1950
+ "50495": {
1951
+ "content": "<|reserved_special_token_210|>",
1952
+ "lstrip": false,
1953
+ "normalized": false,
1954
+ "rstrip": false,
1955
+ "single_word": false,
1956
+ "special": true
1957
+ },
1958
+ "50496": {
1959
+ "content": "<|reserved_special_token_211|>",
1960
+ "lstrip": false,
1961
+ "normalized": false,
1962
+ "rstrip": false,
1963
+ "single_word": false,
1964
+ "special": true
1965
+ },
1966
+ "50497": {
1967
+ "content": "<|reserved_special_token_212|>",
1968
+ "lstrip": false,
1969
+ "normalized": false,
1970
+ "rstrip": false,
1971
+ "single_word": false,
1972
+ "special": true
1973
+ },
1974
+ "50498": {
1975
+ "content": "<|reserved_special_token_213|>",
1976
+ "lstrip": false,
1977
+ "normalized": false,
1978
+ "rstrip": false,
1979
+ "single_word": false,
1980
+ "special": true
1981
+ },
1982
+ "50499": {
1983
+ "content": "<|reserved_special_token_214|>",
1984
+ "lstrip": false,
1985
+ "normalized": false,
1986
+ "rstrip": false,
1987
+ "single_word": false,
1988
+ "special": true
1989
+ },
1990
+ "50500": {
1991
+ "content": "<|reserved_special_token_215|>",
1992
+ "lstrip": false,
1993
+ "normalized": false,
1994
+ "rstrip": false,
1995
+ "single_word": false,
1996
+ "special": true
1997
+ },
1998
+ "50501": {
1999
+ "content": "<|reserved_special_token_216|>",
2000
+ "lstrip": false,
2001
+ "normalized": false,
2002
+ "rstrip": false,
2003
+ "single_word": false,
2004
+ "special": true
2005
+ },
2006
+ "50502": {
2007
+ "content": "<|reserved_special_token_217|>",
2008
+ "lstrip": false,
2009
+ "normalized": false,
2010
+ "rstrip": false,
2011
+ "single_word": false,
2012
+ "special": true
2013
+ },
2014
+ "50503": {
2015
+ "content": "<|reserved_special_token_218|>",
2016
+ "lstrip": false,
2017
+ "normalized": false,
2018
+ "rstrip": false,
2019
+ "single_word": false,
2020
+ "special": true
2021
+ },
2022
+ "50504": {
2023
+ "content": "<|reserved_special_token_219|>",
2024
+ "lstrip": false,
2025
+ "normalized": false,
2026
+ "rstrip": false,
2027
+ "single_word": false,
2028
+ "special": true
2029
+ },
2030
+ "50505": {
2031
+ "content": "<|reserved_special_token_220|>",
2032
+ "lstrip": false,
2033
+ "normalized": false,
2034
+ "rstrip": false,
2035
+ "single_word": false,
2036
+ "special": true
2037
+ },
2038
+ "50506": {
2039
+ "content": "<|reserved_special_token_221|>",
2040
+ "lstrip": false,
2041
+ "normalized": false,
2042
+ "rstrip": false,
2043
+ "single_word": false,
2044
+ "special": true
2045
+ },
2046
+ "50507": {
2047
+ "content": "<|reserved_special_token_222|>",
2048
+ "lstrip": false,
2049
+ "normalized": false,
2050
+ "rstrip": false,
2051
+ "single_word": false,
2052
+ "special": true
2053
+ },
2054
+ "50508": {
2055
+ "content": "<|reserved_special_token_223|>",
2056
+ "lstrip": false,
2057
+ "normalized": false,
2058
+ "rstrip": false,
2059
+ "single_word": false,
2060
+ "special": true
2061
+ },
2062
+ "50509": {
2063
+ "content": "<|reserved_special_token_224|>",
2064
+ "lstrip": false,
2065
+ "normalized": false,
2066
+ "rstrip": false,
2067
+ "single_word": false,
2068
+ "special": true
2069
+ },
2070
+ "50510": {
2071
+ "content": "<|reserved_special_token_225|>",
2072
+ "lstrip": false,
2073
+ "normalized": false,
2074
+ "rstrip": false,
2075
+ "single_word": false,
2076
+ "special": true
2077
+ },
2078
+ "50511": {
2079
+ "content": "<|reserved_special_token_226|>",
2080
+ "lstrip": false,
2081
+ "normalized": false,
2082
+ "rstrip": false,
2083
+ "single_word": false,
2084
+ "special": true
2085
+ },
2086
+ "50512": {
2087
+ "content": "<|reserved_special_token_227|>",
2088
+ "lstrip": false,
2089
+ "normalized": false,
2090
+ "rstrip": false,
2091
+ "single_word": false,
2092
+ "special": true
2093
+ },
2094
+ "50513": {
2095
+ "content": "<|reserved_special_token_228|>",
2096
+ "lstrip": false,
2097
+ "normalized": false,
2098
+ "rstrip": false,
2099
+ "single_word": false,
2100
+ "special": true
2101
+ },
2102
+ "50514": {
2103
+ "content": "<|reserved_special_token_229|>",
2104
+ "lstrip": false,
2105
+ "normalized": false,
2106
+ "rstrip": false,
2107
+ "single_word": false,
2108
+ "special": true
2109
+ },
2110
+ "50515": {
2111
+ "content": "<|reserved_special_token_230|>",
2112
+ "lstrip": false,
2113
+ "normalized": false,
2114
+ "rstrip": false,
2115
+ "single_word": false,
2116
+ "special": true
2117
+ },
2118
+ "50516": {
2119
+ "content": "<|reserved_special_token_231|>",
2120
+ "lstrip": false,
2121
+ "normalized": false,
2122
+ "rstrip": false,
2123
+ "single_word": false,
2124
+ "special": true
2125
+ },
2126
+ "50517": {
2127
+ "content": "<|reserved_special_token_232|>",
2128
+ "lstrip": false,
2129
+ "normalized": false,
2130
+ "rstrip": false,
2131
+ "single_word": false,
2132
+ "special": true
2133
+ },
2134
+ "50518": {
2135
+ "content": "<|reserved_special_token_233|>",
2136
+ "lstrip": false,
2137
+ "normalized": false,
2138
+ "rstrip": false,
2139
+ "single_word": false,
2140
+ "special": true
2141
+ },
2142
+ "50519": {
2143
+ "content": "<|reserved_special_token_234|>",
2144
+ "lstrip": false,
2145
+ "normalized": false,
2146
+ "rstrip": false,
2147
+ "single_word": false,
2148
+ "special": true
2149
+ },
2150
+ "50520": {
2151
+ "content": "<|reserved_special_token_235|>",
2152
+ "lstrip": false,
2153
+ "normalized": false,
2154
+ "rstrip": false,
2155
+ "single_word": false,
2156
+ "special": true
2157
+ },
2158
+ "50521": {
2159
+ "content": "<|reserved_special_token_236|>",
2160
+ "lstrip": false,
2161
+ "normalized": false,
2162
+ "rstrip": false,
2163
+ "single_word": false,
2164
+ "special": true
2165
+ },
2166
+ "50522": {
2167
+ "content": "<|reserved_special_token_237|>",
2168
+ "lstrip": false,
2169
+ "normalized": false,
2170
+ "rstrip": false,
2171
+ "single_word": false,
2172
+ "special": true
2173
+ },
2174
+ "50523": {
2175
+ "content": "<|reserved_special_token_238|>",
2176
+ "lstrip": false,
2177
+ "normalized": false,
2178
+ "rstrip": false,
2179
+ "single_word": false,
2180
+ "special": true
2181
+ },
2182
+ "50524": {
2183
+ "content": "<|reserved_special_token_239|>",
2184
+ "lstrip": false,
2185
+ "normalized": false,
2186
+ "rstrip": false,
2187
+ "single_word": false,
2188
+ "special": true
2189
+ },
2190
+ "50525": {
2191
+ "content": "<|reserved_special_token_240|>",
2192
+ "lstrip": false,
2193
+ "normalized": false,
2194
+ "rstrip": false,
2195
+ "single_word": false,
2196
+ "special": true
2197
+ },
2198
+ "50526": {
2199
+ "content": "<|reserved_special_token_241|>",
2200
+ "lstrip": false,
2201
+ "normalized": false,
2202
+ "rstrip": false,
2203
+ "single_word": false,
2204
+ "special": true
2205
+ },
2206
+ "50527": {
2207
+ "content": "<|reserved_special_token_242|>",
2208
+ "lstrip": false,
2209
+ "normalized": false,
2210
+ "rstrip": false,
2211
+ "single_word": false,
2212
+ "special": true
2213
+ },
2214
+ "50528": {
2215
+ "content": "<|reserved_special_token_243|>",
2216
+ "lstrip": false,
2217
+ "normalized": false,
2218
+ "rstrip": false,
2219
+ "single_word": false,
2220
+ "special": true
2221
+ },
2222
+ "50529": {
2223
+ "content": "<|reserved_special_token_244|>",
2224
+ "lstrip": false,
2225
+ "normalized": false,
2226
+ "rstrip": false,
2227
+ "single_word": false,
2228
+ "special": true
2229
+ },
2230
+ "50530": {
2231
+ "content": "<|reserved_special_token_245|>",
2232
+ "lstrip": false,
2233
+ "normalized": false,
2234
+ "rstrip": false,
2235
+ "single_word": false,
2236
+ "special": true
2237
+ },
2238
+ "50531": {
2239
+ "content": "<|reserved_special_token_246|>",
2240
+ "lstrip": false,
2241
+ "normalized": false,
2242
+ "rstrip": false,
2243
+ "single_word": false,
2244
+ "special": true
2245
+ },
2246
+ "50532": {
2247
+ "content": "<|reserved_special_token_247|>",
2248
+ "lstrip": false,
2249
+ "normalized": false,
2250
+ "rstrip": false,
2251
+ "single_word": false,
2252
+ "special": true
2253
+ },
2254
+ "50533": {
2255
+ "content": "<extra_id_0>",
2256
+ "lstrip": false,
2257
+ "normalized": true,
2258
+ "rstrip": false,
2259
+ "single_word": false,
2260
+ "special": false
2261
+ },
2262
+ "50534": {
2263
+ "content": "<extra_id_1>",
2264
+ "lstrip": false,
2265
+ "normalized": true,
2266
+ "rstrip": false,
2267
+ "single_word": false,
2268
+ "special": false
2269
+ },
2270
+ "50535": {
2271
+ "content": "<extra_id_2>",
2272
+ "lstrip": false,
2273
+ "normalized": true,
2274
+ "rstrip": false,
2275
+ "single_word": false,
2276
+ "special": false
2277
+ },
2278
+ "50536": {
2279
+ "content": "<extra_id_3>",
2280
+ "lstrip": false,
2281
+ "normalized": true,
2282
+ "rstrip": false,
2283
+ "single_word": false,
2284
+ "special": false
2285
+ },
2286
+ "50537": {
2287
+ "content": "<extra_id_4>",
2288
+ "lstrip": false,
2289
+ "normalized": true,
2290
+ "rstrip": false,
2291
+ "single_word": false,
2292
+ "special": false
2293
+ },
2294
+ "50538": {
2295
+ "content": "<extra_id_5>",
2296
+ "lstrip": false,
2297
+ "normalized": true,
2298
+ "rstrip": false,
2299
+ "single_word": false,
2300
+ "special": false
2301
+ },
2302
+ "50539": {
2303
+ "content": "<extra_id_6>",
2304
+ "lstrip": false,
2305
+ "normalized": true,
2306
+ "rstrip": false,
2307
+ "single_word": false,
2308
+ "special": false
2309
+ },
2310
+ "50540": {
2311
+ "content": "<extra_id_7>",
2312
+ "lstrip": false,
2313
+ "normalized": true,
2314
+ "rstrip": false,
2315
+ "single_word": false,
2316
+ "special": false
2317
+ },
2318
+ "50541": {
2319
+ "content": "<extra_id_8>",
2320
+ "lstrip": false,
2321
+ "normalized": true,
2322
+ "rstrip": false,
2323
+ "single_word": false,
2324
+ "special": false
2325
+ },
2326
+ "50542": {
2327
+ "content": "<extra_id_9>",
2328
+ "lstrip": false,
2329
+ "normalized": true,
2330
+ "rstrip": false,
2331
+ "single_word": false,
2332
+ "special": false
2333
+ },
2334
+ "50543": {
2335
+ "content": "<extra_id_10>",
2336
+ "lstrip": false,
2337
+ "normalized": true,
2338
+ "rstrip": false,
2339
+ "single_word": false,
2340
+ "special": false
2341
+ },
2342
+ "50544": {
2343
+ "content": "<extra_id_11>",
2344
+ "lstrip": false,
2345
+ "normalized": true,
2346
+ "rstrip": false,
2347
+ "single_word": false,
2348
+ "special": false
2349
+ },
2350
+ "50545": {
2351
+ "content": "<extra_id_12>",
2352
+ "lstrip": false,
2353
+ "normalized": true,
2354
+ "rstrip": false,
2355
+ "single_word": false,
2356
+ "special": false
2357
+ },
2358
+ "50546": {
2359
+ "content": "<extra_id_13>",
2360
+ "lstrip": false,
2361
+ "normalized": true,
2362
+ "rstrip": false,
2363
+ "single_word": false,
2364
+ "special": false
2365
+ },
2366
+ "50547": {
2367
+ "content": "<extra_id_14>",
2368
+ "lstrip": false,
2369
+ "normalized": true,
2370
+ "rstrip": false,
2371
+ "single_word": false,
2372
+ "special": false
2373
+ },
2374
+ "50548": {
2375
+ "content": "<extra_id_15>",
2376
+ "lstrip": false,
2377
+ "normalized": true,
2378
+ "rstrip": false,
2379
+ "single_word": false,
2380
+ "special": false
2381
+ },
2382
+ "50549": {
2383
+ "content": "<extra_id_16>",
2384
+ "lstrip": false,
2385
+ "normalized": true,
2386
+ "rstrip": false,
2387
+ "single_word": false,
2388
+ "special": false
2389
+ },
2390
+ "50550": {
2391
+ "content": "<extra_id_17>",
2392
+ "lstrip": false,
2393
+ "normalized": true,
2394
+ "rstrip": false,
2395
+ "single_word": false,
2396
+ "special": false
2397
+ },
2398
+ "50551": {
2399
+ "content": "<extra_id_18>",
2400
+ "lstrip": false,
2401
+ "normalized": true,
2402
+ "rstrip": false,
2403
+ "single_word": false,
2404
+ "special": false
2405
+ },
2406
+ "50552": {
2407
+ "content": "<extra_id_19>",
2408
+ "lstrip": false,
2409
+ "normalized": true,
2410
+ "rstrip": false,
2411
+ "single_word": false,
2412
+ "special": false
2413
+ },
2414
+ "50553": {
2415
+ "content": "<extra_id_20>",
2416
+ "lstrip": false,
2417
+ "normalized": true,
2418
+ "rstrip": false,
2419
+ "single_word": false,
2420
+ "special": false
2421
+ },
2422
+ "50554": {
2423
+ "content": "<extra_id_21>",
2424
+ "lstrip": false,
2425
+ "normalized": true,
2426
+ "rstrip": false,
2427
+ "single_word": false,
2428
+ "special": false
2429
+ },
2430
+ "50555": {
2431
+ "content": "<extra_id_22>",
2432
+ "lstrip": false,
2433
+ "normalized": true,
2434
+ "rstrip": false,
2435
+ "single_word": false,
2436
+ "special": false
2437
+ },
2438
+ "50556": {
2439
+ "content": "<extra_id_23>",
2440
+ "lstrip": false,
2441
+ "normalized": true,
2442
+ "rstrip": false,
2443
+ "single_word": false,
2444
+ "special": false
2445
+ },
2446
+ "50557": {
2447
+ "content": "<extra_id_24>",
2448
+ "lstrip": false,
2449
+ "normalized": true,
2450
+ "rstrip": false,
2451
+ "single_word": false,
2452
+ "special": false
2453
+ },
2454
+ "50558": {
2455
+ "content": "<extra_id_25>",
2456
+ "lstrip": false,
2457
+ "normalized": true,
2458
+ "rstrip": false,
2459
+ "single_word": false,
2460
+ "special": false
2461
+ },
2462
+ "50559": {
2463
+ "content": "<extra_id_26>",
2464
+ "lstrip": false,
2465
+ "normalized": true,
2466
+ "rstrip": false,
2467
+ "single_word": false,
2468
+ "special": false
2469
+ }
2470
+ },
2471
+ "bos_token": "<|endoftext|>",
2472
+ "clean_up_tokenization_spaces": false,
2473
+ "eos_token": "<|im_end|>",
2474
+ "extra_special_tokens": {},
2475
+ "model_max_length": 1000000000000000019884624838656,
2476
+ "pad_token": null,
2477
+ "tokenizer_class": "GPTNeoXTokenizer",
2478
+ "unk_token": "<|endoftext|>"
2479
+ }