diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..faad6762486a48386fdf9e47e2c7bd99439fc3e9 --- /dev/null +++ b/README.md @@ -0,0 +1,158 @@ +--- +language: +- en +library_name: transformers +tags: +- stepfun +- MOE +- pruning +- compression +license: other +name: cerebras/Step-3.5-Flash-REAP-121B-A11B +description: > + This model was obtained by uniformly pruning 40% of experts in Step-3.5-Flash using the REAP method. +readme: > + https://huggingface.co/cerebras/Step-3.5-Flash-REAP-121B-A11B/main/README.md +pipeline_tag: text-generation +base_model: +- stepfun-ai/Step-3.5-Flash +--- + +

+ š“Œ³ REAPš“Œ³ the Experts: Why Pruning Prevails for One-Shot MoE Compression
+ REAP +

+ +# Step-3.5-Flash-REAP-121B-A11B + +## ✨ Highlights + +Introducing **Step-3.5-Flash-REAP-121B-A11B**, a **memory-efficient compressed variant** of Step-3.5-Flash that maintains near-identical performance while being **40% lighter**. + +This model was created using **REAP (Router-weighted Expert Activation Pruning)**, a novel expert pruning method that selectively removes redundant experts while preserving the router's independent control over remaining experts. Key features include: + +- **Near-Lossless Performance**: Maintains almost identical accuracy on code generation, agentic coding, and function calling tasks compared to the full 196B model +- **40% Memory Reduction**: Compressed from 196B to 121B parameters, significantly lowering deployment costs and memory requirements +- **Preserved Capabilities**: Retains all core functionalities including code generation, math & reasoning and tool calling. +- **Drop-in Compatibility**: Works with vanilla vLLM - no source modifications or custom patches required +- **Optimized for Real-World Use**: Particularly effective for resource-constrained environments, local deployments, and academic research +--- +## šŸ“‹ Model Overview + +**Step-3.5-Flash-REAP-121B-A11B** has the following specifications: + +- **Base Model**: Step-3.5-Flash +- **Compression Method**: REAP (Router-weighted Expert Activation Pruning) +- **Compression Ratio**: 40% expert pruning +- **Type**: Sparse Mixture-of-Experts (SMoE) Causal Language Model +- **Number of Parameters**: 121B total, 11B activated per token +- **Number of Layers**: 45 +- **Number of Attention Heads**: 64 +- **Number of Experts**: 173 (uniformly pruned from 288) +- **Number of Activated Experts**: 8 per token +- **Context Length**: 262,144 tokens +- **License**: Apache 2.0 + +--- + +## šŸ“Š Evaluations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BenchmarkStep-3.5-FlashStep-3.5-Flash-REAP-149B-A11BStep-3.5-Flash-REAP-121B-A11B
Compression—25%40%
Coding
HumanEval98.297.095.7
HumanEval+93.990.991.5
+ +--- + +## šŸš€ Deployment + +You can deploy the model directly using the **latest vLLM** (that supports Step-3.5-Flash), no source modifications or custom patches required. + +```bash +vllm serve cerebras/Step-3.5-Flash-REAP-121B-A11B \ + --tensor-parallel-size 8 \ + --tool-call-parser step3p5 \ + --reasoning-parser step3p5 \ + --trust-remote-code \ + --enable_expert_parallel \ + --disable-cascade-attn \ + --enable-auto-tool-choice +``` + +If you encounter insufficient memory when running this model, you might need to set a lower value for `--max-num-seqs` flag (e.g. set to 64). For more information, refer to the [official vLLM deployment guide](https://huggingface.co/stepfun-ai/Step-3.5-Flash#61-vllm). + +## 🧩 Model Creation + +This checkpoint was created by applying the **REAP (Router-weighted Expert Activation Pruning)** method uniformly across all Mixture-of-Experts (MoE) blocks of **Step-3.5-Flash**, with a **40% pruning rate**. + +### How REAP Works + +REAP selects experts to prune based on a novel **saliency criterion** that considers both: +- **Router gate values**: How frequently and strongly the router activates each expert +- **Expert activation norms**: The magnitude of each expert's output contributions + +This dual consideration ensures that experts contributing minimally to the layer's output are pruned, while preserving those that play critical roles in the model's computations. + +### Key Advantages + +- **One-Shot Compression**: No fine-tuning required after pruning - the model is immediately ready for deployment +- **Preserved Router Control**: Unlike expert merging methods, REAP maintains the router's independent, input-dependent control over remaining experts, avoiding "functional subspace collapse" +- **Generative Task Superiority**: REAP significantly outperforms expert merging approaches on generative benchmarks (code generation, creative writing, mathematical reasoning) while maintaining competitive performance on discriminative tasks + +šŸ“š For more details, refer to the following resources: + +- [🧾 arXiv Preprint](https://arxiv.org/abs/2510.13999) +- [🧾 REAP Blog](https://www.cerebras.ai/blog/reap) +- [šŸ’» REAP Codebase (GitHub)](https://github.com/CerebrasResearch/reap) + +--- + +## āš–ļø License + +This model is derived from +**[`stepfun-ai/Step-3.5-Flash`](https://huggingface.co/stepfun-ai/Step-3.5-Flash)** +and distributed under the **Apache 2.0 license**. + +--- + +## 🧾 Citation + +If you use this checkpoint, please cite the REAP paper: + +```bibtex +@article{lasby-reap, + title={REAP the Experts: Why Pruning Prevails for One-Shot MoE compression}, + author={Lasby, Mike and Lazarevich, Ivan and Sinnadurai, Nish and Lie, Sean and Ioannou, Yani and Thangarasa, Vithursan}, + journal={arXiv preprint arXiv:2510.13999}, + year={2025} +} +``` \ No newline at end of file diff --git a/chat_template.jinja b/chat_template.jinja new file mode 100644 index 0000000000000000000000000000000000000000..c09ea497dada6fe2c1f94067b4762dcba193c0f0 --- /dev/null +++ b/chat_template.jinja @@ -0,0 +1,80 @@ +{% macro render_content(content) %}{% if content is none %}{{- '' }}{% elif content is string %}{{- content }}{% elif content is mapping %}{{- content['value'] if 'value' in content else content['text'] }}{% elif content is iterable %}{% for item in content %}{% if item.type == 'text' %}{{- item['value'] if 'value' in item else item['text'] }}{% elif item.type == 'image' %}{% endif %}{% endfor %}{% endif %}{% endmacro %} +{{bos_token}}{%- if tools %} + {{- '<|im_start|>system\n' }} + {%- if messages[0].role == 'system' %} + {{- render_content(messages[0].content) + '\n\n' }} + {%- endif %} + {{- "# Tools\n\nYou have access to the following functions in JSONSchema format:\n\n" }} + {%- for tool in tools %} + {{- "\n" }} + {{- tool | tojson(ensure_ascii=False) }} + {%- endfor %} + {{- "\n\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n\n\n\nvalue_1\n\n\nThis is the value for the second parameter\nthat can span\nmultiple lines\n\n\n\n\n\nReminder:\n- Function calls MUST follow the specified format: an inner \n...\n block must be nested within \n...\n XML tags\n- Required parameters MUST be specified\n<|im_end|>\n" }} +{%- else %} + {%- if messages[0].role == 'system' %} + {{- '<|im_start|>system\n' + render_content(messages[0].content) + '<|im_end|>\n' }} + {%- endif %} +{%- endif %} +{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %} +{%- for message in messages[::-1] %} + {%- set index = (messages|length - 1) - loop.index0 %} + {%- if ns.multi_step_tool and message.role == "user" and render_content(message.content) is string and not(render_content(message.content).startswith('') and render_content(message.content).endswith('')) %} + {%- set ns.multi_step_tool = false %} + {%- set ns.last_query_index = index %} + {%- endif %} +{%- endfor %} +{%- for message in messages %} + {%- set content = render_content(message.content) %} + {%- if (message.role == "user") or (message.role == "system" and not loop.first) %} + {%- set role_name = 'observation' if (message.role == "system" and not loop.first and message.name == 'observation') else message.role %} + {{- '<|im_start|>' + role_name + '\n' + content + '<|im_end|>' + '\n' }} + {%- elif message.role == "assistant" %} + {%- if message.reasoning_content is string %} + {%- set reasoning_content = render_content(message.reasoning_content) %} + {%- else %} + {%- if '' in content %} + {%- set reasoning_content = content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %} + {%- set content = content.split('')[-1].lstrip('\n') %} + {%- else %} + {%- set reasoning_content = '' %} + {%- endif %} + {%- endif %} + {%- if loop.index0 > ns.last_query_index %} + {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content + '\n\n' + content }} + {%- else %} + {{- '<|im_start|>' + message.role + '\n' + content }} + {%- endif %} + {%- if message.tool_calls %} + {%- for tool_call in message.tool_calls %} + {%- if tool_call.function is defined %} + {%- set tool_call = tool_call.function %} + {%- endif %} + {{- '\n\n' }} + {%- if tool_call.arguments is defined %} + {%- set arguments = tool_call.arguments %} + {%- for args_name, args_value in arguments|items %} + {{- '\n' }} + {%- set args_value = args_value | tojson(ensure_ascii=False) | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %} + {{- args_value }} + {{- '\n\n' }} + {%- endfor %} + {%- endif %} + {{- '\n' }} + {%- endfor %} + {%- endif %} + {{- '<|im_end|>\n' }} + {%- elif message.role == "tool" %} + {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %} + {{- '<|im_start|>tool_response\n' }} + {%- endif %} + {{- '' }} + {{- content }} + {{- '' }} + {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %} + {{- '<|im_end|>\n' }} + {%- endif %} + {%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} + {{- '<|im_start|>assistant\n\n' }} +{%- endif %} diff --git a/config.json b/config.json new file mode 100644 index 0000000000000000000000000000000000000000..0b177329a66f95a501806c33321f74e755243df0 --- /dev/null +++ b/config.json @@ -0,0 +1,312 @@ +{ + "architectures": [ + "Step3p5ForCausalLM" + ], + "model_type": "step3p5", + "auto_map": { + "AutoConfig": "configuration_step3p5.Step3p5Config", + "AutoModelForCausalLM": "modeling_step3p5.Step3p5ForCausalLM" + }, + "rope_scaling": { + "rope_type": "llama3", + "factor": 2.0, + "original_max_position_embeddings": 131072, + "low_freq_factor": 1.0, + "high_freq_factor": 32.0 + }, + "yarn_only_types": ["full_attention"], + "hidden_size": 4096, + "intermediate_size": 11264, + "num_hidden_layers": 45, + "max_seq_len": 262144, + "vocab_size": 128896, + "torch_dtype": "bfloat16", + "use_qk_norm": true, + "moe_layers_enum": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44", + "num_attention_heads": 64, + "num_attention_groups": 8, + "head_dim": 128, + "use_moe": true, + "moe_num_experts": 173, + "moe_top_k": 8, + "moe_intermediate_size": 1280, + "share_expert_dim": 1280, + "moe_layer_offset": 0, + "moe_every_n_layer": 1, + "norm_expert_weight": true, + "moe_router_activation": "sigmoid", + "moe_router_scaling_factor": 3.0, + "att_impl_type": "GQA", + "rope_theta": [ + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0, + 5000000.0, + 10000.0, + 10000.0, + 10000.0 + ], + "use_head_wise_attn_gate": true, + "sliding_window": 512, + "use_moe_router_bias": true, + "need_fp32_gate": true, + "sink": false, + "layer_types": [ + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention", + "full_attention", + "sliding_attention", + "sliding_attention", + "sliding_attention" + ], + "use_rope_layers": [], + "num_nextn_predict_layers": 3, + "partial_rotary_factors": [ + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + "eos_token_id": [ + 1, + 2, + 128007 + ], + "bos_token_id": 0, + "attention_other_setting": { + "attention_type": "sliding_attention", + "num_attention_heads": 96, + "num_attention_groups": 8, + "head_dim": 128, + "true_head_dim": 128 + }, + "swiglu_limits": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7, + 7, + 0.0, + 0.0, + 0.0 + ], + "swiglu_limits_shared": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 16, + 0.0, + 0.0, + 0.0 + ], + "zero_centered": true, + "max_position_embeddings": 262144 +} \ No newline at end of file diff --git a/configuration_step3p5.py b/configuration_step3p5.py new file mode 100644 index 0000000000000000000000000000000000000000..ab8d068ee83c25dc0fb2b0a2bd2ca76bdc9faac9 --- /dev/null +++ b/configuration_step3p5.py @@ -0,0 +1,59 @@ +from typing import Any, Optional, Union + +from transformers.configuration_utils import PretrainedConfig + + + +class Step3p5Config(PretrainedConfig): + model_type = "step3p5" + architectures = ["Step3p5ForCausalLM"] + + def __init__( + self, + hidden_size: int = 4096, + intermediate_size: int = 11264, + num_attention_heads: int = 64, + num_attention_groups: int = 8, + num_hidden_layers: int = 45, + max_seq_len: int = 128000, + vocab_size: int = 128815, + rms_norm_eps: float = 1e-5, + moe_intermediate_size: int = 1280, + moe_num_experts: int = 288, + moe_top_k: int = 8, + rope_theta: float = 10000, + rope_scaling: Optional[dict[str, Any]] = None, + max_position_embeddings: int = 128000, + share_expert_dims: int = 1280, + head_dim: int = 128, + norm_expert_weight: bool = True, + layer_types: list[str] = None, + sliding_window: Optional[int] = None, + moe_layers_enum: tuple[int] = (3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44), + **kwargs, + ) -> None: + self.hidden_size = hidden_size + self.intermediate_size = intermediate_size + self.num_attention_heads = num_attention_heads + self.num_attention_groups = num_attention_groups + self.num_hidden_layers = num_hidden_layers + self.max_seq_len = max_seq_len + self.vocab_size = vocab_size + self.rms_norm_eps = rms_norm_eps + self.moe_intermediate_size = moe_intermediate_size + self.moe_num_experts = moe_num_experts + self.moe_top_k = moe_top_k + self.rope_theta = rope_theta + self.rope_scaling = rope_scaling + self.max_position_embeddings = max_position_embeddings + self.share_expert_dim = share_expert_dims + self.head_dim = head_dim + self.norm_expert_weight = norm_expert_weight + self.moe_layers_enum = moe_layers_enum + self.layer_types = layer_types + self.sliding_window = sliding_window + super().__init__(**kwargs) + diff --git a/model-00001-of-00064.safetensors b/model-00001-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..003b91df10001bfc038a542e3327b447d7a4c24a --- /dev/null +++ b/model-00001-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5624cc147930c8323253ee4d57648a01cce8aaaeceb96142dc9b35a1c0307e0d +size 4510089164 diff --git a/model-00002-of-00064.safetensors b/model-00002-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ce4e3bbf1c4eef106f05237740839816e8af57bc --- /dev/null +++ b/model-00002-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878af09c54e5d19261bc14b930a9096b574aa9647ba7749891a10a218b50fcd2 +size 3812486132 diff --git a/model-00003-of-00064.safetensors b/model-00003-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..183a21ca8ecc94e5b111a795fdc3a48b8aa1bb45 --- /dev/null +++ b/model-00003-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5ba6a280e951ba5100c2dd2d638d2f77faf7c8057bafe9cff5a36ba5610fe9 +size 3628073232 diff --git a/model-00004-of-00064.safetensors b/model-00004-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b6793683e062f06f12a41e8a1ce9b9aa2490aa3d --- /dev/null +++ b/model-00004-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33e4f3dafd65138d3a69e68f330024232f0a1aa7dfc5b9b559ed2a7a7dbe3b4 +size 3879857140 diff --git a/model-00005-of-00064.safetensors b/model-00005-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f752fa3ce217b783daf2aa911e9782a56deb8f96 --- /dev/null +++ b/model-00005-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5a6bd5e8ff1b6a80e93bb9f72baad578ad1bd7fa1a7f49e139e7b40e509353 +size 3879857140 diff --git a/model-00006-of-00064.safetensors b/model-00006-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..108d9620d7684effd702488b6678380e3044c995 --- /dev/null +++ b/model-00006-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aba70cdd5f8012f350419c43b4112f9eec4c7c29f8fef873583370323897ad4 +size 3628073232 diff --git a/model-00007-of-00064.safetensors b/model-00007-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..616b3437afa70a6765da2538a96e447c5c4513a2 --- /dev/null +++ b/model-00007-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeef836ba88f32cf8b8164e7562ade441c83e7db00905b62af217952f83646d0 +size 3879857140 diff --git a/model-00008-of-00064.safetensors b/model-00008-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3e09526e45fea57fda979d65da4ccc03760501a2 --- /dev/null +++ b/model-00008-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fe428e15b4b1058ae4a2c9a29a238bdbb992c84b2e13f20d9e269ded488e94 +size 3812486132 diff --git a/model-00009-of-00064.safetensors b/model-00009-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..750032b5b11de3bf127b1489f3db77458c5865f3 --- /dev/null +++ b/model-00009-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f318861f022f1222933bce4e5eca4905b15268d9df5a69be721b9dd84e6dc417 +size 3628073232 diff --git a/model-00010-of-00064.safetensors b/model-00010-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e71be36dc05119baf373af6c250d424562a0a757 --- /dev/null +++ b/model-00010-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b7feb6b3439905da4d503ae8206844ba862ed4d30507341ea2422c43aa8311 +size 3879857140 diff --git a/model-00011-of-00064.safetensors b/model-00011-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b7961ccf4f4701922f79b2b36cdcda0fc2815b9f --- /dev/null +++ b/model-00011-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ad37964b706e6ff09f9bf3e12c08d392ca1204db65a469ca9df881b4892a2a +size 3879857132 diff --git a/model-00012-of-00064.safetensors b/model-00012-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f0fd31ebb82da0186725ce8e19d1175bb6e50e02 --- /dev/null +++ b/model-00012-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a8a02b1bf87b9f2ebb5c993737ee9738bfa7f7636600a909d69ea0a4bfacd7 +size 3628073232 diff --git a/model-00013-of-00064.safetensors b/model-00013-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..21d4bcda9ea2e609f070295da83b769953f073bc --- /dev/null +++ b/model-00013-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fb52f0a9e06f35975d2612f6583aac9bc97a6b8481113d2b79afc73ed8104a +size 3879857156 diff --git a/model-00014-of-00064.safetensors b/model-00014-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..437c9b5f3eea1ae05bcf236f1347a1ccb53c1071 --- /dev/null +++ b/model-00014-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9e6e81edd0bbc9f48f984c61f28b4af0e1ead088d1e9d6ff2b2cf3650ac68c +size 3812486148 diff --git a/model-00015-of-00064.safetensors b/model-00015-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a7cf56adba4961185dc083a9df6c29ea8621a3d8 --- /dev/null +++ b/model-00015-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9458a4a0573bab7b3dd74cdff2a5786751b9a1540fa8aeda90a2a9a079355b64 +size 3628073232 diff --git a/model-00016-of-00064.safetensors b/model-00016-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4d2c3fc30b12d4cce477e70f0d8b85728ae5ae2d --- /dev/null +++ b/model-00016-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c2cfce27b2ae747fa0b1ee02ada6105c2dc163a3a8dc7da7d954c17e1cc377 +size 3879857156 diff --git a/model-00017-of-00064.safetensors b/model-00017-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3baf311641a6662cd1f33fc108054802d2c1c3cb --- /dev/null +++ b/model-00017-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e097988027795c58526e29345a158c7ab59613b0e624ba8297989c78dce373 +size 3879857156 diff --git a/model-00018-of-00064.safetensors b/model-00018-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ba30d31e80511a1aee0cc0a13746111d363560fd --- /dev/null +++ b/model-00018-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc03bf51fef611e82b263274be17a46bcfa4e7b773a046aada486985b2da0211 +size 3628073232 diff --git a/model-00019-of-00064.safetensors b/model-00019-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0c1ab71295214be2958a0ca3f2d6e54976690d99 --- /dev/null +++ b/model-00019-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30ccd2eb205e71750bfce444ecc25094f710bc6818116b41ae4c912bd90f135 +size 3879857156 diff --git a/model-00020-of-00064.safetensors b/model-00020-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0a0eda66fc758e33113b8b911ef7cb2b7104a6ab --- /dev/null +++ b/model-00020-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28d11a2a43cae5bfcf9a1d9f77f09c02c9765b0e188093ee9970ee6373bb364 +size 3812486148 diff --git a/model-00021-of-00064.safetensors b/model-00021-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..00bedde74f758e60f526e193f77086e7586481c3 --- /dev/null +++ b/model-00021-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96485bdedd6aca4ebc0a87cd43853eef9d73ec7db08fa3e89b97a69a4f60d251 +size 3628073232 diff --git a/model-00022-of-00064.safetensors b/model-00022-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d73263a352af2463c6c9e0257dbe23a0658ef136 --- /dev/null +++ b/model-00022-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92a5ffa1daa21496498b9d839fdfb11f743363ea0a14ed3c5fde4971434d5b7 +size 3879857156 diff --git a/model-00023-of-00064.safetensors b/model-00023-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..45b166388475ab4d8662ecb265ea546c6706d6a0 --- /dev/null +++ b/model-00023-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c654d456ad814a9e8b58eb7d378843df90ec29d941e2c6eb6a06c3a5c0a108 +size 3879857156 diff --git a/model-00024-of-00064.safetensors b/model-00024-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fbae2d8a81c2af5241ee2f39d1b30dd29c86c0cb --- /dev/null +++ b/model-00024-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6e1336c73bc505bce0051afc26afb8e221275c314e7d5e88ca2e5f28102cf5 +size 3628073232 diff --git a/model-00025-of-00064.safetensors b/model-00025-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4fe2123baa8f89bfdf9fd341a1f49dc31e140b68 --- /dev/null +++ b/model-00025-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804149b9b8b8a96c09f76694e41523a2b758287d4b13624a2d634d840e86df63 +size 3879857156 diff --git a/model-00026-of-00064.safetensors b/model-00026-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c1cfc56eb20abb792f31ef2073d61496121c060e --- /dev/null +++ b/model-00026-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce46fada0373a3ed448ad89650d26416ea9228e8ce32c4fdf4ce8d18aac7736 +size 3812486148 diff --git a/model-00027-of-00064.safetensors b/model-00027-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3e210d48def78fb76b55052afd21b97d619d605f --- /dev/null +++ b/model-00027-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea7991e88d048115a15da99dc99980dd08cd2b89211f9ec132e32f8eecb7ad5 +size 3628073232 diff --git a/model-00028-of-00064.safetensors b/model-00028-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..644062bd92789edacdfa013449cd36c81f583c28 --- /dev/null +++ b/model-00028-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3700a09bda9f2e00dad75f3c04d1ee345017d71f1546079cccc6f1230add93 +size 3879857156 diff --git a/model-00029-of-00064.safetensors b/model-00029-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fbea1455a3efc7f5cf8261bf22e07dd7732dae48 --- /dev/null +++ b/model-00029-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae194ab8f09191acc0ac45a800a07a7f8847dd6e967499769857cc9d7ae21213 +size 3879857156 diff --git a/model-00030-of-00064.safetensors b/model-00030-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7a8cc44edaa83947824e24464f12209e444e7820 --- /dev/null +++ b/model-00030-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf3aaa21eecdf43bd9d1f8889d59a42ff37bed749b39033bc348d7f41696cbd +size 3628073232 diff --git a/model-00031-of-00064.safetensors b/model-00031-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4813c4a7e29fa442e5d81b3912e0685cd8ce1c9c --- /dev/null +++ b/model-00031-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4d5c2f6978b364bce503aa9572c60911367ddf374091d27400c9900a04d525 +size 3879857156 diff --git a/model-00032-of-00064.safetensors b/model-00032-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ad750a31fd7385c1021af45b4a9395ba82b1a4d1 --- /dev/null +++ b/model-00032-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409d3bfa66fba803c7bad2abf70afc391460a14d22d81bbc7a2f9f5b2555be98 +size 3812486148 diff --git a/model-00033-of-00064.safetensors b/model-00033-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e6f7c2d2c56d246737f0e71e1b7c89ceaaff532d --- /dev/null +++ b/model-00033-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee1b861698948be6c96325e99d993fb15fe276732af8c1c1db66576e4dd5be3 +size 3628073232 diff --git a/model-00034-of-00064.safetensors b/model-00034-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8141e14df28a878b9ec232429b6d838906a053d2 --- /dev/null +++ b/model-00034-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38897aac0df2cf728744232f9e3669cf66158d7bc25a80e284aa9982966301f +size 3879857156 diff --git a/model-00035-of-00064.safetensors b/model-00035-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4f1738cab1bb2223c28147eb91cd18499650a0bb --- /dev/null +++ b/model-00035-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f6bdb8b5975e386f789154fd6ade2d19db8aaf86ad919e375c4030a7bb9c6b +size 3879857156 diff --git a/model-00036-of-00064.safetensors b/model-00036-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b0ea4a8b9f6d3ee78ff12caf795462503f9486b8 --- /dev/null +++ b/model-00036-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41e79f0b46c1a69ae5449f2216c226219359d63284c730b0b19a92f51db1f97 +size 3628073232 diff --git a/model-00037-of-00064.safetensors b/model-00037-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2b2e537e1e1a9e923badecd3d44d21f04f94ad5b --- /dev/null +++ b/model-00037-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573a7c3eb4c5a9d408eba874042aae12fd81773e87defdcc5b37a3dbeda7bf24 +size 3879857156 diff --git a/model-00038-of-00064.safetensors b/model-00038-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..917c96d7d4fb5f138c2a2efb3fff2f3e06ee6bae --- /dev/null +++ b/model-00038-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fae56646790270cc39c42148b056fa1cd5794a1e38a1884b6df14dad821f6bc +size 3812486148 diff --git a/model-00039-of-00064.safetensors b/model-00039-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..37b938e494c1e7900b72b04d2c12b39edccf56fc --- /dev/null +++ b/model-00039-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96997535de9cfb69a2d83e2b189f88dec260a194bca89c0eb279fdc983ed059a +size 3628073232 diff --git a/model-00040-of-00064.safetensors b/model-00040-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..282766313f919085649c9e791f1ba7276aa5f8d6 --- /dev/null +++ b/model-00040-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a427495d37e030ee33dfb122e2f0f1a0e6cab7ef06510aa2be1dbc88ad9e8ce +size 3879857156 diff --git a/model-00041-of-00064.safetensors b/model-00041-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4f5b4e305eba6b536f1938f1ae093f549e7888d8 --- /dev/null +++ b/model-00041-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708369d113576a113fefdaaa5cecb8d890acbd337815fcdd6198ab4fb5944e67 +size 3879857156 diff --git a/model-00042-of-00064.safetensors b/model-00042-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..07151077e70faef85b3a056c91b65969b758e197 --- /dev/null +++ b/model-00042-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061e43bfb0c323d13e5a1a0019d0827ba375f841f027a1ce998a2243cfdd7c10 +size 3628073232 diff --git a/model-00043-of-00064.safetensors b/model-00043-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..53858046fcebd971e8899b1f3a5a8471d475e56a --- /dev/null +++ b/model-00043-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0972fbc505205d6809e00d7881c33e9c7db4d1ca483fb5bd0a7638ea27fee064 +size 3879857156 diff --git a/model-00044-of-00064.safetensors b/model-00044-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fffc8a1038514c25368f7bd8852b44631d941285 --- /dev/null +++ b/model-00044-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68df4561ec5f6c9525674d7ac9caf76de4ac46e0b80e66bcd2e0fb347f3c4e6 +size 3812486148 diff --git a/model-00045-of-00064.safetensors b/model-00045-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6bfbe85814f25ea78b9ead030fe28aa03a6a0d8a --- /dev/null +++ b/model-00045-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b273b8cf2ca84d92be432644e4782ca50293953c52e05d13c7c0a0a1e4050f +size 3628073232 diff --git a/model-00046-of-00064.safetensors b/model-00046-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ade4a2654416e0426a9f27a95bbaaca08c32fda3 --- /dev/null +++ b/model-00046-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c4d517487a6b6fed23934215b32795aa4f42eda3e6afb22329486cfe9d72b6 +size 3879857156 diff --git a/model-00047-of-00064.safetensors b/model-00047-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ab5f093f4bdf9166a2561f4acf4ba059bc9f5351 --- /dev/null +++ b/model-00047-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b3da57579f78940bd30178100c324d738adaad001f0b025e1b96a843a52cf2 +size 3879857156 diff --git a/model-00048-of-00064.safetensors b/model-00048-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cea1a77558e8a1d15092e543ca3d6adf60dda836 --- /dev/null +++ b/model-00048-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75804cea537ea5315e407270533d809d8ef1476e0a97932f256c3e66226a6bc +size 3628073232 diff --git a/model-00049-of-00064.safetensors b/model-00049-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7be6000e068620af72269ad5fe24fedf9d5e08da --- /dev/null +++ b/model-00049-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aeeb3c6e0317b7ffc8bb304ccf3ba48dc70d9bc068d11778d8d660b7b84ade5 +size 3879857156 diff --git a/model-00050-of-00064.safetensors b/model-00050-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7f4b3c6ead9a768cc4c1303995433a477a7017d1 --- /dev/null +++ b/model-00050-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82dc866b533e57ae1d5dcb68c11b86d4482559e4c03efd67cf197cac084cf3b3 +size 3812486148 diff --git a/model-00051-of-00064.safetensors b/model-00051-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..be36114cfca2a64df574a02264a479e23f162405 --- /dev/null +++ b/model-00051-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a525a6b21a2e06818d7bbec4b5b587466f54d4f0603e4193ed1707cde97be1c +size 3628073232 diff --git a/model-00052-of-00064.safetensors b/model-00052-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0b447518ac705881e2979f655ef192e9d2087b06 --- /dev/null +++ b/model-00052-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11cb5838101122b9b35cc713ba7e20dbdb44678b3644a58df236608a1b96b1eb +size 3879857156 diff --git a/model-00053-of-00064.safetensors b/model-00053-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..58137abc274b9b1c6b2f0ee4081ed3fe6fd3238e --- /dev/null +++ b/model-00053-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ac99e027d89ebccbc8efa0bbd29c3f7464ccfc0bee6d12c8e714373ceda3df +size 3879857156 diff --git a/model-00054-of-00064.safetensors b/model-00054-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8ff9524893a029dee0e6f1f63a3a2c2ccdc7dc8a --- /dev/null +++ b/model-00054-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d0aae9e7d0f18047cdff5cd9460b6ea5b5561a5084b1e0396f014fa77b7850 +size 3628073232 diff --git a/model-00055-of-00064.safetensors b/model-00055-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1cdceb40b0d7a1b7307923fcd2e60fd512cb03ce --- /dev/null +++ b/model-00055-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7559d349a9f088edf128eb80303c95ff51ade69f8fc1f4ca96e24b08f9edf0 +size 3879857156 diff --git a/model-00056-of-00064.safetensors b/model-00056-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6777d411083eabb3677d3bf068565684feecbc9c --- /dev/null +++ b/model-00056-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01e22c8876dc714dbb1ae00a3b23ed4df14d398b8f9561b94519c83f4a92251 +size 3812486148 diff --git a/model-00057-of-00064.safetensors b/model-00057-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..da2dd2b2ef72b9ba1ae31e6c9874291add526f72 --- /dev/null +++ b/model-00057-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d0081a585a6e7eba30a5fe21c09ad647b9294afb5500fb5cea9ae232066b6d +size 3628073232 diff --git a/model-00058-of-00064.safetensors b/model-00058-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f6563a8cdfb26c2e6dc8b2fc3c62aad3e66fa715 --- /dev/null +++ b/model-00058-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd50e587ddf268bb71b3f19ea6b42e55231466697e2a9968e708f1a2474787d7 +size 3879857156 diff --git a/model-00059-of-00064.safetensors b/model-00059-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..22dc4ea4907383d28a85e9cd19489ab79b2fc0ee --- /dev/null +++ b/model-00059-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea7c0229901b4529b3e27dd99b81c6afadfa3e8f71ff26bb800756c1c190d21 +size 3879857156 diff --git a/model-00060-of-00064.safetensors b/model-00060-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c6b8b2a38d19748434454029293c19f0fd048602 --- /dev/null +++ b/model-00060-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2934853309f6ff38f57e7c3d73d2570d6ea70a0c75ab169c008e62f9f20fc498 +size 3628073232 diff --git a/model-00061-of-00064.safetensors b/model-00061-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2d0c9ff70943330e7638c4f0801ed2174e97fd56 --- /dev/null +++ b/model-00061-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb675e0eb0c33919b8d2110f28faff9536d20d92aef7676ebbe27a4adac95758 +size 3879857156 diff --git a/model-00062-of-00064.safetensors b/model-00062-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9ea642efe5b49db0c514ae2e433b3e2cc8ac7187 --- /dev/null +++ b/model-00062-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b55140aa48666aaad2f2d1f05f53656ade97caca3765a86cfc7cc79fe16a1e8 +size 3812486148 diff --git a/model-00063-of-00064.safetensors b/model-00063-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b2e2ed38f4e004f78c702ca9a16c2b92f6ae72cf --- /dev/null +++ b/model-00063-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cefe042d764d3932c19797d4c2af460914c48f9583e4391cbee014318d4d6c +size 3628073232 diff --git a/model-00064-of-00064.safetensors b/model-00064-of-00064.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..77ac2843883cf1a2ff2d3bfbd6cee5bafef8b6f4 --- /dev/null +++ b/model-00064-of-00064.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565b559975f00cb958f120906cec7feb1dc54864a5dbdeb81a564ea5b6099a17 +size 2901435312 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000000000000000000000000000000000000..791cbca66c8d85e1fc9fc9860c92767c2dadf1a3 --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,760 @@ +{ + "metadata": { + "total_size": 241934035848 + }, + "weight_map": { + "model.embed_tokens.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.0.self_attn.g_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.mlp.up_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.mlp.down_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.0.input_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.1.self_attn.g_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.mlp.up_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.mlp.down_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.1.input_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.2.self_attn.g_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.mlp.up_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.mlp.down_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.2.input_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00064.safetensors", + "model.layers.3.self_attn.g_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.moe.router_bias": "model-00001-of-00064.safetensors", + "model.layers.3.moe.gate.weight": "model-00001-of-00064.safetensors", + "model.layers.3.moe.up_proj.weight": "model-00001-of-00064.safetensors", + "model.layers.3.moe.gate_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.3.moe.down_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.3.share_expert.gate_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.3.share_expert.up_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.3.share_expert.down_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.3.input_layernorm.weight": "model-00002-of-00064.safetensors", + "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.q_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.k_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.v_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.o_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.q_norm.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.k_norm.weight": "model-00002-of-00064.safetensors", + "model.layers.4.self_attn.g_proj.weight": "model-00002-of-00064.safetensors", + "model.layers.4.moe.router_bias": "model-00002-of-00064.safetensors", + "model.layers.4.moe.gate.weight": "model-00002-of-00064.safetensors", + "model.layers.4.moe.up_proj.weight": "model-00003-of-00064.safetensors", + "model.layers.4.moe.gate_proj.weight": "model-00003-of-00064.safetensors", + "model.layers.4.moe.down_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.4.share_expert.gate_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.4.share_expert.up_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.4.share_expert.down_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.4.input_layernorm.weight": "model-00004-of-00064.safetensors", + "model.layers.4.post_attention_layernorm.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.q_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.k_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.v_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.o_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.q_norm.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.k_norm.weight": "model-00004-of-00064.safetensors", + "model.layers.5.self_attn.g_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.moe.router_bias": "model-00004-of-00064.safetensors", + "model.layers.5.moe.gate.weight": "model-00004-of-00064.safetensors", + "model.layers.5.moe.up_proj.weight": "model-00004-of-00064.safetensors", + "model.layers.5.moe.gate_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.5.moe.down_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.5.share_expert.gate_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.5.share_expert.up_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.5.share_expert.down_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.5.input_layernorm.weight": "model-00005-of-00064.safetensors", + "model.layers.5.post_attention_layernorm.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.q_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.k_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.v_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.o_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.q_norm.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.k_norm.weight": "model-00005-of-00064.safetensors", + "model.layers.6.self_attn.g_proj.weight": "model-00005-of-00064.safetensors", + "model.layers.6.moe.router_bias": "model-00005-of-00064.safetensors", + "model.layers.6.moe.gate.weight": "model-00005-of-00064.safetensors", + "model.layers.6.moe.up_proj.weight": "model-00006-of-00064.safetensors", + "model.layers.6.moe.gate_proj.weight": "model-00006-of-00064.safetensors", + "model.layers.6.moe.down_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.6.share_expert.gate_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.6.share_expert.up_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.6.share_expert.down_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.6.input_layernorm.weight": "model-00007-of-00064.safetensors", + "model.layers.6.post_attention_layernorm.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.q_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.k_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.v_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.o_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.q_norm.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.k_norm.weight": "model-00007-of-00064.safetensors", + "model.layers.7.self_attn.g_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.moe.router_bias": "model-00007-of-00064.safetensors", + "model.layers.7.moe.gate.weight": "model-00007-of-00064.safetensors", + "model.layers.7.moe.up_proj.weight": "model-00007-of-00064.safetensors", + "model.layers.7.moe.gate_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.7.moe.down_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.7.share_expert.gate_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.7.share_expert.up_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.7.share_expert.down_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.7.input_layernorm.weight": "model-00008-of-00064.safetensors", + "model.layers.7.post_attention_layernorm.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.q_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.k_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.v_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.o_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.q_norm.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.k_norm.weight": "model-00008-of-00064.safetensors", + "model.layers.8.self_attn.g_proj.weight": "model-00008-of-00064.safetensors", + "model.layers.8.moe.router_bias": "model-00008-of-00064.safetensors", + "model.layers.8.moe.gate.weight": "model-00008-of-00064.safetensors", + "model.layers.8.moe.up_proj.weight": "model-00009-of-00064.safetensors", + "model.layers.8.moe.gate_proj.weight": "model-00009-of-00064.safetensors", + "model.layers.8.moe.down_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.8.share_expert.gate_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.8.share_expert.up_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.8.share_expert.down_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.8.input_layernorm.weight": "model-00010-of-00064.safetensors", + "model.layers.8.post_attention_layernorm.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.q_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.k_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.v_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.o_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.q_norm.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.k_norm.weight": "model-00010-of-00064.safetensors", + "model.layers.9.self_attn.g_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.moe.router_bias": "model-00010-of-00064.safetensors", + "model.layers.9.moe.gate.weight": "model-00010-of-00064.safetensors", + "model.layers.9.moe.up_proj.weight": "model-00010-of-00064.safetensors", + "model.layers.9.moe.gate_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.9.moe.down_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.9.share_expert.gate_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.9.share_expert.up_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.9.share_expert.down_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.9.input_layernorm.weight": "model-00011-of-00064.safetensors", + "model.layers.9.post_attention_layernorm.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.q_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.k_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.v_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.o_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.q_norm.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.k_norm.weight": "model-00011-of-00064.safetensors", + "model.layers.10.self_attn.g_proj.weight": "model-00011-of-00064.safetensors", + "model.layers.10.moe.router_bias": "model-00011-of-00064.safetensors", + "model.layers.10.moe.gate.weight": "model-00011-of-00064.safetensors", + "model.layers.10.moe.up_proj.weight": "model-00012-of-00064.safetensors", + "model.layers.10.moe.gate_proj.weight": "model-00012-of-00064.safetensors", + "model.layers.10.moe.down_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.10.share_expert.gate_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.10.share_expert.up_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.10.share_expert.down_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.10.input_layernorm.weight": "model-00013-of-00064.safetensors", + "model.layers.10.post_attention_layernorm.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.q_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.k_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.v_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.o_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.q_norm.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.k_norm.weight": "model-00013-of-00064.safetensors", + "model.layers.11.self_attn.g_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.moe.router_bias": "model-00013-of-00064.safetensors", + "model.layers.11.moe.gate.weight": "model-00013-of-00064.safetensors", + "model.layers.11.moe.up_proj.weight": "model-00013-of-00064.safetensors", + "model.layers.11.moe.gate_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.11.moe.down_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.11.share_expert.gate_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.11.share_expert.up_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.11.share_expert.down_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.11.input_layernorm.weight": "model-00014-of-00064.safetensors", + "model.layers.11.post_attention_layernorm.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.q_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.k_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.v_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.o_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.q_norm.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.k_norm.weight": "model-00014-of-00064.safetensors", + "model.layers.12.self_attn.g_proj.weight": "model-00014-of-00064.safetensors", + "model.layers.12.moe.router_bias": "model-00014-of-00064.safetensors", + "model.layers.12.moe.gate.weight": "model-00014-of-00064.safetensors", + "model.layers.12.moe.up_proj.weight": "model-00015-of-00064.safetensors", + "model.layers.12.moe.gate_proj.weight": "model-00015-of-00064.safetensors", + "model.layers.12.moe.down_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.12.share_expert.gate_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.12.share_expert.up_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.12.share_expert.down_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.12.input_layernorm.weight": "model-00016-of-00064.safetensors", + "model.layers.12.post_attention_layernorm.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.q_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.k_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.v_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.o_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.q_norm.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.k_norm.weight": "model-00016-of-00064.safetensors", + "model.layers.13.self_attn.g_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.moe.router_bias": "model-00016-of-00064.safetensors", + "model.layers.13.moe.gate.weight": "model-00016-of-00064.safetensors", + "model.layers.13.moe.up_proj.weight": "model-00016-of-00064.safetensors", + "model.layers.13.moe.gate_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.13.moe.down_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.13.share_expert.gate_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.13.share_expert.up_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.13.share_expert.down_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.13.input_layernorm.weight": "model-00017-of-00064.safetensors", + "model.layers.13.post_attention_layernorm.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.q_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.k_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.v_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.o_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.q_norm.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.k_norm.weight": "model-00017-of-00064.safetensors", + "model.layers.14.self_attn.g_proj.weight": "model-00017-of-00064.safetensors", + "model.layers.14.moe.router_bias": "model-00017-of-00064.safetensors", + "model.layers.14.moe.gate.weight": "model-00017-of-00064.safetensors", + "model.layers.14.moe.up_proj.weight": "model-00018-of-00064.safetensors", + "model.layers.14.moe.gate_proj.weight": "model-00018-of-00064.safetensors", + "model.layers.14.moe.down_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.14.share_expert.gate_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.14.share_expert.up_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.14.share_expert.down_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.14.input_layernorm.weight": "model-00019-of-00064.safetensors", + "model.layers.14.post_attention_layernorm.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.q_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.k_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.v_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.o_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.q_norm.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.k_norm.weight": "model-00019-of-00064.safetensors", + "model.layers.15.self_attn.g_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.moe.router_bias": "model-00019-of-00064.safetensors", + "model.layers.15.moe.gate.weight": "model-00019-of-00064.safetensors", + "model.layers.15.moe.up_proj.weight": "model-00019-of-00064.safetensors", + "model.layers.15.moe.gate_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.15.moe.down_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.15.share_expert.gate_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.15.share_expert.up_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.15.share_expert.down_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.15.input_layernorm.weight": "model-00020-of-00064.safetensors", + "model.layers.15.post_attention_layernorm.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.q_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.k_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.v_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.o_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.q_norm.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.k_norm.weight": "model-00020-of-00064.safetensors", + "model.layers.16.self_attn.g_proj.weight": "model-00020-of-00064.safetensors", + "model.layers.16.moe.router_bias": "model-00020-of-00064.safetensors", + "model.layers.16.moe.gate.weight": "model-00020-of-00064.safetensors", + "model.layers.16.moe.up_proj.weight": "model-00021-of-00064.safetensors", + "model.layers.16.moe.gate_proj.weight": "model-00021-of-00064.safetensors", + "model.layers.16.moe.down_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.16.share_expert.gate_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.16.share_expert.up_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.16.share_expert.down_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.16.input_layernorm.weight": "model-00022-of-00064.safetensors", + "model.layers.16.post_attention_layernorm.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.q_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.k_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.v_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.o_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.q_norm.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.k_norm.weight": "model-00022-of-00064.safetensors", + "model.layers.17.self_attn.g_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.moe.router_bias": "model-00022-of-00064.safetensors", + "model.layers.17.moe.gate.weight": "model-00022-of-00064.safetensors", + "model.layers.17.moe.up_proj.weight": "model-00022-of-00064.safetensors", + "model.layers.17.moe.gate_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.17.moe.down_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.17.share_expert.gate_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.17.share_expert.up_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.17.share_expert.down_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.17.input_layernorm.weight": "model-00023-of-00064.safetensors", + "model.layers.17.post_attention_layernorm.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.q_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.k_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.v_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.o_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.q_norm.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.k_norm.weight": "model-00023-of-00064.safetensors", + "model.layers.18.self_attn.g_proj.weight": "model-00023-of-00064.safetensors", + "model.layers.18.moe.router_bias": "model-00023-of-00064.safetensors", + "model.layers.18.moe.gate.weight": "model-00023-of-00064.safetensors", + "model.layers.18.moe.up_proj.weight": "model-00024-of-00064.safetensors", + "model.layers.18.moe.gate_proj.weight": "model-00024-of-00064.safetensors", + "model.layers.18.moe.down_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.18.share_expert.gate_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.18.share_expert.up_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.18.share_expert.down_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.18.input_layernorm.weight": "model-00025-of-00064.safetensors", + "model.layers.18.post_attention_layernorm.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.q_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.k_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.v_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.o_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.q_norm.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.k_norm.weight": "model-00025-of-00064.safetensors", + "model.layers.19.self_attn.g_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.moe.router_bias": "model-00025-of-00064.safetensors", + "model.layers.19.moe.gate.weight": "model-00025-of-00064.safetensors", + "model.layers.19.moe.up_proj.weight": "model-00025-of-00064.safetensors", + "model.layers.19.moe.gate_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.19.moe.down_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.19.share_expert.gate_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.19.share_expert.up_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.19.share_expert.down_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.19.input_layernorm.weight": "model-00026-of-00064.safetensors", + "model.layers.19.post_attention_layernorm.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.q_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.k_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.v_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.o_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.q_norm.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.k_norm.weight": "model-00026-of-00064.safetensors", + "model.layers.20.self_attn.g_proj.weight": "model-00026-of-00064.safetensors", + "model.layers.20.moe.router_bias": "model-00026-of-00064.safetensors", + "model.layers.20.moe.gate.weight": "model-00026-of-00064.safetensors", + "model.layers.20.moe.up_proj.weight": "model-00027-of-00064.safetensors", + "model.layers.20.moe.gate_proj.weight": "model-00027-of-00064.safetensors", + "model.layers.20.moe.down_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.20.share_expert.gate_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.20.share_expert.up_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.20.share_expert.down_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.20.input_layernorm.weight": "model-00028-of-00064.safetensors", + "model.layers.20.post_attention_layernorm.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.q_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.k_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.v_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.o_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.q_norm.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.k_norm.weight": "model-00028-of-00064.safetensors", + "model.layers.21.self_attn.g_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.moe.router_bias": "model-00028-of-00064.safetensors", + "model.layers.21.moe.gate.weight": "model-00028-of-00064.safetensors", + "model.layers.21.moe.up_proj.weight": "model-00028-of-00064.safetensors", + "model.layers.21.moe.gate_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.21.moe.down_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.21.share_expert.gate_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.21.share_expert.up_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.21.share_expert.down_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.21.input_layernorm.weight": "model-00029-of-00064.safetensors", + "model.layers.21.post_attention_layernorm.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.q_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.k_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.v_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.o_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.q_norm.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.k_norm.weight": "model-00029-of-00064.safetensors", + "model.layers.22.self_attn.g_proj.weight": "model-00029-of-00064.safetensors", + "model.layers.22.moe.router_bias": "model-00029-of-00064.safetensors", + "model.layers.22.moe.gate.weight": "model-00029-of-00064.safetensors", + "model.layers.22.moe.up_proj.weight": "model-00030-of-00064.safetensors", + "model.layers.22.moe.gate_proj.weight": "model-00030-of-00064.safetensors", + "model.layers.22.moe.down_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.22.share_expert.gate_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.22.share_expert.up_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.22.share_expert.down_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.22.input_layernorm.weight": "model-00031-of-00064.safetensors", + "model.layers.22.post_attention_layernorm.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.q_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.k_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.v_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.o_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.q_norm.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.k_norm.weight": "model-00031-of-00064.safetensors", + "model.layers.23.self_attn.g_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.moe.router_bias": "model-00031-of-00064.safetensors", + "model.layers.23.moe.gate.weight": "model-00031-of-00064.safetensors", + "model.layers.23.moe.up_proj.weight": "model-00031-of-00064.safetensors", + "model.layers.23.moe.gate_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.23.moe.down_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.23.share_expert.gate_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.23.share_expert.up_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.23.share_expert.down_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.23.input_layernorm.weight": "model-00032-of-00064.safetensors", + "model.layers.23.post_attention_layernorm.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.q_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.k_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.v_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.o_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.q_norm.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.k_norm.weight": "model-00032-of-00064.safetensors", + "model.layers.24.self_attn.g_proj.weight": "model-00032-of-00064.safetensors", + "model.layers.24.moe.router_bias": "model-00032-of-00064.safetensors", + "model.layers.24.moe.gate.weight": "model-00032-of-00064.safetensors", + "model.layers.24.moe.up_proj.weight": "model-00033-of-00064.safetensors", + "model.layers.24.moe.gate_proj.weight": "model-00033-of-00064.safetensors", + "model.layers.24.moe.down_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.24.share_expert.gate_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.24.share_expert.up_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.24.share_expert.down_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.24.input_layernorm.weight": "model-00034-of-00064.safetensors", + "model.layers.24.post_attention_layernorm.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.q_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.k_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.v_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.o_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.q_norm.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.k_norm.weight": "model-00034-of-00064.safetensors", + "model.layers.25.self_attn.g_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.moe.router_bias": "model-00034-of-00064.safetensors", + "model.layers.25.moe.gate.weight": "model-00034-of-00064.safetensors", + "model.layers.25.moe.up_proj.weight": "model-00034-of-00064.safetensors", + "model.layers.25.moe.gate_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.25.moe.down_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.25.share_expert.gate_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.25.share_expert.up_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.25.share_expert.down_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.25.input_layernorm.weight": "model-00035-of-00064.safetensors", + "model.layers.25.post_attention_layernorm.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.q_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.k_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.v_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.o_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.q_norm.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.k_norm.weight": "model-00035-of-00064.safetensors", + "model.layers.26.self_attn.g_proj.weight": "model-00035-of-00064.safetensors", + "model.layers.26.moe.router_bias": "model-00035-of-00064.safetensors", + "model.layers.26.moe.gate.weight": "model-00035-of-00064.safetensors", + "model.layers.26.moe.up_proj.weight": "model-00036-of-00064.safetensors", + "model.layers.26.moe.gate_proj.weight": "model-00036-of-00064.safetensors", + "model.layers.26.moe.down_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.26.share_expert.gate_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.26.share_expert.up_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.26.share_expert.down_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.26.input_layernorm.weight": "model-00037-of-00064.safetensors", + "model.layers.26.post_attention_layernorm.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.q_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.k_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.v_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.o_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.q_norm.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.k_norm.weight": "model-00037-of-00064.safetensors", + "model.layers.27.self_attn.g_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.moe.router_bias": "model-00037-of-00064.safetensors", + "model.layers.27.moe.gate.weight": "model-00037-of-00064.safetensors", + "model.layers.27.moe.up_proj.weight": "model-00037-of-00064.safetensors", + "model.layers.27.moe.gate_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.27.moe.down_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.27.share_expert.gate_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.27.share_expert.up_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.27.share_expert.down_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.27.input_layernorm.weight": "model-00038-of-00064.safetensors", + "model.layers.27.post_attention_layernorm.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.q_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.k_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.v_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.o_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.q_norm.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.k_norm.weight": "model-00038-of-00064.safetensors", + "model.layers.28.self_attn.g_proj.weight": "model-00038-of-00064.safetensors", + "model.layers.28.moe.router_bias": "model-00038-of-00064.safetensors", + "model.layers.28.moe.gate.weight": "model-00038-of-00064.safetensors", + "model.layers.28.moe.up_proj.weight": "model-00039-of-00064.safetensors", + "model.layers.28.moe.gate_proj.weight": "model-00039-of-00064.safetensors", + "model.layers.28.moe.down_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.28.share_expert.gate_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.28.share_expert.up_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.28.share_expert.down_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.28.input_layernorm.weight": "model-00040-of-00064.safetensors", + "model.layers.28.post_attention_layernorm.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.q_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.k_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.v_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.o_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.q_norm.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.k_norm.weight": "model-00040-of-00064.safetensors", + "model.layers.29.self_attn.g_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.moe.router_bias": "model-00040-of-00064.safetensors", + "model.layers.29.moe.gate.weight": "model-00040-of-00064.safetensors", + "model.layers.29.moe.up_proj.weight": "model-00040-of-00064.safetensors", + "model.layers.29.moe.gate_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.29.moe.down_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.29.share_expert.gate_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.29.share_expert.up_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.29.share_expert.down_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.29.input_layernorm.weight": "model-00041-of-00064.safetensors", + "model.layers.29.post_attention_layernorm.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.q_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.k_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.v_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.o_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.q_norm.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.k_norm.weight": "model-00041-of-00064.safetensors", + "model.layers.30.self_attn.g_proj.weight": "model-00041-of-00064.safetensors", + "model.layers.30.moe.router_bias": "model-00041-of-00064.safetensors", + "model.layers.30.moe.gate.weight": "model-00041-of-00064.safetensors", + "model.layers.30.moe.up_proj.weight": "model-00042-of-00064.safetensors", + "model.layers.30.moe.gate_proj.weight": "model-00042-of-00064.safetensors", + "model.layers.30.moe.down_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.30.share_expert.gate_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.30.share_expert.up_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.30.share_expert.down_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.30.input_layernorm.weight": "model-00043-of-00064.safetensors", + "model.layers.30.post_attention_layernorm.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.q_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.k_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.v_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.o_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.q_norm.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.k_norm.weight": "model-00043-of-00064.safetensors", + "model.layers.31.self_attn.g_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.moe.router_bias": "model-00043-of-00064.safetensors", + "model.layers.31.moe.gate.weight": "model-00043-of-00064.safetensors", + "model.layers.31.moe.up_proj.weight": "model-00043-of-00064.safetensors", + "model.layers.31.moe.gate_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.31.moe.down_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.31.share_expert.gate_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.31.share_expert.up_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.31.share_expert.down_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.31.input_layernorm.weight": "model-00044-of-00064.safetensors", + "model.layers.31.post_attention_layernorm.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.q_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.k_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.v_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.o_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.q_norm.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.k_norm.weight": "model-00044-of-00064.safetensors", + "model.layers.32.self_attn.g_proj.weight": "model-00044-of-00064.safetensors", + "model.layers.32.moe.router_bias": "model-00044-of-00064.safetensors", + "model.layers.32.moe.gate.weight": "model-00044-of-00064.safetensors", + "model.layers.32.moe.up_proj.weight": "model-00045-of-00064.safetensors", + "model.layers.32.moe.gate_proj.weight": "model-00045-of-00064.safetensors", + "model.layers.32.moe.down_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.32.share_expert.gate_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.32.share_expert.up_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.32.share_expert.down_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.32.input_layernorm.weight": "model-00046-of-00064.safetensors", + "model.layers.32.post_attention_layernorm.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.q_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.k_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.v_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.o_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.q_norm.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.k_norm.weight": "model-00046-of-00064.safetensors", + "model.layers.33.self_attn.g_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.moe.router_bias": "model-00046-of-00064.safetensors", + "model.layers.33.moe.gate.weight": "model-00046-of-00064.safetensors", + "model.layers.33.moe.up_proj.weight": "model-00046-of-00064.safetensors", + "model.layers.33.moe.gate_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.33.moe.down_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.33.share_expert.gate_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.33.share_expert.up_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.33.share_expert.down_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.33.input_layernorm.weight": "model-00047-of-00064.safetensors", + "model.layers.33.post_attention_layernorm.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.q_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.k_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.v_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.o_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.q_norm.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.k_norm.weight": "model-00047-of-00064.safetensors", + "model.layers.34.self_attn.g_proj.weight": "model-00047-of-00064.safetensors", + "model.layers.34.moe.router_bias": "model-00047-of-00064.safetensors", + "model.layers.34.moe.gate.weight": "model-00047-of-00064.safetensors", + "model.layers.34.moe.up_proj.weight": "model-00048-of-00064.safetensors", + "model.layers.34.moe.gate_proj.weight": "model-00048-of-00064.safetensors", + "model.layers.34.moe.down_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.34.share_expert.gate_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.34.share_expert.up_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.34.share_expert.down_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.34.input_layernorm.weight": "model-00049-of-00064.safetensors", + "model.layers.34.post_attention_layernorm.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.q_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.k_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.v_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.o_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.q_norm.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.k_norm.weight": "model-00049-of-00064.safetensors", + "model.layers.35.self_attn.g_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.moe.router_bias": "model-00049-of-00064.safetensors", + "model.layers.35.moe.gate.weight": "model-00049-of-00064.safetensors", + "model.layers.35.moe.up_proj.weight": "model-00049-of-00064.safetensors", + "model.layers.35.moe.gate_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.35.moe.down_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.35.share_expert.gate_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.35.share_expert.up_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.35.share_expert.down_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.35.input_layernorm.weight": "model-00050-of-00064.safetensors", + "model.layers.35.post_attention_layernorm.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.q_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.k_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.v_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.o_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.q_norm.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.k_norm.weight": "model-00050-of-00064.safetensors", + "model.layers.36.self_attn.g_proj.weight": "model-00050-of-00064.safetensors", + "model.layers.36.moe.router_bias": "model-00050-of-00064.safetensors", + "model.layers.36.moe.gate.weight": "model-00050-of-00064.safetensors", + "model.layers.36.moe.up_proj.weight": "model-00051-of-00064.safetensors", + "model.layers.36.moe.gate_proj.weight": "model-00051-of-00064.safetensors", + "model.layers.36.moe.down_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.36.share_expert.gate_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.36.share_expert.up_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.36.share_expert.down_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.36.input_layernorm.weight": "model-00052-of-00064.safetensors", + "model.layers.36.post_attention_layernorm.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.q_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.k_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.v_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.o_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.q_norm.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.k_norm.weight": "model-00052-of-00064.safetensors", + "model.layers.37.self_attn.g_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.moe.router_bias": "model-00052-of-00064.safetensors", + "model.layers.37.moe.gate.weight": "model-00052-of-00064.safetensors", + "model.layers.37.moe.up_proj.weight": "model-00052-of-00064.safetensors", + "model.layers.37.moe.gate_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.37.moe.down_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.37.share_expert.gate_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.37.share_expert.up_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.37.share_expert.down_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.37.input_layernorm.weight": "model-00053-of-00064.safetensors", + "model.layers.37.post_attention_layernorm.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.q_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.k_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.v_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.o_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.q_norm.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.k_norm.weight": "model-00053-of-00064.safetensors", + "model.layers.38.self_attn.g_proj.weight": "model-00053-of-00064.safetensors", + "model.layers.38.moe.router_bias": "model-00053-of-00064.safetensors", + "model.layers.38.moe.gate.weight": "model-00053-of-00064.safetensors", + "model.layers.38.moe.up_proj.weight": "model-00054-of-00064.safetensors", + "model.layers.38.moe.gate_proj.weight": "model-00054-of-00064.safetensors", + "model.layers.38.moe.down_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.38.share_expert.gate_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.38.share_expert.up_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.38.share_expert.down_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.38.input_layernorm.weight": "model-00055-of-00064.safetensors", + "model.layers.38.post_attention_layernorm.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.q_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.k_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.v_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.o_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.q_norm.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.k_norm.weight": "model-00055-of-00064.safetensors", + "model.layers.39.self_attn.g_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.moe.router_bias": "model-00055-of-00064.safetensors", + "model.layers.39.moe.gate.weight": "model-00055-of-00064.safetensors", + "model.layers.39.moe.up_proj.weight": "model-00055-of-00064.safetensors", + "model.layers.39.moe.gate_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.39.moe.down_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.39.share_expert.gate_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.39.share_expert.up_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.39.share_expert.down_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.39.input_layernorm.weight": "model-00056-of-00064.safetensors", + "model.layers.39.post_attention_layernorm.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.q_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.k_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.v_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.o_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.q_norm.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.k_norm.weight": "model-00056-of-00064.safetensors", + "model.layers.40.self_attn.g_proj.weight": "model-00056-of-00064.safetensors", + "model.layers.40.moe.router_bias": "model-00056-of-00064.safetensors", + "model.layers.40.moe.gate.weight": "model-00056-of-00064.safetensors", + "model.layers.40.moe.up_proj.weight": "model-00057-of-00064.safetensors", + "model.layers.40.moe.gate_proj.weight": "model-00057-of-00064.safetensors", + "model.layers.40.moe.down_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.40.share_expert.gate_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.40.share_expert.up_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.40.share_expert.down_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.40.input_layernorm.weight": "model-00058-of-00064.safetensors", + "model.layers.40.post_attention_layernorm.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.q_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.k_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.v_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.o_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.q_norm.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.k_norm.weight": "model-00058-of-00064.safetensors", + "model.layers.41.self_attn.g_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.moe.router_bias": "model-00058-of-00064.safetensors", + "model.layers.41.moe.gate.weight": "model-00058-of-00064.safetensors", + "model.layers.41.moe.up_proj.weight": "model-00058-of-00064.safetensors", + "model.layers.41.moe.gate_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.41.moe.down_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.41.share_expert.gate_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.41.share_expert.up_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.41.share_expert.down_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.41.input_layernorm.weight": "model-00059-of-00064.safetensors", + "model.layers.41.post_attention_layernorm.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.q_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.k_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.v_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.o_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.q_norm.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.k_norm.weight": "model-00059-of-00064.safetensors", + "model.layers.42.self_attn.g_proj.weight": "model-00059-of-00064.safetensors", + "model.layers.42.moe.router_bias": "model-00059-of-00064.safetensors", + "model.layers.42.moe.gate.weight": "model-00059-of-00064.safetensors", + "model.layers.42.moe.up_proj.weight": "model-00060-of-00064.safetensors", + "model.layers.42.moe.gate_proj.weight": "model-00060-of-00064.safetensors", + "model.layers.42.moe.down_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.42.share_expert.gate_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.42.share_expert.up_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.42.share_expert.down_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.42.input_layernorm.weight": "model-00061-of-00064.safetensors", + "model.layers.42.post_attention_layernorm.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.q_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.k_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.v_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.o_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.q_norm.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.k_norm.weight": "model-00061-of-00064.safetensors", + "model.layers.43.self_attn.g_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.moe.router_bias": "model-00061-of-00064.safetensors", + "model.layers.43.moe.gate.weight": "model-00061-of-00064.safetensors", + "model.layers.43.moe.up_proj.weight": "model-00061-of-00064.safetensors", + "model.layers.43.moe.gate_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.43.moe.down_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.43.share_expert.gate_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.43.share_expert.up_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.43.share_expert.down_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.43.input_layernorm.weight": "model-00062-of-00064.safetensors", + "model.layers.43.post_attention_layernorm.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.q_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.k_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.v_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.o_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.q_norm.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.k_norm.weight": "model-00062-of-00064.safetensors", + "model.layers.44.self_attn.g_proj.weight": "model-00062-of-00064.safetensors", + "model.layers.44.moe.router_bias": "model-00062-of-00064.safetensors", + "model.layers.44.moe.gate.weight": "model-00062-of-00064.safetensors", + "model.layers.44.moe.up_proj.weight": "model-00063-of-00064.safetensors", + "model.layers.44.moe.gate_proj.weight": "model-00063-of-00064.safetensors", + "model.layers.44.moe.down_proj.weight": "model-00064-of-00064.safetensors", + "model.layers.44.share_expert.gate_proj.weight": "model-00064-of-00064.safetensors", + "model.layers.44.share_expert.up_proj.weight": "model-00064-of-00064.safetensors", + "model.layers.44.share_expert.down_proj.weight": "model-00064-of-00064.safetensors", + "model.layers.44.input_layernorm.weight": "model-00064-of-00064.safetensors", + "model.layers.44.post_attention_layernorm.weight": "model-00064-of-00064.safetensors", + "model.norm.weight": "model-00064-of-00064.safetensors", + "lm_head.weight": "model-00064-of-00064.safetensors" + } +} \ No newline at end of file diff --git a/modeling_step3p5.py b/modeling_step3p5.py new file mode 100644 index 0000000000000000000000000000000000000000..aa8ebda29be86a33d508f690254db3add21ee886 --- /dev/null +++ b/modeling_step3p5.py @@ -0,0 +1,899 @@ +# Copyright 2025 The LLAMA4 and HuggingFace Inc. team. All rights reserved. +# +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +from dataclasses import dataclass +from typing import Callable, Optional, Tuple, Union + +import torch +import torch.nn as nn +import torch.nn.functional as F +from transformers.activations import ACT2FN +from transformers.cache_utils import Cache, DynamicCache +from transformers.generation import GenerationMixin +from transformers.masking_utils import (create_causal_mask, + create_sliding_window_causal_mask) +from transformers.modeling_flash_attention_utils import FlashAttentionKwargs +from transformers.modeling_layers import GradientCheckpointingLayer +from transformers.modeling_outputs import BaseModelOutputWithPast, ModelOutput +from transformers.modeling_rope_utils import (ROPE_INIT_FUNCTIONS, + dynamic_rope_update) +from transformers.modeling_utils import (ALL_ATTENTION_FUNCTIONS, + PreTrainedModel) +from transformers.processing_utils import Unpack +from transformers.utils import TransformersKwargs, can_return_tuple, logging + +from .configuration_step3p5 import Step3p5Config + +logger = logging.get_logger(__name__) + +__all__ = ["Step3p5Model", "Step3p5ForCausalLM"] + +class Step3p5RotaryEmbedding(nn.Module): + + def __init__(self, config: Step3p5Config, device=None, layer_idx=None): + super().__init__() + # BC: "rope_type" was originally "type" + self.layer_idx = layer_idx + if config.rope_parameters is not None: + self.rope_type = config.rope_parameters.get( + "rope_type", config.rope_parameters.get("type")) + else: + self.rope_type = "default" + self.max_seq_len_cached = config.max_position_embeddings + self.original_max_seq_len = config.max_position_embeddings + + partial_rotary_factors = getattr(config, "partial_rotary_factors", + None) + if partial_rotary_factors is not None: + config.partial_rotary_factor = partial_rotary_factors[ + self.layer_idx] + else: + config.partial_rotary_factor = 1.0 + + self.rope_theta = config.rope_theta + if isinstance(config.rope_theta, list): + self.rope_theta = config.rope_theta.copy() + config.rope_theta = self.rope_theta[self.layer_idx] + + self.config = config + self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type] + inv_freq, self.attention_scaling = self.rope_init_fn( + self.config, device) + + self.register_buffer("inv_freq", inv_freq, persistent=False) + self.original_inv_freq = self.inv_freq + config.rope_theta = self.rope_theta + + @torch.no_grad() + @dynamic_rope_update # power user: used with advanced RoPE types (e.g. dynamic rope) + def forward(self, x, position_ids): + inv_freq_expanded = self.inv_freq[None, :, None].float().expand( + position_ids.shape[0], -1, 1).to(x.device) + position_ids_expanded = position_ids[:, None, :].float().to(x.device) + + device_type = x.device.type if isinstance( + x.device.type, str) and x.device.type != "mps" else "cpu" + with torch.autocast(device_type=device_type, + enabled=False): # Force float32 + freqs = (inv_freq_expanded.float() + @ position_ids_expanded.float()).transpose(1, 2) + emb = torch.cat((freqs, freqs), dim=-1) + cos = emb.cos() * self.attention_scaling + sin = emb.sin() * self.attention_scaling + + return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype) + + +def rotate_half(x): + """Rotates half the hidden dims of the input.""" + x1 = x[..., :x.shape[-1] // 2] + x2 = x[..., x.shape[-1] // 2:] + return torch.cat((-x2, x1), dim=-1) + + +def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1): + """Applies Rotary Position Embedding to the query and key tensors. + Args: + q (`torch.Tensor`): The query tensor. + k (`torch.Tensor`): The key tensor. + cos (`torch.Tensor`): The cosine part of the rotary embedding. + sin (`torch.Tensor`): The sine part of the rotary embedding. + position_ids (`torch.Tensor`, *optional*): + Deprecated and unused. + unsqueeze_dim (`int`, *optional*, defaults to 1): + The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and + sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note + that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and + k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes + cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have + the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2. + Returns: + `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding. + """ + rotary_dim = cos.shape[-1] + q_rot, q_pass = q[..., :rotary_dim], q[..., rotary_dim:] + k_rot, k_pass = k[..., :rotary_dim], k[..., rotary_dim:] + + # Apply rotary embeddings on the first half or full tensor + q_embed = (q_rot * cos) + (rotate_half(q_rot) * sin) + k_embed = (k_rot * cos) + (rotate_half(k_rot) * sin) + + # Concatenate back to full shape + q_embed = torch.cat([q_embed, q_pass], dim=-1) + k_embed = torch.cat([k_embed, k_pass], dim=-1) + return q_embed, k_embed + + +def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor: + """ + This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch, + num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim) + """ + batch, num_key_value_heads, slen, head_dim = hidden_states.shape + if n_rep == 1: + return hidden_states + hidden_states = hidden_states[:, :, + None, :, :].expand(batch, + num_key_value_heads, + n_rep, slen, head_dim) + return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, + head_dim) + + +# Adapted from transformers.models.llama.modeling_llama.eager_attention_forward -> llama4 doesn't cast attn weights to fp32 +def eager_attention_forward( + module: nn.Module, + query: torch.Tensor, + key: torch.Tensor, + value: torch.Tensor, + attention_mask: Optional[torch.Tensor], + scaling: float, + dropout: float = 0.0, + **kwargs, +): + key_states = repeat_kv(key, module.num_key_value_groups) + value_states = repeat_kv(value, module.num_key_value_groups) + # breakpoint() + attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling + if attention_mask is not None: + causal_mask = attention_mask[:, :, :, :key_states.shape[-2]] + attn_weights = attn_weights + causal_mask + + attn_weights = nn.functional.softmax(attn_weights, dim=-1) + attn_weights = nn.functional.dropout(attn_weights, + p=dropout, + training=module.training) + attn_output = torch.matmul(attn_weights, value_states) + attn_output = attn_output.transpose(1, 2).contiguous() + + return attn_output, attn_weights + +@dataclass +class Step3p5CausalLMOutputWithPast(ModelOutput): + r""" + loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `labels` is provided): + Language modeling loss (for next-token prediction). + logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, config.vocab_size)`): + Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax). + past_key_values (`Cache`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`): + Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape + `(batch_size, num_heads, sequence_length, embed_size_per_head)`) + Contains pre-computed hidden-states (key and values in the self-attention blocks) that can be used (see + `past_key_values` input) to speed up sequential decoding. + """ + + loss: Optional[torch.FloatTensor] = None + last_hidden_state: Optional[torch.FloatTensor] = None + logits: torch.FloatTensor = None + past_key_values: Optional[list[torch.FloatTensor]] = None + hidden_states: Optional[tuple[torch.FloatTensor]] = None + attentions: Optional[tuple[torch.FloatTensor]] = None + + +class Step3p5MLP(nn.Module): + + def __init__(self, config, intermediate_size=None, swiglu_limit=None): + super().__init__() + self.config = config + self.hidden_size = config.hidden_size + self.intermediate_size = intermediate_size if intermediate_size is not None else config.intermediate_size + self.gate_proj = nn.Linear(self.hidden_size, + self.intermediate_size, + bias=False) + self.up_proj = nn.Linear(self.hidden_size, + self.intermediate_size, + bias=False) + self.down_proj = nn.Linear(self.intermediate_size, + self.hidden_size, + bias=False) + self.act_fn = ACT2FN["silu"] + self.limit = swiglu_limit + + def forward(self, x): + up = self.up_proj(x) + gate = self.act_fn(self.gate_proj(x)) + if self.limit is not None: + gate = gate.clamp(min=None, max=self.limit) + up = up.clamp(min=-self.limit, max=self.limit) + + return self.down_proj(gate * up) + + +def sigmoid_routing_function(gating_output: torch.Tensor, topk: int, + renormalize: bool): + gating_output = gating_output.float() + gate_prob = torch.sigmoid(gating_output) + gate_prob = gate_prob / gate_prob.sum(dim=-1, keepdim=True) + topk_prob, indices = torch.topk(gate_prob, k=topk, dim=1) + expert_topk_weight = topk_prob + if renormalize: + expert_topk_weight = expert_topk_weight / torch.sum( + expert_topk_weight, dim=-1, keepdim=True) + return expert_topk_weight, indices + + +def softmax_routing_function(gating_output: torch.Tensor, top_k: int, + renormalize: bool): + gating_output = gating_output.float() + gate_prob = torch.softmax(gating_output, dim=-1) + gate_prob = gate_prob / gate_prob.sum(dim=-1, keepdim=True) + topk_prob, indices = torch.topk(gate_prob, k=top_k, dim=1) + expert_topk_weight = topk_prob + if renormalize: + expert_topk_weight = expert_topk_weight / torch.sum( + expert_topk_weight, dim=-1, keepdim=True) + return expert_topk_weight, indices.to(torch.int32) + + +class MoELinear(nn.Module): + + def __init__(self, num_experts, in_features, out_features): + super().__init__() + self.num_experts = num_experts + self.in_features = in_features + self.out_features = out_features + self.weight = nn.Parameter( + torch.empty(num_experts, out_features, in_features)) + + def forward(self, x, expert_id): + x = F.linear(x.float(), self.weight[expert_id].float()) + return x + + +class Step3p5MoEMLP(nn.Module): + + def __init__(self, config, swiglu_limit=None): + super().__init__() + self.num_experts = config.moe_num_experts + self.top_k = config.moe_top_k + self.hidden_size = config.hidden_size + self.moe_intermediate_size = config.moe_intermediate_size + + self.use_moe_router_bias = config.use_moe_router_bias + if self.use_moe_router_bias: + self.router_bias = nn.Parameter(torch.zeros(config.moe_num_experts, + dtype=torch.float32), + requires_grad=False) + self.custom_routing_function = self.router_bias_func + elif config.moe_router_activation == "sigmoid": + self.custom_routing_function = sigmoid_routing_function + else: + self.custom_routing_function = None + self.need_fp32_gate = config.need_fp32_gate + self.routed_scaling_factor = getattr(config, + "moe_router_scaling_factor", 1.0) + + # gating + self.gate = nn.Linear(self.hidden_size, self.num_experts, bias=False) + + self.act_fn = ACT2FN["silu"] + self.limit = swiglu_limit + + self.up_proj = MoELinear(self.num_experts, self.hidden_size, + self.moe_intermediate_size) + self.gate_proj = MoELinear(self.num_experts, self.hidden_size, + self.moe_intermediate_size) + self.down_proj = MoELinear(self.num_experts, + self.moe_intermediate_size, + self.hidden_size) + + def router_bias_func(self, gating_output: torch.Tensor, topk: int, + renormalize: bool): + gate_prob = torch.sigmoid(gating_output.float()) + gate_prob_with_bias = gate_prob + self.router_bias.unsqueeze(0) + _, indices = torch.topk(gate_prob_with_bias, k=topk, dim=1) + topk_prob = torch.gather(gate_prob, 1, indices) + expert_topk_weight = topk_prob + if renormalize: + expert_topk_weight = expert_topk_weight / ( + torch.sum(expert_topk_weight, dim=-1, keepdim=True) + 1e-20) + return expert_topk_weight, indices + + def get_expert_output(self, inputs: torch.Tensor, expert_id): + #if self.limit is None: + up = self.up_proj(inputs, expert_id) + gate = self.act_fn(self.gate_proj(inputs, expert_id)) + if self.limit is not None: + gate = gate.clamp(min=None, max=self.limit) + up = up.clamp(min=-self.limit, max=self.limit) + + return self.down_proj(gate * up, expert_id) + + def forward(self, hidden_states): + """ """ + batch_size, sequence_length, hidden_dim = hidden_states.shape + hidden_states = hidden_states.view(-1, hidden_dim) + if self.need_fp32_gate: + router_logits = torch.matmul(hidden_states.to(torch.float32), self.gate.weight.t().to(torch.float32)) + else: + # router_logits: (batch * sequence_length, n_experts) + router_logits = self.gate(hidden_states) + + if self.custom_routing_function: + routing_weights, selected_experts = self.custom_routing_function( + router_logits, self.top_k, renormalize=True) + else: + routing_weights = F.softmax(router_logits, + dim=1, + dtype=torch.float) + routing_weights, selected_experts = torch.topk(routing_weights, + self.top_k, + dim=-1) + + routing_weights = routing_weights * self.routed_scaling_factor + + final_hidden_states = torch.zeros( + (batch_size * sequence_length, hidden_dim), + dtype=hidden_states.dtype, + device=hidden_states.device) + + # One hot encode the selected experts to create an expert mask + # this will be used to easily index which expert is going to be sollicitated + expert_mask = torch.nn.functional.one_hot( + selected_experts, num_classes=self.num_experts).permute(2, 1, 0) + + # Loop over all available experts in the model and perform the computation on each expert + for expert_idx in range(self.num_experts): + idx, top_x = torch.where(expert_mask[expert_idx]) + + # Index the correct hidden states and compute the expert hidden state for + # the current expert. We need to make sure to multiply the output hidden + # states by `routing_weights` on the corresponding tokens (top-1 and top-2) + current_state = hidden_states[None, top_x].reshape(-1, hidden_dim) + current_hidden_states = ( + self.get_expert_output(current_state, expert_idx) * + routing_weights[top_x, idx, None]) + + # However `index_add_` only support torch tensors for indexing so we'll use + # the `top_x` tensor here. + final_hidden_states.index_add_( + 0, top_x, current_hidden_states.to(hidden_states.dtype)) + final_hidden_states = final_hidden_states.reshape( + batch_size, sequence_length, hidden_dim) + return final_hidden_states + + +class Step3p5RMSNorm(nn.Module): + + def __init__( + self, + hidden_size: int, + eps: float = 1e-5, + ) -> None: + super().__init__() + self.weight = nn.Parameter(torch.ones(hidden_size)) + self.variance_epsilon = eps + + def forward(self, x: torch.Tensor) -> torch.Tensor: + dtype = x.dtype + x = x.float() + variance = x.pow(2).mean(dim=-1, keepdim=True) + normed = x * torch.rsqrt(variance + self.variance_epsilon) + normed = normed * (self.weight.float() + 1) + return normed.to(dtype) +class Step3p5Attention(nn.Module): + + def __init__(self, config: Step3p5Config, layer_idx): + super().__init__() + self.config = config + self.layer_idx = layer_idx + self.num_attention_heads = config.num_attention_heads + self.num_key_value_heads = config.num_attention_groups + + layer_types = getattr(config, "layer_types", []) + if layer_types: + enable_sliding_window = layer_types[ + self.layer_idx] == "sliding_attention" + else: + enable_sliding_window = self.layer_idx % 2 == 0 + + if hasattr(config, "yarn_only_types") and layer_types[ + self.layer_idx] not in config.yarn_only_types: + config.rope_parameters = None + else: + config.rope_parameters = getattr(config, "rope_scaling", None) + + self.sliding_window = config.sliding_window + if enable_sliding_window: + self.num_attention_heads = config.attention_other_setting[ + "num_attention_heads"] + self.num_key_value_heads = config.attention_other_setting[ + "num_attention_groups"] + + if self.sliding_window is not None and enable_sliding_window: + self.sliding_window = (self.sliding_window) + else: + self.sliding_window = None + self.head_dim = getattr(config, "head_dim", + config.hidden_size // self.num_attention_heads) + self.num_key_value_groups = self.num_attention_heads // self.num_key_value_heads + + self.rotary_emb = Step3p5RotaryEmbedding(config, layer_idx=layer_idx) + + self.q_size = self.num_attention_heads * self.head_dim + self.kv_size = self.num_key_value_heads * self.head_dim + self.scaling = self.head_dim**-0.5 + + self.q_proj = nn.Linear(config.hidden_size, self.q_size, bias=False) + self.k_proj = nn.Linear(config.hidden_size, self.kv_size, bias=False) + self.v_proj = nn.Linear(config.hidden_size, self.kv_size, bias=False) + self.o_proj = nn.Linear(self.q_size, config.hidden_size, bias=False) + self.q_norm = Step3p5RMSNorm(self.head_dim, + eps=config.rms_norm_eps) + self.k_norm = Step3p5RMSNorm(self.head_dim, + eps=config.rms_norm_eps) + + self.use_head_wise_attn_gate = config.use_head_wise_attn_gate + if self.use_head_wise_attn_gate: + self.g_proj = nn.Linear(config.hidden_size, + self.num_attention_heads, + bias=False) + + self.use_rope = True + use_rope_layers = getattr(config, "use_rope_layers", None) + if use_rope_layers: + self.use_rope = use_rope_layers[self.layer_idx] + + def forward( + self, + hidden_states: torch.Tensor, + attention_mask: Optional[torch.Tensor], + past_key_value: Optional[Cache] = None, + cache_position: Optional[torch.LongTensor] = None, + position_ids: Optional[torch.LongTensor] = None, + **kwargs: Unpack[FlashAttentionKwargs], + ) -> Tuple[torch.Tensor, Optional[torch.Tensor], + Optional[Tuple[torch.Tensor]]]: + input_shape = hidden_states.shape[:-1] + hidden_shape = (*input_shape, -1, self.head_dim) + + query_states = self.q_norm( + self.q_proj(hidden_states).view(hidden_shape)).transpose(1, 2) + key_states = self.k_norm( + self.k_proj(hidden_states).view(hidden_shape)).transpose(1, 2) + value_states = self.v_proj(hidden_states).view(hidden_shape).transpose( + 1, 2) + if self.use_head_wise_attn_gate: + gate_states = self.g_proj(hidden_states) + cos, sin = self.rotary_emb(hidden_states, position_ids) + + # cos, sin = position_embeddings + query_states, key_states = apply_rotary_pos_emb( + query_states, key_states, cos, sin) + + # query_states, key_states = apply_rotary_pos_emb(query_norm_states, key_norm_states, cos, sin) + if past_key_value is not None: + # sin and cos are specific to RoPE models; position_ids needed for the static cache + cache_kwargs = { + "sin": sin, + "cos": cos, + "cache_position": cache_position + } + key_states, value_states = past_key_value.update( + key_states, value_states, self.layer_idx, cache_kwargs) + + attention_interface: Callable = eager_attention_forward + # TODO: considering FP8ļ¼› + # RuntimeError: Expected attn_mask dtype to be bool or float or to match query dtype, + # but got attn_mask.dtype: long int and query.dtype: c10::BFloat16 instead. + if self.config._attn_implementation != "eager": + attention_interface = ALL_ATTENTION_FUNCTIONS[ + self.config._attn_implementation] + + attn_output, attn_weights = attention_interface( + self, + query_states, + key_states, + value_states, + attention_mask, + dropout=0.0 if not self.training else self.attention_dropout, + scaling=self.scaling, + sliding_window=self.sliding_window, # main diff with Llama + **kwargs, + ) + attn_output = attn_output.reshape(*input_shape, -1) + if self.use_head_wise_attn_gate: + output = attn_output.view( + *attn_output.shape[:-1], self.num_attention_heads, + self.head_dim) * gate_states.unsqueeze(-1).sigmoid() + attn_output = output.view(*attn_output.shape) + attn_output = self.o_proj(attn_output) + + return attn_output, attn_weights + + +class Step3p5DecoderLayer(GradientCheckpointingLayer): + + def __init__(self, config, layer_idx): + super().__init__() + self.hidden_size = config.hidden_size + self.layer_idx = layer_idx + self.self_attn = Step3p5Attention(config, layer_idx) + self.attention_type = config.layer_types[layer_idx] + + moe_layers_enum = getattr(config, "moe_layers_enum", None) + if moe_layers_enum is not None: + moe_layers_idx = [ + int(i) for i in moe_layers_enum.strip().split(',') + ] + else: + moe_layers_idx = [i for i in range(1, config.num_hidden_layers)] + self.is_moe_layer = layer_idx in moe_layers_idx + self.use_moe = False + + if config.swiglu_limits_shared and config.swiglu_limits_shared[ + layer_idx] is not None and config.swiglu_limits_shared[ + layer_idx] != 0: + swiglu_limit_shared = config.swiglu_limits_shared[layer_idx] + else: + swiglu_limit_shared = None + if config.swiglu_limits and config.swiglu_limits[ + layer_idx] is not None and config.swiglu_limits[layer_idx] != 0: + swiglu_limit = config.swiglu_limits[layer_idx] + else: + swiglu_limit = None + if self.is_moe_layer: + self.moe = Step3p5MoEMLP(config, swiglu_limit=swiglu_limit) # + self.share_expert = Step3p5MLP( + config, + intermediate_size=config.share_expert_dim, + swiglu_limit=swiglu_limit_shared) + self.use_moe = True + else: + self.mlp = Step3p5MLP(config, + intermediate_size=config.intermediate_size, + swiglu_limit=swiglu_limit_shared) + + self.input_layernorm = Step3p5RMSNorm( + config.hidden_size, + eps=config.rms_norm_eps) + self.post_attention_layernorm = Step3p5RMSNorm( + config.hidden_size, + eps=config.rms_norm_eps) + + def forward( + self, + hidden_states: torch.Tensor, + attention_mask: Optional[torch.Tensor] = None, + position_ids: Optional[torch.LongTensor] = None, + past_key_value: Optional[tuple[torch.Tensor]] = None, + cache_position: Optional[torch.LongTensor] = None, + **kwargs: Unpack[FlashAttentionKwargs], + ) -> torch.FloatTensor: + residual = hidden_states + hidden_states = self.input_layernorm(hidden_states) + hidden_states, _ = self.self_attn( + hidden_states=hidden_states, + attention_mask=attention_mask, + position_ids=position_ids, + past_key_value=past_key_value, + cache_position=cache_position, + **kwargs, + ) + hidden_states = residual + hidden_states + + # Fully Connected + residual = hidden_states + hidden_states = self.post_attention_layernorm(hidden_states) + if self.use_moe: + share_output = self.share_expert(hidden_states) + moe_output = self.moe(hidden_states) + ffn_output = moe_output + share_output + else: + ffn_output = self.mlp(hidden_states) + if isinstance(ffn_output, tuple): + hidden_states, _ = ffn_output + else: + hidden_states = ffn_output + + hidden_states = residual + hidden_states + return hidden_states + + +class Step3p5PreTrainedModel(PreTrainedModel): + # Link this model family to its configuration class so PreTrainedModel.from_pretrained + # can load the config instead of failing with a NoneType error. + config_class = Step3p5Config + supports_gradient_checkpointing = True + _skip_keys_device_placement = ["past_key_values"] + _keys_to_ignore_on_load_unexpected = [ + r"model\.layers\.45\.*", + r"model\.layers\.46\.*", + r"model\.layers\.47\.*" + ] + _supports_flash_attn = False + _supports_sdpa = True + _supports_flex_attn = True + _supports_static_cache = True + _supports_attention_backend = True + + +class Step3p5Model(Step3p5PreTrainedModel, GenerationMixin): + _no_split_modules = ["Step3p5DecoderLayer"] + base_model_prefix = "model" + _tied_weights_keys = ["lm_head.weight"] + config: Step3p5Config + def __init__(self, config: Step3p5Config): + super().__init__(config) + self.padding_idx = config.pad_token_id + self.vocab_size = config.vocab_size + + self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, + self.padding_idx) + self.layers = nn.ModuleList([ + Step3p5DecoderLayer(config, layer_idx) + for layer_idx in range(config.num_hidden_layers) + ]) + self.norm = Step3p5RMSNorm(config.hidden_size, eps=config.rms_norm_eps) + self.gradient_checkpointing = False + self.has_sliding_layers = "sliding_attention" in self.config.layer_types + + # Initialize weights and apply final processing + self.post_init() + + def get_input_embeddings(self, input_ids): + return self.embed_tokens(input_ids) + + @can_return_tuple + def forward( + self, + input_ids: torch.LongTensor = None, + attention_mask: Optional[torch.Tensor] = None, + position_ids: Optional[torch.LongTensor] = None, + past_key_values: Optional[Cache] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + use_cache: Optional[bool] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + return_dict: Optional[bool] = None, + cache_position: Optional[torch.LongTensor] = None, + **kwargs: Unpack[TransformersKwargs], + ) -> Union[tuple, BaseModelOutputWithPast]: + output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions + output_hidden_states = (output_hidden_states + if output_hidden_states is not None else + self.config.output_hidden_states) + use_cache = use_cache if use_cache is not None else self.config.use_cache + return_dict = return_dict if return_dict is not None else self.config.use_return_dict + if (input_ids is None) ^ (inputs_embeds is not None): + raise ValueError( + "You must specify exactly one of input_ids or inputs_embeds") + + if self.gradient_checkpointing and self.training and use_cache: + logger.warning_once( + "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`." + ) + use_cache = False + + if inputs_embeds is None: + inputs_embeds = self.embed_tokens( + input_ids.to(self.embed_tokens.weight.device)) + + if use_cache and past_key_values is None: + past_key_values = DynamicCache() + + if cache_position is None: + past_seen_tokens = past_key_values.get_seq_length( + ) if past_key_values is not None else 0 + cache_position = torch.arange(past_seen_tokens, + past_seen_tokens + + inputs_embeds.shape[1], + device=inputs_embeds.device) + + if position_ids is None: + position_ids = cache_position.unsqueeze(0) + + hidden_states = inputs_embeds + + # It may already have been prepared by e.g. `generate` + if not isinstance(causal_mask_mapping := attention_mask, dict): + # Prepare mask arguments + mask_kwargs = { + "config": self.config, + "input_embeds": inputs_embeds, + "attention_mask": attention_mask, + "cache_position": cache_position, + "past_key_values": past_key_values, + "position_ids": position_ids, + } + # Create the masks + causal_mask_mapping = { + "full_attention": create_causal_mask(**mask_kwargs), + } + + # The sliding window alternating layers are not always activated depending on the config + if self.has_sliding_layers: + causal_mask_mapping[ + "sliding_attention"] = create_sliding_window_causal_mask( + **mask_kwargs) + + # # create position embeddings to be shared across the decoder layers + # decoder layers + all_hidden_states = () if output_hidden_states else None + all_self_attns = () if output_attentions else None + for decoder_layer in self.layers[:self.config.num_hidden_layers]: + if output_hidden_states: + all_hidden_states += (hidden_states, ) + + layer_outputs = decoder_layer( + hidden_states, + attention_mask=causal_mask_mapping[ + decoder_layer.attention_type], + position_ids=position_ids, + past_key_value=past_key_values, + output_attentions=output_attentions, + use_cache=use_cache, + cache_position=cache_position, + **kwargs, + ) + + hidden_states = layer_outputs + + hidden_states = self.norm(hidden_states) + + return BaseModelOutputWithPast( + last_hidden_state=hidden_states, + past_key_values=past_key_values if use_cache else None, + hidden_states=all_hidden_states, + attentions=all_self_attns, + ) + + +class Step3p5ForCausalLM(Step3p5PreTrainedModel, GenerationMixin): + _tied_weights_keys = ["lm_head.weight"] + config: Step3p5Config + + def __init__(self, config: Step3p5Config): + super().__init__(config) + self.model = Step3p5Model(config) + self.lm_head = nn.Linear(config.hidden_size, + config.vocab_size, + bias=False) + + self.post_init() + + def get_input_embeddings(self): + return self.model.get_input_embeddings() + + def set_input_embeddings(self, value): + self.model.set_input_embeddings(value) + + def get_output_embeddings(self): + return self.model.get_output_embeddings() + + def set_output_embeddings(self, new_embeddings): + self.model.set_output_embeddings(new_embeddings) + + def set_decoder(self, decoder): + self.model.set_decoder(decoder) + + def get_decoder(self): + return self.model.get_decoder() + + def forward( + self, + input_ids: torch.LongTensor = None, + num_patches=None, + patch_pixel_values=None, + patch_newline_mask=None, + attention_mask: Optional[torch.Tensor] = None, + position_ids: Optional[torch.LongTensor] = None, + past_key_values: Optional[Cache] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + labels: Optional[torch.LongTensor] = None, + use_cache: Optional[bool] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + return_dict: Optional[bool] = None, + cache_position: Optional[torch.LongTensor] = None, + **kwargs: Unpack[TransformersKwargs], + ) -> Union[tuple, Step3p5CausalLMOutputWithPast]: + r""" + labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*): + Labels for computing the masked language modeling loss. Indices should either be in `[0, ..., + config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored + (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`. + Example: + ```python + >>> from transformers import AutoTokenizer, Llama4ForCausalLM + >>> model = Llama4ForCausalLM.from_pretrained("meta-llama4/Llama4-2-7b-hf") + >>> tokenizer = AutoTokenizer.from_pretrained("meta-llama4/Llama4-2-7b-hf") + >>> prompt = "Hey, are you conscious? Can you talk to me?" + >>> inputs = tokenizer(prompt, return_tensors="pt") + >>> # Generate + >>> generate_ids = model.generate(inputs.input_ids, max_length=30) + >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0] + "Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you." + ```""" + + output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions + output_hidden_states = (output_hidden_states + if output_hidden_states is not None else + self.config.output_hidden_states) + # breakpoint() + outputs = self.model( + input_ids=input_ids, + num_patches=num_patches, + patch_pixel_values=patch_pixel_values, + patch_newline_mask=patch_newline_mask, + position_ids=position_ids, + attention_mask=attention_mask, + past_key_values=past_key_values, + inputs_embeds=inputs_embeds, + use_cache=use_cache, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + return_dict=return_dict, + cache_position=cache_position, + **kwargs, + ) + hidden_states = outputs.last_hidden_state + logits = self.lm_head(hidden_states) + + return Step3p5CausalLMOutputWithPast(logits=logits, ) + + def prepare_inputs_for_generation( + self, + input_ids, + past_key_values=None, + inputs_embeds=None, + pixel_values=None, + attention_mask=None, + cache_position=None, + logits_to_keep=None, + **kwargs, + ): + + model_inputs = super().prepare_inputs_for_generation( + input_ids, + past_key_values=past_key_values, + inputs_embeds=inputs_embeds, + attention_mask=attention_mask, + cache_position=cache_position, + logits_to_keep=logits_to_keep, + **kwargs, + ) + + if cache_position[0] == 0: + # If we're in cached decoding stage, pixel values should be None because input ids do not contain special image token anymore + # Otherwise we need pixel values to be passed to model + model_inputs["pixel_values"] = pixel_values + + return model_inputs + + def _fix_state_dict_key_on_load(self, key: str) -> tuple[str, bool]: + if key.startswith("language_model."): + return key[len("language_model."):], True + + return key, False \ No newline at end of file diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..71e14b354c9d1319df9ac55d385c33e74c0113bd --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,23 @@ +{ + "bos_token": { + "content": "<|begin▁of▁sentence|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eos_token": { + "content": "<|im_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "pad_token": { + "content": "<|end▁of▁sentence|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..a57a955520240603eca1ffedcf3f8d27a1d678ec --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b564c620eb77fa11d0926011c2202347d6cfc358d79724ee04ae7007e13636f0 +size 9976972 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c29f8000f644d30a535f738cb1efba4e9afff26c --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,6562 @@ +{ + "add_bos_token": true, + "add_eos_token": false, + "add_prefix_space": null, + "added_tokens_decoder": { + "0": { + "content": "<|begin▁of▁sentence|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "1": { + "content": "<|end▁of▁sentence|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "2": { + "content": "<ļ½œā–padā–ļ½œ>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128006": { + "content": "<|im_start|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128007": { + "content": "<|im_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128014": { + "content": "<|place▁holder▁no▁14|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128015": { + "content": "<|place▁holder▁no▁15|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128016": { + "content": "<|place▁holder▁no▁16|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128017": { + "content": "<|place▁holder▁no▁17|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128018": { + "content": "<|place▁holder▁no▁18|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128019": { + "content": "<|place▁holder▁no▁19|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128020": { + "content": "<|place▁holder▁no▁20|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128021": { + "content": "<|place▁holder▁no▁21|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128022": { + "content": "<|place▁holder▁no▁22|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128023": { + "content": "<|place▁holder▁no▁23|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128024": { + "content": "<|place▁holder▁no▁24|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128025": { + "content": "<|place▁holder▁no▁25|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128026": { + "content": "<|place▁holder▁no▁26|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128027": { + "content": "<|place▁holder▁no▁27|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128028": { + "content": "<|place▁holder▁no▁28|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128029": { + "content": "<|place▁holder▁no▁29|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128030": { + "content": "<|place▁holder▁no▁30|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128031": { + "content": "<|place▁holder▁no▁31|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128032": { + "content": "<|place▁holder▁no▁32|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128033": { + "content": "<|place▁holder▁no▁33|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128034": { + "content": "<|place▁holder▁no▁34|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128035": { + "content": "<|place▁holder▁no▁35|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128036": { + "content": "<|place▁holder▁no▁36|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128037": { + "content": "<|place▁holder▁no▁37|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128038": { + "content": "<|place▁holder▁no▁38|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128039": { + "content": "<|place▁holder▁no▁39|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128040": { + "content": "<|place▁holder▁no▁40|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128041": { + "content": "<|place▁holder▁no▁41|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128042": { + "content": "<|place▁holder▁no▁42|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128043": { + "content": "<|place▁holder▁no▁43|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128044": { + "content": "<|place▁holder▁no▁44|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128045": { + "content": "<|place▁holder▁no▁45|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128046": { + "content": "<|place▁holder▁no▁46|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128047": { + "content": "<|place▁holder▁no▁47|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128048": { + "content": "<|place▁holder▁no▁48|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128049": { + "content": "<|place▁holder▁no▁49|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128050": { + "content": "<|place▁holder▁no▁50|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128051": { + "content": "<|place▁holder▁no▁51|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128052": { + "content": "<|place▁holder▁no▁52|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128053": { + "content": "<|place▁holder▁no▁53|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128054": { + "content": "<|place▁holder▁no▁54|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128055": { + "content": "<|place▁holder▁no▁55|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128056": { + "content": "<|place▁holder▁no▁56|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128057": { + "content": "<|place▁holder▁no▁57|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128058": { + "content": "<|place▁holder▁no▁58|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128059": { + "content": "<|place▁holder▁no▁59|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128060": { + "content": "<|place▁holder▁no▁60|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128061": { + "content": "<|place▁holder▁no▁61|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128062": { + "content": "<|place▁holder▁no▁62|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128063": { + "content": "<|place▁holder▁no▁63|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128064": { + "content": "<|place▁holder▁no▁64|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128065": { + "content": "<|place▁holder▁no▁65|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128066": { + "content": "<|place▁holder▁no▁66|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128067": { + "content": "<|place▁holder▁no▁67|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128068": { + "content": "<|place▁holder▁no▁68|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128069": { + "content": "<|place▁holder▁no▁69|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128070": { + "content": "<|place▁holder▁no▁70|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128071": { + "content": "<|place▁holder▁no▁71|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128072": { + "content": "<|place▁holder▁no▁72|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128073": { + "content": "<|place▁holder▁no▁73|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128074": { + "content": "<|place▁holder▁no▁74|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128075": { + "content": "<|place▁holder▁no▁75|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128076": { + "content": "<|place▁holder▁no▁76|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128077": { + "content": "<|place▁holder▁no▁77|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128078": { + "content": "<|place▁holder▁no▁78|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128079": { + "content": "<|place▁holder▁no▁79|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128080": { + "content": "<|place▁holder▁no▁80|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128081": { + "content": "<|place▁holder▁no▁81|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128082": { + "content": "<|place▁holder▁no▁82|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128083": { + "content": "<|place▁holder▁no▁83|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128084": { + "content": "<|place▁holder▁no▁84|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128085": { + "content": "<|place▁holder▁no▁85|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128086": { + "content": "<|place▁holder▁no▁86|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128087": { + "content": "<|place▁holder▁no▁87|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128088": { + "content": "<|place▁holder▁no▁88|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128089": { + "content": "<|place▁holder▁no▁89|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128090": { + "content": "<|place▁holder▁no▁90|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128091": { + "content": "<|place▁holder▁no▁91|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128092": { + "content": "<|place▁holder▁no▁92|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128093": { + "content": "<|place▁holder▁no▁93|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128094": { + "content": "<|place▁holder▁no▁94|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128095": { + "content": "<|place▁holder▁no▁95|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128096": { + "content": "<|place▁holder▁no▁96|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128097": { + "content": "<|place▁holder▁no▁97|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128098": { + "content": "<|place▁holder▁no▁98|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128099": { + "content": "<|place▁holder▁no▁99|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128100": { + "content": "<|place▁holder▁no▁100|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128101": { + "content": "<|place▁holder▁no▁101|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128102": { + "content": "<|place▁holder▁no▁102|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128103": { + "content": "<|place▁holder▁no▁103|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128104": { + "content": "<|place▁holder▁no▁104|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128105": { + "content": "<|place▁holder▁no▁105|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128106": { + "content": "<|place▁holder▁no▁106|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128107": { + "content": "<|place▁holder▁no▁107|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128108": { + "content": "<|place▁holder▁no▁108|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128109": { + "content": "<|place▁holder▁no▁109|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128110": { + "content": "<|place▁holder▁no▁110|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128111": { + "content": "<|place▁holder▁no▁111|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128112": { + "content": "<|place▁holder▁no▁112|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128113": { + "content": "<|place▁holder▁no▁113|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128114": { + "content": "<|place▁holder▁no▁114|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128115": { + "content": "<|place▁holder▁no▁115|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128116": { + "content": "<|place▁holder▁no▁116|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128117": { + "content": "<|place▁holder▁no▁117|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128118": { + "content": "<|place▁holder▁no▁118|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128119": { + "content": "<|place▁holder▁no▁119|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128120": { + "content": "<|place▁holder▁no▁120|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128121": { + "content": "<|place▁holder▁no▁121|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128122": { + "content": "<|place▁holder▁no▁122|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128123": { + "content": "<|place▁holder▁no▁123|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128124": { + "content": "<|place▁holder▁no▁124|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128125": { + "content": "<|place▁holder▁no▁125|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128126": { + "content": "<|place▁holder▁no▁126|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128127": { + "content": "<|place▁holder▁no▁127|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128128": { + "content": "<|place▁holder▁no▁128|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128129": { + "content": "<|place▁holder▁no▁129|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128130": { + "content": "<|place▁holder▁no▁130|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128131": { + "content": "<|place▁holder▁no▁131|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128132": { + "content": "<|place▁holder▁no▁132|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128133": { + "content": "<|place▁holder▁no▁133|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128134": { + "content": "<|place▁holder▁no▁134|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128135": { + "content": "<|place▁holder▁no▁135|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128136": { + "content": "<|place▁holder▁no▁136|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128137": { + "content": "<|place▁holder▁no▁137|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128138": { + "content": "<|place▁holder▁no▁138|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128139": { + "content": "<|place▁holder▁no▁139|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128140": { + "content": "<|place▁holder▁no▁140|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128141": { + "content": "<|place▁holder▁no▁141|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128142": { + "content": "<|place▁holder▁no▁142|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128143": { + "content": "<|place▁holder▁no▁143|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128144": { + "content": "<|place▁holder▁no▁144|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128145": { + "content": "<|place▁holder▁no▁145|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128146": { + "content": "<|place▁holder▁no▁146|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128147": { + "content": "<|place▁holder▁no▁147|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128148": { + "content": "<|place▁holder▁no▁148|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128149": { + "content": "<|place▁holder▁no▁149|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128150": { + "content": "<|place▁holder▁no▁150|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128151": { + "content": "<|place▁holder▁no▁151|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128152": { + "content": "<|place▁holder▁no▁152|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128153": { + "content": "<|place▁holder▁no▁153|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128154": { + "content": "<|place▁holder▁no▁154|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128155": { + "content": "<|place▁holder▁no▁155|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128156": { + "content": "<|place▁holder▁no▁156|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128157": { + "content": "<|place▁holder▁no▁157|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128158": { + "content": "<|place▁holder▁no▁158|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128159": { + "content": "<|place▁holder▁no▁159|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128160": { + "content": "<|place▁holder▁no▁160|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128161": { + "content": "<|place▁holder▁no▁161|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128162": { + "content": "<|place▁holder▁no▁162|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128163": { + "content": "<|place▁holder▁no▁163|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128164": { + "content": "<|place▁holder▁no▁164|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128165": { + "content": "<|place▁holder▁no▁165|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128166": { + "content": "<|place▁holder▁no▁166|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128167": { + "content": "<|place▁holder▁no▁167|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128168": { + "content": "<|place▁holder▁no▁168|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128169": { + "content": "<|place▁holder▁no▁169|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128170": { + "content": "<|place▁holder▁no▁170|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128171": { + "content": "<|place▁holder▁no▁171|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128172": { + "content": "<|place▁holder▁no▁172|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128173": { + "content": "<|place▁holder▁no▁173|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128174": { + "content": "<|place▁holder▁no▁174|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128175": { + "content": "<|place▁holder▁no▁175|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128176": { + "content": "<|place▁holder▁no▁176|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128177": { + "content": "<|place▁holder▁no▁177|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128178": { + "content": "<|place▁holder▁no▁178|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128179": { + "content": "<|place▁holder▁no▁179|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128180": { + "content": "<|place▁holder▁no▁180|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128181": { + "content": "<|place▁holder▁no▁181|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128182": { + "content": "<|place▁holder▁no▁182|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128183": { + "content": "<|place▁holder▁no▁183|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128184": { + "content": "<|place▁holder▁no▁184|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128185": { + "content": "<|place▁holder▁no▁185|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128186": { + "content": "<|place▁holder▁no▁186|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128187": { + "content": "<|place▁holder▁no▁187|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128188": { + "content": "<|place▁holder▁no▁188|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128189": { + "content": "<|place▁holder▁no▁189|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128190": { + "content": "<|place▁holder▁no▁190|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128191": { + "content": "<|place▁holder▁no▁191|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128192": { + "content": "<|place▁holder▁no▁192|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128193": { + "content": "<|place▁holder▁no▁193|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128194": { + "content": "<|place▁holder▁no▁194|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128195": { + "content": "<|place▁holder▁no▁195|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128196": { + "content": "<|place▁holder▁no▁196|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128197": { + "content": "<|place▁holder▁no▁197|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128198": { + "content": "<|place▁holder▁no▁198|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128199": { + "content": "<|place▁holder▁no▁199|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128200": { + "content": "<|place▁holder▁no▁200|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128201": { + "content": "<|place▁holder▁no▁201|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128202": { + "content": "<|place▁holder▁no▁202|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128203": { + "content": "<|place▁holder▁no▁203|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128204": { + "content": "<|place▁holder▁no▁204|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128205": { + "content": "<|place▁holder▁no▁205|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128206": { + "content": "<|place▁holder▁no▁206|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128207": { + "content": "<|place▁holder▁no▁207|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128208": { + "content": "<|place▁holder▁no▁208|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128209": { + "content": "<|place▁holder▁no▁209|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128210": { + "content": "<|place▁holder▁no▁210|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128211": { + "content": "<|place▁holder▁no▁211|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128212": { + "content": "<|place▁holder▁no▁212|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128213": { + "content": "<|place▁holder▁no▁213|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128214": { + "content": "<|place▁holder▁no▁214|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128215": { + "content": "<|place▁holder▁no▁215|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128216": { + "content": "<|place▁holder▁no▁216|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128217": { + "content": "<|place▁holder▁no▁217|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128218": { + "content": "<|place▁holder▁no▁218|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128219": { + "content": "<|place▁holder▁no▁219|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128220": { + "content": "<|place▁holder▁no▁220|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128221": { + "content": "<|place▁holder▁no▁221|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128222": { + "content": "<|place▁holder▁no▁222|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128223": { + "content": "<|place▁holder▁no▁223|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128224": { + "content": "<|place▁holder▁no▁224|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128225": { + "content": "<|place▁holder▁no▁225|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128226": { + "content": "<|place▁holder▁no▁226|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128227": { + "content": "<|place▁holder▁no▁227|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128228": { + "content": "<|place▁holder▁no▁228|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128229": { + "content": "<|place▁holder▁no▁229|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128230": { + "content": "<|place▁holder▁no▁230|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128231": { + "content": "<|place▁holder▁no▁231|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128232": { + "content": "<|place▁holder▁no▁232|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128233": { + "content": "<|place▁holder▁no▁233|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128234": { + "content": "<|place▁holder▁no▁234|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128235": { + "content": "<|place▁holder▁no▁235|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128236": { + "content": "<|place▁holder▁no▁236|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128237": { + "content": "<|place▁holder▁no▁237|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128238": { + "content": "<|place▁holder▁no▁238|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128239": { + "content": "<|place▁holder▁no▁239|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128240": { + "content": "<|place▁holder▁no▁240|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128241": { + "content": "<|place▁holder▁no▁241|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128242": { + "content": "<|place▁holder▁no▁242|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128243": { + "content": "<|place▁holder▁no▁243|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128244": { + "content": "<|place▁holder▁no▁244|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128245": { + "content": "<|place▁holder▁no▁245|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128246": { + "content": "<|place▁holder▁no▁246|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128247": { + "content": "<|place▁holder▁no▁247|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128248": { + "content": "<|place▁holder▁no▁248|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128249": { + "content": "<|place▁holder▁no▁249|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128250": { + "content": "<|place▁holder▁no▁250|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128251": { + "content": "<|place▁holder▁no▁251|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128252": { + "content": "<|place▁holder▁no▁252|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128253": { + "content": "<|place▁holder▁no▁253|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128254": { + "content": "<|place▁holder▁no▁254|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128255": { + "content": "<|place▁holder▁no▁255|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128256": { + "content": "<|place▁holder▁no▁256|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128257": { + "content": "<|place▁holder▁no▁257|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128258": { + "content": "<|place▁holder▁no▁258|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128259": { + "content": "<|place▁holder▁no▁259|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128260": { + "content": "<|place▁holder▁no▁260|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128261": { + "content": "<|place▁holder▁no▁261|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128262": { + "content": "<|place▁holder▁no▁262|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128263": { + "content": "<|place▁holder▁no▁263|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128264": { + "content": "<|place▁holder▁no▁264|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128265": { + "content": "<|place▁holder▁no▁265|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128266": { + "content": "<|place▁holder▁no▁266|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128267": { + "content": "<|place▁holder▁no▁267|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128268": { + "content": "<|place▁holder▁no▁268|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128269": { + "content": "<|place▁holder▁no▁269|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128270": { + "content": "<|place▁holder▁no▁270|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128271": { + "content": "<|place▁holder▁no▁271|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128272": { + "content": "<|place▁holder▁no▁272|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128273": { + "content": "<|place▁holder▁no▁273|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128274": { + "content": "<|place▁holder▁no▁274|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128275": { + "content": "<|place▁holder▁no▁275|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128276": { + "content": "<|place▁holder▁no▁276|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128277": { + "content": "<|place▁holder▁no▁277|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128278": { + "content": "<|place▁holder▁no▁278|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128279": { + "content": "<|place▁holder▁no▁279|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128280": { + "content": "<|place▁holder▁no▁280|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128281": { + "content": "<|place▁holder▁no▁281|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128282": { + "content": "<|place▁holder▁no▁282|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128283": { + "content": "<|place▁holder▁no▁283|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128284": { + "content": "<|place▁holder▁no▁284|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128285": { + "content": "<|place▁holder▁no▁285|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128286": { + "content": "<|place▁holder▁no▁286|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128287": { + "content": "<|place▁holder▁no▁287|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128288": { + "content": "<|place▁holder▁no▁288|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128289": { + "content": "<|place▁holder▁no▁289|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128290": { + "content": "<|place▁holder▁no▁290|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128291": { + "content": "<|place▁holder▁no▁291|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128292": { + "content": "<|place▁holder▁no▁292|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128293": { + "content": "<|place▁holder▁no▁293|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128294": { + "content": "<|place▁holder▁no▁294|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128295": { + "content": "<|place▁holder▁no▁295|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128296": { + "content": "<|place▁holder▁no▁296|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128297": { + "content": "<|place▁holder▁no▁297|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128298": { + "content": "<|place▁holder▁no▁298|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128299": { + "content": "<|place▁holder▁no▁299|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128300": { + "content": "<|place▁holder▁no▁300|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128301": { + "content": "<|place▁holder▁no▁301|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128302": { + "content": "<|place▁holder▁no▁302|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128303": { + "content": "<|place▁holder▁no▁303|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128304": { + "content": "<|place▁holder▁no▁304|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128305": { + "content": "<|place▁holder▁no▁305|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128306": { + "content": "<|place▁holder▁no▁306|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128307": { + "content": "<|place▁holder▁no▁307|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128308": { + "content": "<|place▁holder▁no▁308|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128309": { + "content": "<|place▁holder▁no▁309|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128310": { + "content": "<|place▁holder▁no▁310|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128311": { + "content": "<|place▁holder▁no▁311|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128312": { + "content": "<|place▁holder▁no▁312|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128313": { + "content": "<|place▁holder▁no▁313|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128314": { + "content": "<|place▁holder▁no▁314|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128315": { + "content": "<|place▁holder▁no▁315|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128316": { + "content": "<|place▁holder▁no▁316|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128317": { + "content": "<|place▁holder▁no▁317|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128318": { + "content": "<|place▁holder▁no▁318|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128319": { + "content": "<|place▁holder▁no▁319|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128320": { + "content": "<|place▁holder▁no▁320|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128321": { + "content": "<|place▁holder▁no▁321|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128322": { + "content": "<|place▁holder▁no▁322|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128323": { + "content": "<|place▁holder▁no▁323|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128324": { + "content": "<|place▁holder▁no▁324|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128325": { + "content": "<|place▁holder▁no▁325|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128326": { + "content": "<|place▁holder▁no▁326|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128327": { + "content": "<|place▁holder▁no▁327|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128328": { + "content": "<|place▁holder▁no▁328|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128329": { + "content": "<|place▁holder▁no▁329|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128330": { + "content": "<|place▁holder▁no▁330|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128331": { + "content": "<|place▁holder▁no▁331|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128332": { + "content": "<|place▁holder▁no▁332|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128333": { + "content": "<|place▁holder▁no▁333|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128334": { + "content": "<|place▁holder▁no▁334|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128335": { + "content": "<|place▁holder▁no▁335|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128336": { + "content": "<|place▁holder▁no▁336|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128337": { + "content": "<|place▁holder▁no▁337|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128338": { + "content": "<|place▁holder▁no▁338|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128339": { + "content": "<|place▁holder▁no▁339|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128340": { + "content": "<|place▁holder▁no▁340|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128341": { + "content": "<|place▁holder▁no▁341|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128342": { + "content": "<|place▁holder▁no▁342|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128343": { + "content": "<|place▁holder▁no▁343|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128344": { + "content": "<|place▁holder▁no▁344|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128345": { + "content": "<|place▁holder▁no▁345|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128346": { + "content": "<|place▁holder▁no▁346|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128347": { + "content": "<|place▁holder▁no▁347|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128348": { + "content": "<|place▁holder▁no▁348|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128349": { + "content": "<|place▁holder▁no▁349|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128350": { + "content": "<|place▁holder▁no▁350|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128351": { + "content": "<|place▁holder▁no▁351|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128352": { + "content": "<|place▁holder▁no▁352|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128353": { + "content": "<|place▁holder▁no▁353|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128354": { + "content": "<|place▁holder▁no▁354|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128355": { + "content": "<|place▁holder▁no▁355|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128356": { + "content": "<|place▁holder▁no▁356|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128357": { + "content": "<|place▁holder▁no▁357|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128358": { + "content": "<|place▁holder▁no▁358|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128359": { + "content": "<|place▁holder▁no▁359|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128360": { + "content": "<|place▁holder▁no▁360|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128361": { + "content": "<|place▁holder▁no▁361|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128362": { + "content": "<|place▁holder▁no▁362|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128363": { + "content": "<|place▁holder▁no▁363|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128364": { + "content": "<|place▁holder▁no▁364|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128365": { + "content": "<|place▁holder▁no▁365|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128366": { + "content": "<|place▁holder▁no▁366|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128367": { + "content": "<|place▁holder▁no▁367|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128368": { + "content": "<|place▁holder▁no▁368|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128369": { + "content": "<|place▁holder▁no▁369|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128370": { + "content": "<|place▁holder▁no▁370|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128371": { + "content": "<|place▁holder▁no▁371|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128372": { + "content": "<|place▁holder▁no▁372|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128373": { + "content": "<|place▁holder▁no▁373|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128374": { + "content": "<|place▁holder▁no▁374|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128375": { + "content": "<|place▁holder▁no▁375|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128376": { + "content": "<|place▁holder▁no▁376|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128377": { + "content": "<|place▁holder▁no▁377|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128378": { + "content": "<|place▁holder▁no▁378|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128379": { + "content": "<|place▁holder▁no▁379|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128380": { + "content": "<|place▁holder▁no▁380|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128381": { + "content": "<|place▁holder▁no▁381|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128382": { + "content": "<|place▁holder▁no▁382|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128383": { + "content": "<|place▁holder▁no▁383|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128384": { + "content": "<|place▁holder▁no▁384|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128385": { + "content": "<|place▁holder▁no▁385|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128386": { + "content": "<|place▁holder▁no▁386|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128387": { + "content": "<|place▁holder▁no▁387|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128388": { + "content": "<|place▁holder▁no▁388|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128389": { + "content": "<|place▁holder▁no▁389|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128390": { + "content": "<|place▁holder▁no▁390|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128391": { + "content": "<|place▁holder▁no▁391|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128392": { + "content": "<|place▁holder▁no▁392|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128393": { + "content": "<|place▁holder▁no▁393|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128394": { + "content": "<|place▁holder▁no▁394|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128395": { + "content": "<|place▁holder▁no▁395|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128396": { + "content": "<|place▁holder▁no▁396|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128397": { + "content": "<|place▁holder▁no▁397|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128398": { + "content": "<|place▁holder▁no▁398|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128399": { + "content": "<|place▁holder▁no▁399|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128400": { + "content": "<|place▁holder▁no▁400|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128401": { + "content": "<|place▁holder▁no▁401|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128402": { + "content": "<|place▁holder▁no▁402|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128403": { + "content": "<|place▁holder▁no▁403|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128404": { + "content": "<|place▁holder▁no▁404|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128405": { + "content": "<|place▁holder▁no▁405|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128406": { + "content": "<|place▁holder▁no▁406|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128407": { + "content": "<|place▁holder▁no▁407|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128408": { + "content": "<|place▁holder▁no▁408|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128409": { + "content": "<|place▁holder▁no▁409|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128410": { + "content": "<|place▁holder▁no▁410|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128411": { + "content": "<|place▁holder▁no▁411|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128412": { + "content": "<|place▁holder▁no▁412|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128413": { + "content": "<|place▁holder▁no▁413|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128414": { + "content": "<|place▁holder▁no▁414|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128415": { + "content": "<|place▁holder▁no▁415|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128416": { + "content": "<|place▁holder▁no▁416|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128417": { + "content": "<|place▁holder▁no▁417|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128418": { + "content": "<|place▁holder▁no▁418|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128419": { + "content": "<|place▁holder▁no▁419|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128420": { + "content": "<|place▁holder▁no▁420|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128421": { + "content": "<|place▁holder▁no▁421|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128422": { + "content": "<|place▁holder▁no▁422|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128423": { + "content": "<|place▁holder▁no▁423|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128424": { + "content": "<|place▁holder▁no▁424|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128425": { + "content": "<|place▁holder▁no▁425|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128426": { + "content": "<|place▁holder▁no▁426|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128427": { + "content": "<|place▁holder▁no▁427|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128428": { + "content": "<|place▁holder▁no▁428|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128429": { + "content": "<|place▁holder▁no▁429|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128430": { + "content": "<|place▁holder▁no▁430|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128431": { + "content": "<|place▁holder▁no▁431|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128432": { + "content": "<|place▁holder▁no▁432|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128433": { + "content": "<|place▁holder▁no▁433|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128434": { + "content": "<|place▁holder▁no▁434|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128435": { + "content": "<|place▁holder▁no▁435|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128436": { + "content": "<|place▁holder▁no▁436|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128437": { + "content": "<|place▁holder▁no▁437|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128438": { + "content": "<|place▁holder▁no▁438|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128439": { + "content": "<|place▁holder▁no▁439|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128440": { + "content": "<|place▁holder▁no▁440|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128441": { + "content": "<|place▁holder▁no▁441|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128442": { + "content": "<|place▁holder▁no▁442|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128443": { + "content": "<|place▁holder▁no▁443|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128444": { + "content": "<|place▁holder▁no▁444|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128445": { + "content": "<|place▁holder▁no▁445|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128446": { + "content": "<|place▁holder▁no▁446|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128447": { + "content": "<|place▁holder▁no▁447|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128448": { + "content": "<|place▁holder▁no▁448|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128449": { + "content": "<|place▁holder▁no▁449|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128450": { + "content": "<|place▁holder▁no▁450|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128451": { + "content": "<|place▁holder▁no▁451|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128452": { + "content": "<|place▁holder▁no▁452|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128453": { + "content": "<|place▁holder▁no▁453|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128454": { + "content": "<|place▁holder▁no▁454|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128455": { + "content": "<|place▁holder▁no▁455|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128456": { + "content": "<|place▁holder▁no▁456|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128457": { + "content": "<|place▁holder▁no▁457|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128458": { + "content": "<|place▁holder▁no▁458|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128459": { + "content": "<|place▁holder▁no▁459|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128460": { + "content": "<|place▁holder▁no▁460|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128461": { + "content": "<|place▁holder▁no▁461|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128462": { + "content": "<|place▁holder▁no▁462|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128463": { + "content": "<|place▁holder▁no▁463|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128464": { + "content": "<|place▁holder▁no▁464|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128465": { + "content": "<|place▁holder▁no▁465|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128466": { + "content": "<|place▁holder▁no▁466|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128467": { + "content": "<|place▁holder▁no▁467|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128468": { + "content": "<|place▁holder▁no▁468|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128469": { + "content": "<|place▁holder▁no▁469|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128470": { + "content": "<|place▁holder▁no▁470|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128471": { + "content": "<|place▁holder▁no▁471|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128472": { + "content": "<|place▁holder▁no▁472|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128473": { + "content": "<|place▁holder▁no▁473|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128474": { + "content": "<|place▁holder▁no▁474|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128475": { + "content": "<|place▁holder▁no▁475|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128476": { + "content": "<|place▁holder▁no▁476|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128477": { + "content": "<|place▁holder▁no▁477|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128478": { + "content": "<|place▁holder▁no▁478|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128479": { + "content": "<|place▁holder▁no▁479|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128480": { + "content": "<|place▁holder▁no▁480|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128481": { + "content": "<|place▁holder▁no▁481|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128482": { + "content": "<|place▁holder▁no▁482|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128483": { + "content": "<|place▁holder▁no▁483|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128484": { + "content": "<|place▁holder▁no▁484|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128485": { + "content": "<|place▁holder▁no▁485|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128486": { + "content": "<|place▁holder▁no▁486|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128487": { + "content": "<|place▁holder▁no▁487|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128488": { + "content": "<|place▁holder▁no▁488|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128489": { + "content": "<|place▁holder▁no▁489|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128490": { + "content": "<|place▁holder▁no▁490|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128491": { + "content": "<|place▁holder▁no▁491|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128492": { + "content": "<|place▁holder▁no▁492|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128493": { + "content": "<|place▁holder▁no▁493|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128494": { + "content": "<|place▁holder▁no▁494|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128495": { + "content": "<|place▁holder▁no▁495|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128496": { + "content": "<|place▁holder▁no▁496|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128497": { + "content": "<|place▁holder▁no▁497|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128498": { + "content": "<|place▁holder▁no▁498|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128499": { + "content": "<|place▁holder▁no▁499|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128500": { + "content": "<|place▁holder▁no▁500|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128501": { + "content": "<|place▁holder▁no▁501|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128502": { + "content": "<|place▁holder▁no▁502|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128503": { + "content": "<|place▁holder▁no▁503|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128504": { + "content": "<|place▁holder▁no▁504|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128505": { + "content": "<|place▁holder▁no▁505|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128506": { + "content": "<|place▁holder▁no▁506|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128507": { + "content": "<|place▁holder▁no▁507|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128508": { + "content": "<|place▁holder▁no▁508|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128509": { + "content": "<|place▁holder▁no▁509|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128510": { + "content": "<|place▁holder▁no▁510|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128511": { + "content": "<|place▁holder▁no▁511|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128512": { + "content": "<|place▁holder▁no▁512|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128513": { + "content": "<|place▁holder▁no▁513|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128514": { + "content": "<|place▁holder▁no▁514|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128515": { + "content": "<|place▁holder▁no▁515|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128516": { + "content": "<|place▁holder▁no▁516|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128517": { + "content": "<|place▁holder▁no▁517|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128518": { + "content": "<|place▁holder▁no▁518|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128519": { + "content": "<|place▁holder▁no▁519|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128520": { + "content": "<|place▁holder▁no▁520|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128521": { + "content": "<|place▁holder▁no▁521|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128522": { + "content": "<|place▁holder▁no▁522|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128523": { + "content": "<|place▁holder▁no▁523|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128524": { + "content": "<|place▁holder▁no▁524|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128525": { + "content": "<|place▁holder▁no▁525|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128526": { + "content": "<|place▁holder▁no▁526|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128527": { + "content": "<|place▁holder▁no▁527|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128528": { + "content": "<|place▁holder▁no▁528|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128529": { + "content": "<|place▁holder▁no▁529|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128530": { + "content": "<|place▁holder▁no▁530|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128531": { + "content": "<|place▁holder▁no▁531|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128532": { + "content": "<|place▁holder▁no▁532|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128533": { + "content": "<|place▁holder▁no▁533|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128534": { + "content": "<|place▁holder▁no▁534|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128535": { + "content": "<|place▁holder▁no▁535|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128536": { + "content": "<|place▁holder▁no▁536|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128537": { + "content": "<|place▁holder▁no▁537|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128538": { + "content": "<|place▁holder▁no▁538|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128539": { + "content": "<|place▁holder▁no▁539|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128540": { + "content": "<|place▁holder▁no▁540|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128541": { + "content": "<|place▁holder▁no▁541|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128542": { + "content": "<|place▁holder▁no▁542|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128543": { + "content": "<|place▁holder▁no▁543|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128544": { + "content": "<|place▁holder▁no▁544|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128545": { + "content": "<|place▁holder▁no▁545|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128546": { + "content": "<|place▁holder▁no▁546|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128547": { + "content": "<|place▁holder▁no▁547|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128548": { + "content": "<|place▁holder▁no▁548|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128549": { + "content": "<|place▁holder▁no▁549|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128550": { + "content": "<|place▁holder▁no▁550|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128551": { + "content": "<|place▁holder▁no▁551|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128552": { + "content": "<|place▁holder▁no▁552|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128553": { + "content": "<|place▁holder▁no▁553|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128554": { + "content": "<|place▁holder▁no▁554|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128555": { + "content": "<|place▁holder▁no▁555|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128556": { + "content": "<|place▁holder▁no▁556|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128557": { + "content": "<|place▁holder▁no▁557|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128558": { + "content": "<|place▁holder▁no▁558|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128559": { + "content": "<|place▁holder▁no▁559|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128560": { + "content": "<|place▁holder▁no▁560|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128561": { + "content": "<|place▁holder▁no▁561|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128562": { + "content": "<|place▁holder▁no▁562|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128563": { + "content": "<|place▁holder▁no▁563|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128564": { + "content": "<|place▁holder▁no▁564|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128565": { + "content": "<|place▁holder▁no▁565|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128566": { + "content": "<|place▁holder▁no▁566|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128567": { + "content": "<|place▁holder▁no▁567|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128568": { + "content": "<|place▁holder▁no▁568|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128569": { + "content": "<|place▁holder▁no▁569|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128570": { + "content": "<|place▁holder▁no▁570|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128571": { + "content": "<|place▁holder▁no▁571|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128572": { + "content": "<|place▁holder▁no▁572|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128573": { + "content": "<|place▁holder▁no▁573|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128574": { + "content": "<|place▁holder▁no▁574|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128575": { + "content": "<|place▁holder▁no▁575|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128576": { + "content": "<|place▁holder▁no▁576|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128577": { + "content": "<|place▁holder▁no▁577|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128578": { + "content": "<|place▁holder▁no▁578|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128579": { + "content": "<|place▁holder▁no▁579|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128580": { + "content": "<|place▁holder▁no▁580|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128581": { + "content": "<|place▁holder▁no▁581|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128582": { + "content": "<|place▁holder▁no▁582|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128583": { + "content": "<|place▁holder▁no▁583|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128584": { + "content": "<|place▁holder▁no▁584|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128585": { + "content": "<|place▁holder▁no▁585|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128586": { + "content": "<|place▁holder▁no▁586|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128587": { + "content": "<|place▁holder▁no▁587|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128588": { + "content": "<|place▁holder▁no▁588|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128589": { + "content": "<|place▁holder▁no▁589|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128590": { + "content": "<|place▁holder▁no▁590|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128591": { + "content": "<|place▁holder▁no▁591|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128592": { + "content": "<|place▁holder▁no▁592|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128593": { + "content": "<|place▁holder▁no▁593|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128594": { + "content": "<|place▁holder▁no▁594|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128595": { + "content": "<|place▁holder▁no▁595|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128596": { + "content": "<|place▁holder▁no▁596|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128597": { + "content": "<|place▁holder▁no▁597|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128598": { + "content": "<|place▁holder▁no▁598|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128599": { + "content": "<|place▁holder▁no▁599|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128600": { + "content": "<|place▁holder▁no▁600|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128601": { + "content": "<|place▁holder▁no▁601|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128602": { + "content": "<|place▁holder▁no▁602|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128603": { + "content": "<|place▁holder▁no▁603|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128604": { + "content": "<|place▁holder▁no▁604|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128605": { + "content": "<|place▁holder▁no▁605|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128606": { + "content": "<|place▁holder▁no▁606|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128607": { + "content": "<|place▁holder▁no▁607|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128608": { + "content": "<|place▁holder▁no▁608|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128609": { + "content": "<|place▁holder▁no▁609|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128610": { + "content": "<|place▁holder▁no▁610|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128611": { + "content": "<|place▁holder▁no▁611|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128612": { + "content": "<|place▁holder▁no▁612|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128613": { + "content": "<|place▁holder▁no▁613|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128614": { + "content": "<|place▁holder▁no▁614|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128615": { + "content": "<|place▁holder▁no▁615|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128616": { + "content": "<|place▁holder▁no▁616|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128617": { + "content": "<|place▁holder▁no▁617|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128618": { + "content": "<|place▁holder▁no▁618|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128619": { + "content": "<|place▁holder▁no▁619|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128620": { + "content": "<|place▁holder▁no▁620|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128621": { + "content": "<|place▁holder▁no▁621|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128622": { + "content": "<|place▁holder▁no▁622|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128623": { + "content": "<|place▁holder▁no▁623|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128624": { + "content": "<|place▁holder▁no▁624|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128625": { + "content": "<|place▁holder▁no▁625|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128626": { + "content": "<|place▁holder▁no▁626|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128627": { + "content": "<|place▁holder▁no▁627|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128628": { + "content": "<|place▁holder▁no▁628|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128629": { + "content": "<|place▁holder▁no▁629|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128630": { + "content": "<|place▁holder▁no▁630|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128631": { + "content": "<|place▁holder▁no▁631|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128632": { + "content": "<|place▁holder▁no▁632|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128633": { + "content": "<|place▁holder▁no▁633|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128634": { + "content": "<|place▁holder▁no▁634|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128635": { + "content": "<|place▁holder▁no▁635|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128636": { + "content": "<|place▁holder▁no▁636|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128637": { + "content": "<|place▁holder▁no▁637|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128638": { + "content": "<|place▁holder▁no▁638|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128639": { + "content": "<|place▁holder▁no▁639|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128640": { + "content": "<|place▁holder▁no▁640|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128641": { + "content": "<|place▁holder▁no▁641|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128642": { + "content": "<|place▁holder▁no▁642|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128643": { + "content": "<|place▁holder▁no▁643|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128644": { + "content": "<|place▁holder▁no▁644|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128645": { + "content": "<|place▁holder▁no▁645|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128646": { + "content": "<|place▁holder▁no▁646|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128647": { + "content": "<|place▁holder▁no▁647|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128648": { + "content": "<|place▁holder▁no▁648|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128649": { + "content": "<|place▁holder▁no▁649|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128650": { + "content": "<|place▁holder▁no▁650|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128651": { + "content": "<|place▁holder▁no▁651|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128652": { + "content": "<|place▁holder▁no▁652|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128653": { + "content": "<|place▁holder▁no▁653|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128654": { + "content": "<|place▁holder▁no▁654|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128655": { + "content": "<|place▁holder▁no▁655|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128656": { + "content": "<|place▁holder▁no▁656|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128657": { + "content": "<|place▁holder▁no▁657|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128658": { + "content": "<|place▁holder▁no▁658|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128659": { + "content": "<|place▁holder▁no▁659|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128660": { + "content": "<|place▁holder▁no▁660|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128661": { + "content": "<|place▁holder▁no▁661|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128662": { + "content": "<|place▁holder▁no▁662|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128663": { + "content": "<|place▁holder▁no▁663|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128664": { + "content": "<|place▁holder▁no▁664|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128665": { + "content": "<|place▁holder▁no▁665|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128666": { + "content": "<|place▁holder▁no▁666|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128667": { + "content": "<|place▁holder▁no▁667|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128668": { + "content": "<|place▁holder▁no▁668|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128669": { + "content": "<|place▁holder▁no▁669|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128670": { + "content": "<|place▁holder▁no▁670|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128671": { + "content": "<|place▁holder▁no▁671|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128672": { + "content": "<|place▁holder▁no▁672|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128673": { + "content": "<|place▁holder▁no▁673|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128674": { + "content": "<|place▁holder▁no▁674|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128675": { + "content": "<|place▁holder▁no▁675|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128676": { + "content": "<|place▁holder▁no▁676|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128677": { + "content": "<|place▁holder▁no▁677|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128678": { + "content": "<|place▁holder▁no▁678|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128679": { + "content": "<|place▁holder▁no▁679|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128680": { + "content": "<|place▁holder▁no▁680|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128681": { + "content": "<|place▁holder▁no▁681|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128682": { + "content": "<|place▁holder▁no▁682|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128683": { + "content": "<|place▁holder▁no▁683|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128684": { + "content": "<|place▁holder▁no▁684|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128685": { + "content": "<|place▁holder▁no▁685|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128686": { + "content": "<|place▁holder▁no▁686|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128687": { + "content": "<|place▁holder▁no▁687|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128688": { + "content": "<|place▁holder▁no▁688|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128689": { + "content": "<|place▁holder▁no▁689|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128690": { + "content": "<|place▁holder▁no▁690|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128691": { + "content": "<|place▁holder▁no▁691|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128692": { + "content": "<|place▁holder▁no▁692|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128693": { + "content": "<|place▁holder▁no▁693|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128694": { + "content": "<|place▁holder▁no▁694|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128695": { + "content": "<|place▁holder▁no▁695|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128696": { + "content": "<|place▁holder▁no▁696|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128697": { + "content": "<|place▁holder▁no▁697|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128698": { + "content": "<|place▁holder▁no▁698|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128699": { + "content": "<|place▁holder▁no▁699|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128700": { + "content": "<|place▁holder▁no▁700|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128701": { + "content": "<|place▁holder▁no▁701|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128702": { + "content": "<|place▁holder▁no▁702|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128703": { + "content": "<|place▁holder▁no▁703|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128704": { + "content": "<|place▁holder▁no▁704|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128705": { + "content": "<|place▁holder▁no▁705|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128706": { + "content": "<|place▁holder▁no▁706|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128707": { + "content": "<|place▁holder▁no▁707|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128708": { + "content": "<|place▁holder▁no▁708|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128709": { + "content": "<|place▁holder▁no▁709|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128710": { + "content": "<|place▁holder▁no▁710|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128711": { + "content": "<|place▁holder▁no▁711|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128712": { + "content": "<|place▁holder▁no▁712|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128713": { + "content": "<|place▁holder▁no▁713|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128714": { + "content": "<|place▁holder▁no▁714|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128715": { + "content": "<|place▁holder▁no▁715|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128716": { + "content": "<|place▁holder▁no▁716|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128717": { + "content": "<|place▁holder▁no▁717|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128718": { + "content": "<|place▁holder▁no▁718|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128719": { + "content": "<|place▁holder▁no▁719|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128720": { + "content": "<|place▁holder▁no▁720|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128721": { + "content": "<|place▁holder▁no▁721|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128722": { + "content": "<|place▁holder▁no▁722|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128723": { + "content": "<|place▁holder▁no▁723|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128724": { + "content": "<|place▁holder▁no▁724|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128725": { + "content": "<|place▁holder▁no▁725|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128726": { + "content": "<|place▁holder▁no▁726|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128727": { + "content": "<|place▁holder▁no▁727|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128728": { + "content": "<|place▁holder▁no▁728|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128729": { + "content": "<|place▁holder▁no▁729|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128730": { + "content": "<|place▁holder▁no▁730|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128731": { + "content": "<|place▁holder▁no▁731|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128732": { + "content": "<|place▁holder▁no▁732|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128733": { + "content": "<|place▁holder▁no▁733|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128734": { + "content": "<|place▁holder▁no▁734|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128735": { + "content": "<|place▁holder▁no▁735|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128736": { + "content": "<|place▁holder▁no▁736|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128737": { + "content": "<|place▁holder▁no▁737|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128738": { + "content": "<|place▁holder▁no▁738|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128739": { + "content": "<|place▁holder▁no▁739|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128740": { + "content": "<|place▁holder▁no▁740|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128741": { + "content": "<|place▁holder▁no▁741|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128742": { + "content": "<|place▁holder▁no▁742|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128743": { + "content": "<|place▁holder▁no▁743|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128744": { + "content": "<|place▁holder▁no▁744|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128745": { + "content": "<|place▁holder▁no▁745|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128746": { + "content": "<|place▁holder▁no▁746|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128747": { + "content": "<|place▁holder▁no▁747|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128748": { + "content": "<|place▁holder▁no▁748|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128749": { + "content": "<|place▁holder▁no▁749|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128750": { + "content": "<|place▁holder▁no▁750|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128751": { + "content": "<|place▁holder▁no▁751|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128752": { + "content": "<|place▁holder▁no▁752|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128753": { + "content": "<|place▁holder▁no▁753|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128754": { + "content": "<|place▁holder▁no▁754|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128755": { + "content": "<|place▁holder▁no▁755|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128756": { + "content": "<|place▁holder▁no▁756|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128757": { + "content": "<|place▁holder▁no▁757|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128758": { + "content": "<|place▁holder▁no▁758|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128759": { + "content": "<|place▁holder▁no▁759|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128760": { + "content": "<|place▁holder▁no▁760|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128761": { + "content": "<|place▁holder▁no▁761|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128762": { + "content": "<|place▁holder▁no▁762|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128763": { + "content": "<|place▁holder▁no▁763|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128764": { + "content": "<|place▁holder▁no▁764|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128765": { + "content": "<|place▁holder▁no▁765|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128766": { + "content": "<|place▁holder▁no▁766|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128767": { + "content": "<|place▁holder▁no▁767|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128768": { + "content": "<|place▁holder▁no▁768|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128769": { + "content": "<|place▁holder▁no▁769|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128770": { + "content": "<|place▁holder▁no▁770|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128771": { + "content": "<|place▁holder▁no▁771|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128772": { + "content": "<|place▁holder▁no▁772|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128773": { + "content": "<|place▁holder▁no▁773|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128774": { + "content": "<|place▁holder▁no▁774|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128775": { + "content": "<|place▁holder▁no▁775|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128776": { + "content": "<|place▁holder▁no▁776|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128777": { + "content": "<|place▁holder▁no▁777|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128778": { + "content": "<|place▁holder▁no▁778|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128779": { + "content": "<|place▁holder▁no▁779|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128780": { + "content": "<|place▁holder▁no▁780|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128781": { + "content": "<|place▁holder▁no▁781|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128782": { + "content": "<|place▁holder▁no▁782|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128783": { + "content": "<|BOT|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128784": { + "content": "<|place▁holder▁no▁784|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128785": { + "content": "<|place▁holder▁no▁785|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128786": { + "content": "<|place▁holder▁no▁786|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128787": { + "content": "<|place▁holder▁no▁787|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128788": { + "content": "<|place▁holder▁no▁788|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128789": { + "content": "<|place▁holder▁no▁789|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128790": { + "content": "<|place▁holder▁no▁790|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128791": { + "content": "<|place▁holder▁no▁791|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128792": { + "content": "<|place▁holder▁no▁792|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128793": { + "content": "<|place▁holder▁no▁793|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128794": { + "content": "<|place▁holder▁no▁794|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128795": { + "content": "<|place▁holder▁no▁795|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128796": { + "content": "<|begin▁of▁mask|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128797": { + "content": "<|end▁of▁mask|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128800": { + "content": "<|fim▁hole|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128801": { + "content": "<|fim▁begin|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128802": { + "content": "<|fim▁end|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128803": { + "content": "<|User|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128804": { + "content": "<|Assistant|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128805": { + "content": "<|EOT|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": true + }, + "128806": { + "content": "<|tool▁calls▁begin|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128807": { + "content": "<|tool▁calls▁end|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128808": { + "content": "<|tool▁call▁begin|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128809": { + "content": "<|tool▁call▁end|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128810": { + "content": "<|tool▁outputs▁begin|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128811": { + "content": "<|tool▁outputs▁end|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128812": { + "content": "<|tool▁output▁begin|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128813": { + "content": "<|tool▁output▁end|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "128814": { + "content": "<|tool▁sep|>", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + } + }, + "bos_token": "<|begin▁of▁sentence|>", + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "extra_special_tokens": {}, + "legacy": true, + "model_max_length": 131072, + "pad_token": "<|end▁of▁sentence|>", + "sp_model_kwargs": {}, + "tokenizer_class": "LlamaTokenizerFast", + "unk_token": null, + "use_default_system_prompt": false +}