Upload folder using huggingface_hub
Browse files- README.md +74 -0
- added_tokens.json +13 -0
- config.json +36 -0
- configuration_phi3.py +227 -0
- generation_config.json +11 -0
- openvino_detokenizer.bin +3 -0
- openvino_detokenizer.xml +353 -0
- openvino_model.bin +3 -0
- openvino_model.xml +0 -0
- openvino_tokenizer.bin +3 -0
- openvino_tokenizer.xml +795 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +132 -0
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,74 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            license: mit
         | 
| 3 | 
            +
            license_link: https://choosealicense.com/licenses/mit/
         | 
| 4 | 
            +
            base_model:
         | 
| 5 | 
            +
            - microsoft/Phi-3-mini-4k-instruct
         | 
| 6 | 
            +
            base_model_relation: quantized
         | 
| 7 | 
            +
            ---
         | 
| 8 | 
            +
            # Phi-3-mini-4k-instruct-int4-cw-ov
         | 
| 9 | 
            +
            * Model creator: [Microsoft](https://huggingface.co/microsoft)
         | 
| 10 | 
            +
             * Original model: [Phi-3-mini-4k-instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct)
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            ## Description
         | 
| 13 | 
            +
            This is [Phi-3-mini-4k-instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2024/documentation/openvino-ir-format.html) (Intermediate Representation) format with weights compressed to INT4 by [NNCF](https://github.com/openvinotoolkit/nncf).
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            > [!NOTE]  
         | 
| 16 | 
            +
            > The model is optimized for inference on NPU using these [instructions.](https://docs.openvino.ai/2025/openvino-workflow-generative/inference-with-genai/inference-with-genai-on-npu.html#export-an-llm-model-via-hugging-face-optimum-intel)
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            ## Quantization Parameters
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            Weight compression was performed using `nncf.compress_weights` with the following parameters:
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            * mode: **int4_asym**
         | 
| 23 | 
            +
            * ratio: **1**
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            For more information on quantization, check the [OpenVINO model optimization guide](https://docs.openvino.ai/2024/openvino-workflow/model-optimization-guide/weight-compression.html).
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            ## Compatibility
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            The provided OpenVINO™ IR model is compatible with:
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            * OpenVINO version 2024.4.0 and higher
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            ## Running Model Inference with [OpenVINO GenAI](https://github.com/openvinotoolkit/openvino.genai)
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            1. Install packages required for using OpenVINO GenAI.
         | 
| 36 | 
            +
            ```
         | 
| 37 | 
            +
            pip install openvino-genai huggingface_hub
         | 
| 38 | 
            +
            ```
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            2. Download model from HuggingFace Hub
         | 
| 41 | 
            +
               
         | 
| 42 | 
            +
            ```
         | 
| 43 | 
            +
            import huggingface_hub as hf_hub
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            model_id = "OpenVINO/Phi-3-mini-4k-instruct-int4-cw-ov"
         | 
| 46 | 
            +
            model_path = "Phi-3-mini-4k-instruct-int4-cw-ov"
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            hf_hub.snapshot_download(model_id, local_dir=model_path)
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            ```
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            3. Run model inference:
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            ```
         | 
| 55 | 
            +
            import openvino_genai as ov_genai
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            device = "NPU"
         | 
| 58 | 
            +
            pipe = ov_genai.LLMPipeline(model_path, device)
         | 
| 59 | 
            +
            print(pipe.generate("What is OpenVINO?", max_length=200))
         | 
| 60 | 
            +
            ```
         | 
| 61 | 
            +
             | 
| 62 | 
            +
            More GenAI usage examples can be found in OpenVINO GenAI library [docs](https://github.com/openvinotoolkit/openvino.genai/blob/master/src/README.md) and [samples](https://github.com/openvinotoolkit/openvino.genai?tab=readme-ov-file#openvino-genai-samples)
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            ## Limitations
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            Check the original model card for [original model card](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) for limitations.
         | 
| 67 | 
            +
             | 
| 68 | 
            +
            ## Legal information
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            The original model is distributed under [mit](https://choosealicense.com/licenses/mit/) license. More details can be found in [original model card](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct).
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            ## Disclaimer
         | 
| 73 | 
            +
             | 
| 74 | 
            +
            Intel is committed to respecting human rights and avoiding causing or contributing to adverse impacts on human rights. See [Intel’s Global Human Rights Principles](https://www.intel.com/content/dam/www/central-libraries/us/en/documents/policy-human-rights.pdf). Intel’s products and software are intended only to be used in applications that do not cause or contribute to adverse impacts on human rights.
         | 
    	
        added_tokens.json
    ADDED
    
    | @@ -0,0 +1,13 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "<|assistant|>": 32001,
         | 
| 3 | 
            +
              "<|endoftext|>": 32000,
         | 
| 4 | 
            +
              "<|end|>": 32007,
         | 
| 5 | 
            +
              "<|placeholder1|>": 32002,
         | 
| 6 | 
            +
              "<|placeholder2|>": 32003,
         | 
| 7 | 
            +
              "<|placeholder3|>": 32004,
         | 
| 8 | 
            +
              "<|placeholder4|>": 32005,
         | 
| 9 | 
            +
              "<|placeholder5|>": 32008,
         | 
| 10 | 
            +
              "<|placeholder6|>": 32009,
         | 
| 11 | 
            +
              "<|system|>": 32006,
         | 
| 12 | 
            +
              "<|user|>": 32010
         | 
| 13 | 
            +
            }
         | 
    	
        config.json
    ADDED
    
    | @@ -0,0 +1,36 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_attn_implementation_autoset": true,
         | 
| 3 | 
            +
              "architectures": [
         | 
| 4 | 
            +
                "Phi3ForCausalLM"
         | 
| 5 | 
            +
              ],
         | 
| 6 | 
            +
              "attention_bias": false,
         | 
| 7 | 
            +
              "attention_dropout": 0.0,
         | 
| 8 | 
            +
              "auto_map": {
         | 
| 9 | 
            +
                "AutoConfig": "configuration_phi3.Phi3Config",
         | 
| 10 | 
            +
                "AutoModelForCausalLM": "modeling_phi3.Phi3ForCausalLM"
         | 
| 11 | 
            +
              },
         | 
| 12 | 
            +
              "bos_token_id": 1,
         | 
| 13 | 
            +
              "embd_pdrop": 0.0,
         | 
| 14 | 
            +
              "eos_token_id": 32000,
         | 
| 15 | 
            +
              "hidden_act": "silu",
         | 
| 16 | 
            +
              "hidden_size": 3072,
         | 
| 17 | 
            +
              "initializer_range": 0.02,
         | 
| 18 | 
            +
              "intermediate_size": 8192,
         | 
| 19 | 
            +
              "max_position_embeddings": 4096,
         | 
| 20 | 
            +
              "model_type": "phi3",
         | 
| 21 | 
            +
              "num_attention_heads": 32,
         | 
| 22 | 
            +
              "num_hidden_layers": 32,
         | 
| 23 | 
            +
              "num_key_value_heads": 32,
         | 
| 24 | 
            +
              "original_max_position_embeddings": 4096,
         | 
| 25 | 
            +
              "pad_token_id": 32000,
         | 
| 26 | 
            +
              "resid_pdrop": 0.0,
         | 
| 27 | 
            +
              "rms_norm_eps": 1e-05,
         | 
| 28 | 
            +
              "rope_scaling": null,
         | 
| 29 | 
            +
              "rope_theta": 10000.0,
         | 
| 30 | 
            +
              "sliding_window": 2047,
         | 
| 31 | 
            +
              "tie_word_embeddings": false,
         | 
| 32 | 
            +
              "torch_dtype": "bfloat16",
         | 
| 33 | 
            +
              "transformers_version": "4.51.3",
         | 
| 34 | 
            +
              "use_cache": true,
         | 
| 35 | 
            +
              "vocab_size": 32064
         | 
| 36 | 
            +
            }
         | 
    	
        configuration_phi3.py
    ADDED
    
    | @@ -0,0 +1,227 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            # coding=utf-8
         | 
| 2 | 
            +
            # Copyright 2024 Microsoft and the HuggingFace Inc. team. All rights reserved.
         | 
| 3 | 
            +
            #
         | 
| 4 | 
            +
            # Licensed under the Apache License, Version 2.0 (the "License");
         | 
| 5 | 
            +
            # you may not use this file except in compliance with the License.
         | 
| 6 | 
            +
            # You may obtain a copy of the License at
         | 
| 7 | 
            +
            #
         | 
| 8 | 
            +
            #     http://www.apache.org/licenses/LICENSE-2.0
         | 
| 9 | 
            +
            #
         | 
| 10 | 
            +
            # Unless required by applicable law or agreed to in writing, software
         | 
| 11 | 
            +
            # distributed under the License is distributed on an "AS IS" BASIS,
         | 
| 12 | 
            +
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         | 
| 13 | 
            +
            # See the License for the specific language governing permissions and
         | 
| 14 | 
            +
            # limitations under the License.
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            """ Phi-3 model configuration"""
         | 
| 17 | 
            +
             | 
| 18 | 
            +
             | 
| 19 | 
            +
            from transformers.configuration_utils import PretrainedConfig
         | 
| 20 | 
            +
            from transformers.utils import logging
         | 
| 21 | 
            +
             | 
| 22 | 
            +
             | 
| 23 | 
            +
            logger = logging.get_logger(__name__)
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            PHI3_PRETRAINED_CONFIG_ARCHIVE_MAP = {
         | 
| 26 | 
            +
                "microsoft/Phi-3-mini-4k-instruct": "https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/resolve/main/config.json",
         | 
| 27 | 
            +
                "microsoft/Phi-3-mini-128k-instruct": "https://huggingface.co/microsoft/Phi-3-mini-128k-instruct/resolve/main/config.json",
         | 
| 28 | 
            +
            }
         | 
| 29 | 
            +
             | 
| 30 | 
            +
             | 
| 31 | 
            +
            class Phi3Config(PretrainedConfig):
         | 
| 32 | 
            +
                r"""
         | 
| 33 | 
            +
                This is the configuration class to store the configuration of a [`Phi3Model`]. It is used to instantiate a Phi-3
         | 
| 34 | 
            +
                model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
         | 
| 35 | 
            +
                defaults will yield a similar configuration to that of the
         | 
| 36 | 
            +
                [microsoft/Phi-3-mini-4k-instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct).
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
         | 
| 39 | 
            +
                documentation from [`PretrainedConfig`] for more information.
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                Args:
         | 
| 42 | 
            +
                    vocab_size (`int`, *optional*, defaults to 32064):
         | 
| 43 | 
            +
                        Vocabulary size of the Phi-3 model. Defines the number of different tokens that can be represented by the
         | 
| 44 | 
            +
                        `inputs_ids` passed when calling [`Phi3Model`].
         | 
| 45 | 
            +
                    hidden_size (`int`, *optional*, defaults to 3072):
         | 
| 46 | 
            +
                        Dimension of the hidden representations.
         | 
| 47 | 
            +
                    intermediate_size (`int`, *optional*, defaults to 8192):
         | 
| 48 | 
            +
                        Dimension of the MLP representations.
         | 
| 49 | 
            +
                    num_hidden_layers (`int`, *optional*, defaults to 32):
         | 
| 50 | 
            +
                        Number of hidden layers in the Transformer decoder.
         | 
| 51 | 
            +
                    num_attention_heads (`int`, *optional*, defaults to 32):
         | 
| 52 | 
            +
                        Number of attention heads for each attention layer in the Transformer decoder.
         | 
| 53 | 
            +
                    num_key_value_heads (`int`, *optional*):
         | 
| 54 | 
            +
                        This is the number of key_value heads that should be used to implement Grouped Query Attention. If
         | 
| 55 | 
            +
                        `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
         | 
| 56 | 
            +
                        `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
         | 
| 57 | 
            +
                        converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
         | 
| 58 | 
            +
                        by meanpooling all the original heads within that group. For more details checkout [this
         | 
| 59 | 
            +
                        paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
         | 
| 60 | 
            +
                        `num_attention_heads`.
         | 
| 61 | 
            +
                    resid_pdrop (`float`, *optional*, defaults to 0.0):
         | 
| 62 | 
            +
                        Dropout probability for mlp outputs.
         | 
| 63 | 
            +
                    embd_pdrop (`int`, *optional*, defaults to 0.0):
         | 
| 64 | 
            +
                        The dropout ratio for the embeddings.
         | 
| 65 | 
            +
                    attention_dropout (`float`, *optional*, defaults to 0.0):
         | 
| 66 | 
            +
                        The dropout ratio after computing the attention scores.
         | 
| 67 | 
            +
                    hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
         | 
| 68 | 
            +
                        The non-linear activation function (function or string) in the decoder.
         | 
| 69 | 
            +
                    max_position_embeddings (`int`, *optional*, defaults to 4096):
         | 
| 70 | 
            +
                        The maximum sequence length that this model might ever be used with.
         | 
| 71 | 
            +
                    original_max_position_embeddings (`int`, *optional*, defaults to 4096):
         | 
| 72 | 
            +
                        The maximum sequence length that this model was trained with. This is used to determine the size of the
         | 
| 73 | 
            +
                        original RoPE embeddings when using long scaling.
         | 
| 74 | 
            +
                    initializer_range (`float`, *optional*, defaults to 0.02):
         | 
| 75 | 
            +
                        The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
         | 
| 76 | 
            +
                    rms_norm_eps (`float`, *optional*, defaults to 1e-05):
         | 
| 77 | 
            +
                        The epsilon value used for the RMSNorm.
         | 
| 78 | 
            +
                    use_cache (`bool`, *optional*, defaults to `True`):
         | 
| 79 | 
            +
                        Whether or not the model should return the last key/values attentions (not used by all models). Only
         | 
| 80 | 
            +
                        relevant if `config.is_decoder=True`. Whether to tie weight embeddings or not.
         | 
| 81 | 
            +
                    tie_word_embeddings (`bool`, *optional*, defaults to `False`):
         | 
| 82 | 
            +
                        Whether to tie weight embeddings
         | 
| 83 | 
            +
                    rope_theta (`float`, *optional*, defaults to 10000.0):
         | 
| 84 | 
            +
                        The base period of the RoPE embeddings.
         | 
| 85 | 
            +
                    rope_scaling (`dict`, *optional*):
         | 
| 86 | 
            +
                        The scaling strategy for the RoPE embeddings. If `None`, no scaling is applied. If a dictionary, it must
         | 
| 87 | 
            +
                        contain the following keys: `type`, `short_factor` and `long_factor`. The `type` must be `longrope` and 
         | 
| 88 | 
            +
                        the `short_factor` and `long_factor` must be lists of numbers with the same length as the hidden size 
         | 
| 89 | 
            +
                        divided by the number of attention heads divided by 2.
         | 
| 90 | 
            +
                    bos_token_id (`int`, *optional*, defaults to 1):
         | 
| 91 | 
            +
                        The id of the "beginning-of-sequence" token.
         | 
| 92 | 
            +
                    eos_token_id (`int`, *optional*, defaults to 32000):
         | 
| 93 | 
            +
                        The id of the "end-of-sequence" token.
         | 
| 94 | 
            +
                    pad_token_id (`int`, *optional*, defaults to 32000):
         | 
| 95 | 
            +
                        The id of the padding token.
         | 
| 96 | 
            +
                    sliding_window (`int`, *optional*):
         | 
| 97 | 
            +
                        Sliding window attention window size. If `None`, no sliding window is applied.
         | 
| 98 | 
            +
             | 
| 99 | 
            +
                Example:
         | 
| 100 | 
            +
             | 
| 101 | 
            +
                ```python
         | 
| 102 | 
            +
                >>> from transformers import Phi3Model, Phi3Config
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                >>> # Initializing a Phi-3 style configuration
         | 
| 105 | 
            +
                >>> configuration = Phi3Config.from_pretrained("microsoft/Phi-3-mini-4k-instruct")
         | 
| 106 | 
            +
             | 
| 107 | 
            +
                >>> # Initializing a model from the configuration
         | 
| 108 | 
            +
                >>> model = Phi3Model(configuration)
         | 
| 109 | 
            +
             | 
| 110 | 
            +
                >>> # Accessing the model configuration
         | 
| 111 | 
            +
                >>> configuration = model.config
         | 
| 112 | 
            +
                ```"""
         | 
| 113 | 
            +
             | 
| 114 | 
            +
                model_type = "phi3"
         | 
| 115 | 
            +
                keys_to_ignore_at_inference = ["past_key_values"]
         | 
| 116 | 
            +
             | 
| 117 | 
            +
                def __init__(
         | 
| 118 | 
            +
                    self,
         | 
| 119 | 
            +
                    vocab_size=32064,
         | 
| 120 | 
            +
                    hidden_size=3072,
         | 
| 121 | 
            +
                    intermediate_size=8192,
         | 
| 122 | 
            +
                    num_hidden_layers=32,
         | 
| 123 | 
            +
                    num_attention_heads=32,
         | 
| 124 | 
            +
                    num_key_value_heads=None,
         | 
| 125 | 
            +
                    resid_pdrop=0.0,
         | 
| 126 | 
            +
                    embd_pdrop=0.0,
         | 
| 127 | 
            +
                    attention_dropout=0.0,
         | 
| 128 | 
            +
                    hidden_act="silu",
         | 
| 129 | 
            +
                    max_position_embeddings=4096,
         | 
| 130 | 
            +
                    original_max_position_embeddings=4096,
         | 
| 131 | 
            +
                    initializer_range=0.02,
         | 
| 132 | 
            +
                    rms_norm_eps=1e-5,
         | 
| 133 | 
            +
                    use_cache=True,
         | 
| 134 | 
            +
                    tie_word_embeddings=False,
         | 
| 135 | 
            +
                    rope_theta=10000.0,
         | 
| 136 | 
            +
                    rope_scaling=None,
         | 
| 137 | 
            +
                    bos_token_id=1,
         | 
| 138 | 
            +
                    eos_token_id=32000,
         | 
| 139 | 
            +
                    pad_token_id=32000,
         | 
| 140 | 
            +
                    sliding_window=None,
         | 
| 141 | 
            +
                    **kwargs,
         | 
| 142 | 
            +
                ):
         | 
| 143 | 
            +
                    self.vocab_size = vocab_size
         | 
| 144 | 
            +
                    self.hidden_size = hidden_size
         | 
| 145 | 
            +
                    self.intermediate_size = intermediate_size
         | 
| 146 | 
            +
                    self.num_hidden_layers = num_hidden_layers
         | 
| 147 | 
            +
                    self.num_attention_heads = num_attention_heads
         | 
| 148 | 
            +
             | 
| 149 | 
            +
                    if num_key_value_heads is None:
         | 
| 150 | 
            +
                        num_key_value_heads = num_attention_heads
         | 
| 151 | 
            +
             | 
| 152 | 
            +
                    self.num_key_value_heads = num_key_value_heads
         | 
| 153 | 
            +
                    self.resid_pdrop = resid_pdrop
         | 
| 154 | 
            +
                    self.embd_pdrop = embd_pdrop
         | 
| 155 | 
            +
                    self.attention_dropout = attention_dropout
         | 
| 156 | 
            +
                    self.hidden_act = hidden_act
         | 
| 157 | 
            +
                    self.max_position_embeddings = max_position_embeddings
         | 
| 158 | 
            +
                    self.original_max_position_embeddings = original_max_position_embeddings
         | 
| 159 | 
            +
                    self.initializer_range = initializer_range
         | 
| 160 | 
            +
                    self.rms_norm_eps = rms_norm_eps
         | 
| 161 | 
            +
                    self.use_cache = use_cache
         | 
| 162 | 
            +
                    self.rope_theta = rope_theta
         | 
| 163 | 
            +
                    self.rope_scaling = rope_scaling
         | 
| 164 | 
            +
                    self._rope_scaling_adjustment()
         | 
| 165 | 
            +
                    self._rope_scaling_validation()
         | 
| 166 | 
            +
                    self.sliding_window = sliding_window
         | 
| 167 | 
            +
             | 
| 168 | 
            +
                    super().__init__(
         | 
| 169 | 
            +
                        bos_token_id=bos_token_id,
         | 
| 170 | 
            +
                        eos_token_id=eos_token_id,
         | 
| 171 | 
            +
                        pad_token_id=pad_token_id,
         | 
| 172 | 
            +
                        tie_word_embeddings=tie_word_embeddings,
         | 
| 173 | 
            +
                        **kwargs,
         | 
| 174 | 
            +
                    )
         | 
| 175 | 
            +
             | 
| 176 | 
            +
                def _rope_scaling_adjustment(self):
         | 
| 177 | 
            +
                    """
         | 
| 178 | 
            +
                    Adjust the `type` of the `rope_scaling` configuration for backward compatibility.
         | 
| 179 | 
            +
                    """
         | 
| 180 | 
            +
                    if self.rope_scaling is None:
         | 
| 181 | 
            +
                        return
         | 
| 182 | 
            +
             | 
| 183 | 
            +
                    rope_scaling_type = self.rope_scaling.get("type", None)
         | 
| 184 | 
            +
             | 
| 185 | 
            +
                    # For backward compatibility if previous version used "su" or "yarn"
         | 
| 186 | 
            +
                    if rope_scaling_type is not None and rope_scaling_type in ["su", "yarn"]:
         | 
| 187 | 
            +
                        self.rope_scaling["type"] = "longrope"
         | 
| 188 | 
            +
             | 
| 189 | 
            +
                def _rope_scaling_validation(self):
         | 
| 190 | 
            +
                    """
         | 
| 191 | 
            +
                    Validate the `rope_scaling` configuration.
         | 
| 192 | 
            +
                    """
         | 
| 193 | 
            +
                    if self.rope_scaling is None:
         | 
| 194 | 
            +
                        return
         | 
| 195 | 
            +
             | 
| 196 | 
            +
                    if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) != 3:
         | 
| 197 | 
            +
                        raise ValueError(
         | 
| 198 | 
            +
                            "`rope_scaling` must be a dictionary with three fields, `type`, `short_factor` and `long_factor`, "
         | 
| 199 | 
            +
                            f"got {self.rope_scaling}"
         | 
| 200 | 
            +
                        )
         | 
| 201 | 
            +
                    rope_scaling_type = self.rope_scaling.get("type", None)
         | 
| 202 | 
            +
                    rope_scaling_short_factor = self.rope_scaling.get("short_factor", None)
         | 
| 203 | 
            +
                    rope_scaling_long_factor = self.rope_scaling.get("long_factor", None)
         | 
| 204 | 
            +
                    if rope_scaling_type is None or rope_scaling_type not in ["longrope"]:
         | 
| 205 | 
            +
                        raise ValueError(f"`rope_scaling`'s type field must be one of ['longrope'], got {rope_scaling_type}")
         | 
| 206 | 
            +
                    if not (
         | 
| 207 | 
            +
                        isinstance(rope_scaling_short_factor, list)
         | 
| 208 | 
            +
                        and all(isinstance(x, (int, float)) for x in rope_scaling_short_factor)
         | 
| 209 | 
            +
                    ):
         | 
| 210 | 
            +
                        raise ValueError(
         | 
| 211 | 
            +
                            f"`rope_scaling`'s short_factor field must be a list of numbers, got {rope_scaling_short_factor}"
         | 
| 212 | 
            +
                        )
         | 
| 213 | 
            +
                    if not len(rope_scaling_short_factor) == self.hidden_size // self.num_attention_heads // 2:
         | 
| 214 | 
            +
                        raise ValueError(
         | 
| 215 | 
            +
                            f"`rope_scaling`'s short_factor field must have length {self.hidden_size // self.num_attention_heads // 2}, got {len(rope_scaling_short_factor)}"
         | 
| 216 | 
            +
                        )
         | 
| 217 | 
            +
                    if not (
         | 
| 218 | 
            +
                        isinstance(rope_scaling_long_factor, list)
         | 
| 219 | 
            +
                        and all(isinstance(x, (int, float)) for x in rope_scaling_long_factor)
         | 
| 220 | 
            +
                    ):
         | 
| 221 | 
            +
                        raise ValueError(
         | 
| 222 | 
            +
                            f"`rope_scaling`'s long_factor field must be a list of numbers, got {rope_scaling_long_factor}"
         | 
| 223 | 
            +
                        )
         | 
| 224 | 
            +
                    if not len(rope_scaling_long_factor) == self.hidden_size // self.num_attention_heads // 2:
         | 
| 225 | 
            +
                        raise ValueError(
         | 
| 226 | 
            +
                            f"`rope_scaling`'s long_factor field must have length {self.hidden_size // self.num_attention_heads // 2}, got {len(rope_scaling_long_factor)}"
         | 
| 227 | 
            +
                        )
         | 
    	
        generation_config.json
    ADDED
    
    | @@ -0,0 +1,11 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_from_model_config": true,
         | 
| 3 | 
            +
              "bos_token_id": 1,
         | 
| 4 | 
            +
              "eos_token_id": [
         | 
| 5 | 
            +
                32000,
         | 
| 6 | 
            +
                32001,
         | 
| 7 | 
            +
                32007
         | 
| 8 | 
            +
              ],
         | 
| 9 | 
            +
              "pad_token_id": 32000,
         | 
| 10 | 
            +
              "transformers_version": "4.51.3"
         | 
| 11 | 
            +
            }
         | 
    	
        openvino_detokenizer.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:03033c0408d4ab0211cc6ebed4996eba143e9eb7ff87cce30d46beb111c411d7
         | 
| 3 | 
            +
            size 467235
         | 
    	
        openvino_detokenizer.xml
    ADDED
    
    | @@ -0,0 +1,353 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            <?xml version="1.0"?>
         | 
| 2 | 
            +
            <net name="detokenizer" version="11">
         | 
| 3 | 
            +
            	<layers>
         | 
| 4 | 
            +
            		<layer id="0" name="Parameter_158818" type="Parameter" version="opset1">
         | 
| 5 | 
            +
            			<data shape="?,?" element_type="i64" />
         | 
| 6 | 
            +
            			<output>
         | 
| 7 | 
            +
            				<port id="0" precision="I64" names="Parameter_158818">
         | 
| 8 | 
            +
            					<dim>-1</dim>
         | 
| 9 | 
            +
            					<dim>-1</dim>
         | 
| 10 | 
            +
            				</port>
         | 
| 11 | 
            +
            			</output>
         | 
| 12 | 
            +
            		</layer>
         | 
| 13 | 
            +
            		<layer id="1" name="Convert_159013" type="Convert" version="opset1">
         | 
| 14 | 
            +
            			<data destination_type="i32" />
         | 
| 15 | 
            +
            			<input>
         | 
| 16 | 
            +
            				<port id="0" precision="I64">
         | 
| 17 | 
            +
            					<dim>-1</dim>
         | 
| 18 | 
            +
            					<dim>-1</dim>
         | 
| 19 | 
            +
            				</port>
         | 
| 20 | 
            +
            			</input>
         | 
| 21 | 
            +
            			<output>
         | 
| 22 | 
            +
            				<port id="1" precision="I32">
         | 
| 23 | 
            +
            					<dim>-1</dim>
         | 
| 24 | 
            +
            					<dim>-1</dim>
         | 
| 25 | 
            +
            				</port>
         | 
| 26 | 
            +
            			</output>
         | 
| 27 | 
            +
            		</layer>
         | 
| 28 | 
            +
            		<layer id="2" name="Constant_158774" type="Const" version="opset1">
         | 
| 29 | 
            +
            			<data element_type="i32" shape="32011" offset="0" size="128044" />
         | 
| 30 | 
            +
            			<output>
         | 
| 31 | 
            +
            				<port id="0" precision="I32">
         | 
| 32 | 
            +
            					<dim>32011</dim>
         | 
| 33 | 
            +
            				</port>
         | 
| 34 | 
            +
            			</output>
         | 
| 35 | 
            +
            		</layer>
         | 
| 36 | 
            +
            		<layer id="3" name="Constant_158776" type="Const" version="opset1">
         | 
| 37 | 
            +
            			<data element_type="i32" shape="32011" offset="128044" size="128044" />
         | 
| 38 | 
            +
            			<output>
         | 
| 39 | 
            +
            				<port id="0" precision="I32">
         | 
| 40 | 
            +
            					<dim>32011</dim>
         | 
| 41 | 
            +
            				</port>
         | 
| 42 | 
            +
            			</output>
         | 
| 43 | 
            +
            		</layer>
         | 
| 44 | 
            +
            		<layer id="4" name="Constant_158778" type="Const" version="opset1">
         | 
| 45 | 
            +
            			<data element_type="u8" shape="211088" offset="256088" size="211088" />
         | 
| 46 | 
            +
            			<output>
         | 
| 47 | 
            +
            				<port id="0" precision="U8">
         | 
| 48 | 
            +
            					<dim>211088</dim>
         | 
| 49 | 
            +
            				</port>
         | 
| 50 | 
            +
            			</output>
         | 
| 51 | 
            +
            		</layer>
         | 
| 52 | 
            +
            		<layer id="5" name="Slice_158823" type="Const" version="opset1">
         | 
| 53 | 
            +
            			<data element_type="i32" shape="13" offset="467176" size="52" />
         | 
| 54 | 
            +
            			<output>
         | 
| 55 | 
            +
            				<port id="0" precision="I32">
         | 
| 56 | 
            +
            					<dim>13</dim>
         | 
| 57 | 
            +
            				</port>
         | 
| 58 | 
            +
            			</output>
         | 
| 59 | 
            +
            		</layer>
         | 
| 60 | 
            +
            		<layer id="6" name="VocabDecoder_158825" type="VocabDecoder" version="extension">
         | 
| 61 | 
            +
            			<data skip_tokens="" />
         | 
| 62 | 
            +
            			<input>
         | 
| 63 | 
            +
            				<port id="0" precision="I32">
         | 
| 64 | 
            +
            					<dim>-1</dim>
         | 
| 65 | 
            +
            					<dim>-1</dim>
         | 
| 66 | 
            +
            				</port>
         | 
| 67 | 
            +
            				<port id="1" precision="I32">
         | 
| 68 | 
            +
            					<dim>32011</dim>
         | 
| 69 | 
            +
            				</port>
         | 
| 70 | 
            +
            				<port id="2" precision="I32">
         | 
| 71 | 
            +
            					<dim>32011</dim>
         | 
| 72 | 
            +
            				</port>
         | 
| 73 | 
            +
            				<port id="3" precision="U8">
         | 
| 74 | 
            +
            					<dim>211088</dim>
         | 
| 75 | 
            +
            				</port>
         | 
| 76 | 
            +
            				<port id="4" precision="I32">
         | 
| 77 | 
            +
            					<dim>13</dim>
         | 
| 78 | 
            +
            				</port>
         | 
| 79 | 
            +
            			</input>
         | 
| 80 | 
            +
            			<output>
         | 
| 81 | 
            +
            				<port id="5" precision="I32">
         | 
| 82 | 
            +
            					<dim>-1</dim>
         | 
| 83 | 
            +
            				</port>
         | 
| 84 | 
            +
            				<port id="6" precision="I32">
         | 
| 85 | 
            +
            					<dim>-1</dim>
         | 
| 86 | 
            +
            				</port>
         | 
| 87 | 
            +
            				<port id="7" precision="I32">
         | 
| 88 | 
            +
            					<dim>-1</dim>
         | 
| 89 | 
            +
            				</port>
         | 
| 90 | 
            +
            				<port id="8" precision="I32">
         | 
| 91 | 
            +
            					<dim>-1</dim>
         | 
| 92 | 
            +
            				</port>
         | 
| 93 | 
            +
            				<port id="9" precision="U8">
         | 
| 94 | 
            +
            					<dim>-1</dim>
         | 
| 95 | 
            +
            				</port>
         | 
| 96 | 
            +
            			</output>
         | 
| 97 | 
            +
            		</layer>
         | 
| 98 | 
            +
            		<layer id="7" name="Constant_158827" type="Const" version="opset1">
         | 
| 99 | 
            +
            			<data element_type="u8" shape="3" offset="467228" size="3" />
         | 
| 100 | 
            +
            			<output>
         | 
| 101 | 
            +
            				<port id="0" precision="U8">
         | 
| 102 | 
            +
            					<dim>3</dim>
         | 
| 103 | 
            +
            				</port>
         | 
| 104 | 
            +
            			</output>
         | 
| 105 | 
            +
            		</layer>
         | 
| 106 | 
            +
            		<layer id="8" name="Constant_158829" type="Const" version="opset1">
         | 
| 107 | 
            +
            			<data element_type="u8" shape="1" offset="467231" size="1" />
         | 
| 108 | 
            +
            			<output>
         | 
| 109 | 
            +
            				<port id="0" precision="U8">
         | 
| 110 | 
            +
            					<dim>1</dim>
         | 
| 111 | 
            +
            				</port>
         | 
| 112 | 
            +
            			</output>
         | 
| 113 | 
            +
            		</layer>
         | 
| 114 | 
            +
            		<layer id="9" name="RegexNormalization_158830" type="RegexNormalization" version="extension">
         | 
| 115 | 
            +
            			<data global_replace="true" />
         | 
| 116 | 
            +
            			<input>
         | 
| 117 | 
            +
            				<port id="0" precision="I32">
         | 
| 118 | 
            +
            					<dim>-1</dim>
         | 
| 119 | 
            +
            				</port>
         | 
| 120 | 
            +
            				<port id="1" precision="I32">
         | 
| 121 | 
            +
            					<dim>-1</dim>
         | 
| 122 | 
            +
            				</port>
         | 
| 123 | 
            +
            				<port id="2" precision="U8">
         | 
| 124 | 
            +
            					<dim>-1</dim>
         | 
| 125 | 
            +
            				</port>
         | 
| 126 | 
            +
            				<port id="3" precision="U8">
         | 
| 127 | 
            +
            					<dim>3</dim>
         | 
| 128 | 
            +
            				</port>
         | 
| 129 | 
            +
            				<port id="4" precision="U8">
         | 
| 130 | 
            +
            					<dim>1</dim>
         | 
| 131 | 
            +
            				</port>
         | 
| 132 | 
            +
            			</input>
         | 
| 133 | 
            +
            			<output>
         | 
| 134 | 
            +
            				<port id="5" precision="I32">
         | 
| 135 | 
            +
            					<dim>-1</dim>
         | 
| 136 | 
            +
            				</port>
         | 
| 137 | 
            +
            				<port id="6" precision="I32">
         | 
| 138 | 
            +
            					<dim>-1</dim>
         | 
| 139 | 
            +
            				</port>
         | 
| 140 | 
            +
            				<port id="7" precision="U8">
         | 
| 141 | 
            +
            					<dim>-1</dim>
         | 
| 142 | 
            +
            				</port>
         | 
| 143 | 
            +
            			</output>
         | 
| 144 | 
            +
            		</layer>
         | 
| 145 | 
            +
            		<layer id="10" name="ByteFallback_158831" type="ByteFallback" version="extension">
         | 
| 146 | 
            +
            			<input>
         | 
| 147 | 
            +
            				<port id="0" precision="I32">
         | 
| 148 | 
            +
            					<dim>-1</dim>
         | 
| 149 | 
            +
            				</port>
         | 
| 150 | 
            +
            				<port id="1" precision="I32">
         | 
| 151 | 
            +
            					<dim>-1</dim>
         | 
| 152 | 
            +
            				</port>
         | 
| 153 | 
            +
            				<port id="2" precision="U8">
         | 
| 154 | 
            +
            					<dim>-1</dim>
         | 
| 155 | 
            +
            				</port>
         | 
| 156 | 
            +
            			</input>
         | 
| 157 | 
            +
            			<output>
         | 
| 158 | 
            +
            				<port id="3" precision="I32">
         | 
| 159 | 
            +
            					<dim>-1</dim>
         | 
| 160 | 
            +
            				</port>
         | 
| 161 | 
            +
            				<port id="4" precision="I32">
         | 
| 162 | 
            +
            					<dim>-1</dim>
         | 
| 163 | 
            +
            				</port>
         | 
| 164 | 
            +
            				<port id="5" precision="U8">
         | 
| 165 | 
            +
            					<dim>-1</dim>
         | 
| 166 | 
            +
            				</port>
         | 
| 167 | 
            +
            			</output>
         | 
| 168 | 
            +
            		</layer>
         | 
| 169 | 
            +
            		<layer id="11" name="FuzeRagged_158832" type="FuzeRagged" version="extension">
         | 
| 170 | 
            +
            			<input>
         | 
| 171 | 
            +
            				<port id="0" precision="I32">
         | 
| 172 | 
            +
            					<dim>-1</dim>
         | 
| 173 | 
            +
            				</port>
         | 
| 174 | 
            +
            				<port id="1" precision="I32">
         | 
| 175 | 
            +
            					<dim>-1</dim>
         | 
| 176 | 
            +
            				</port>
         | 
| 177 | 
            +
            				<port id="2" precision="I32">
         | 
| 178 | 
            +
            					<dim>-1</dim>
         | 
| 179 | 
            +
            				</port>
         | 
| 180 | 
            +
            				<port id="3" precision="I32">
         | 
| 181 | 
            +
            					<dim>-1</dim>
         | 
| 182 | 
            +
            				</port>
         | 
| 183 | 
            +
            			</input>
         | 
| 184 | 
            +
            			<output>
         | 
| 185 | 
            +
            				<port id="4" precision="I32">
         | 
| 186 | 
            +
            					<dim>-1</dim>
         | 
| 187 | 
            +
            				</port>
         | 
| 188 | 
            +
            				<port id="5" precision="I32">
         | 
| 189 | 
            +
            					<dim>-1</dim>
         | 
| 190 | 
            +
            				</port>
         | 
| 191 | 
            +
            			</output>
         | 
| 192 | 
            +
            		</layer>
         | 
| 193 | 
            +
            		<layer id="12" name="Constant_158834" type="Const" version="opset1">
         | 
| 194 | 
            +
            			<data element_type="u8" shape="2" offset="467232" size="2" />
         | 
| 195 | 
            +
            			<output>
         | 
| 196 | 
            +
            				<port id="0" precision="U8">
         | 
| 197 | 
            +
            					<dim>2</dim>
         | 
| 198 | 
            +
            				</port>
         | 
| 199 | 
            +
            			</output>
         | 
| 200 | 
            +
            		</layer>
         | 
| 201 | 
            +
            		<layer id="13" name="Constant_158836" type="Const" version="opset1">
         | 
| 202 | 
            +
            			<data element_type="u8" shape="0" offset="467234" size="1" />
         | 
| 203 | 
            +
            			<output>
         | 
| 204 | 
            +
            				<port id="0" precision="U8">
         | 
| 205 | 
            +
            					<dim>0</dim>
         | 
| 206 | 
            +
            				</port>
         | 
| 207 | 
            +
            			</output>
         | 
| 208 | 
            +
            		</layer>
         | 
| 209 | 
            +
            		<layer id="14" name="RegexNormalization_158837" type="RegexNormalization" version="extension">
         | 
| 210 | 
            +
            			<data global_replace="true" />
         | 
| 211 | 
            +
            			<input>
         | 
| 212 | 
            +
            				<port id="0" precision="I32">
         | 
| 213 | 
            +
            					<dim>-1</dim>
         | 
| 214 | 
            +
            				</port>
         | 
| 215 | 
            +
            				<port id="1" precision="I32">
         | 
| 216 | 
            +
            					<dim>-1</dim>
         | 
| 217 | 
            +
            				</port>
         | 
| 218 | 
            +
            				<port id="2" precision="U8">
         | 
| 219 | 
            +
            					<dim>-1</dim>
         | 
| 220 | 
            +
            				</port>
         | 
| 221 | 
            +
            				<port id="3" precision="U8">
         | 
| 222 | 
            +
            					<dim>2</dim>
         | 
| 223 | 
            +
            				</port>
         | 
| 224 | 
            +
            				<port id="4" precision="U8">
         | 
| 225 | 
            +
            					<dim>0</dim>
         | 
| 226 | 
            +
            				</port>
         | 
| 227 | 
            +
            			</input>
         | 
| 228 | 
            +
            			<output>
         | 
| 229 | 
            +
            				<port id="5" precision="I32">
         | 
| 230 | 
            +
            					<dim>-1</dim>
         | 
| 231 | 
            +
            				</port>
         | 
| 232 | 
            +
            				<port id="6" precision="I32">
         | 
| 233 | 
            +
            					<dim>-1</dim>
         | 
| 234 | 
            +
            				</port>
         | 
| 235 | 
            +
            				<port id="7" precision="U8">
         | 
| 236 | 
            +
            					<dim>-1</dim>
         | 
| 237 | 
            +
            				</port>
         | 
| 238 | 
            +
            			</output>
         | 
| 239 | 
            +
            		</layer>
         | 
| 240 | 
            +
            		<layer id="15" name="UTF8Validate_158838" type="UTF8Validate" version="extension">
         | 
| 241 | 
            +
            			<data replace_mode="true" />
         | 
| 242 | 
            +
            			<input>
         | 
| 243 | 
            +
            				<port id="0" precision="I32">
         | 
| 244 | 
            +
            					<dim>-1</dim>
         | 
| 245 | 
            +
            				</port>
         | 
| 246 | 
            +
            				<port id="1" precision="I32">
         | 
| 247 | 
            +
            					<dim>-1</dim>
         | 
| 248 | 
            +
            				</port>
         | 
| 249 | 
            +
            				<port id="2" precision="U8">
         | 
| 250 | 
            +
            					<dim>-1</dim>
         | 
| 251 | 
            +
            				</port>
         | 
| 252 | 
            +
            			</input>
         | 
| 253 | 
            +
            			<output>
         | 
| 254 | 
            +
            				<port id="3" precision="I32">
         | 
| 255 | 
            +
            					<dim>-1</dim>
         | 
| 256 | 
            +
            				</port>
         | 
| 257 | 
            +
            				<port id="4" precision="I32">
         | 
| 258 | 
            +
            					<dim>-1</dim>
         | 
| 259 | 
            +
            				</port>
         | 
| 260 | 
            +
            				<port id="5" precision="U8">
         | 
| 261 | 
            +
            					<dim>-1</dim>
         | 
| 262 | 
            +
            				</port>
         | 
| 263 | 
            +
            			</output>
         | 
| 264 | 
            +
            		</layer>
         | 
| 265 | 
            +
            		<layer id="16" name="StringTensorPack_158839" type="StringTensorPack" version="opset15">
         | 
| 266 | 
            +
            			<input>
         | 
| 267 | 
            +
            				<port id="0" precision="I32">
         | 
| 268 | 
            +
            					<dim>-1</dim>
         | 
| 269 | 
            +
            				</port>
         | 
| 270 | 
            +
            				<port id="1" precision="I32">
         | 
| 271 | 
            +
            					<dim>-1</dim>
         | 
| 272 | 
            +
            				</port>
         | 
| 273 | 
            +
            				<port id="2" precision="U8">
         | 
| 274 | 
            +
            					<dim>-1</dim>
         | 
| 275 | 
            +
            				</port>
         | 
| 276 | 
            +
            			</input>
         | 
| 277 | 
            +
            			<output>
         | 
| 278 | 
            +
            				<port id="3" precision="STRING" names="Result_158840,string_output">
         | 
| 279 | 
            +
            					<dim>-1</dim>
         | 
| 280 | 
            +
            				</port>
         | 
| 281 | 
            +
            			</output>
         | 
| 282 | 
            +
            		</layer>
         | 
| 283 | 
            +
            		<layer id="17" name="Result_158840" type="Result" version="opset1" output_names="Result_158840,string_output">
         | 
| 284 | 
            +
            			<input>
         | 
| 285 | 
            +
            				<port id="0" precision="STRING">
         | 
| 286 | 
            +
            					<dim>-1</dim>
         | 
| 287 | 
            +
            				</port>
         | 
| 288 | 
            +
            			</input>
         | 
| 289 | 
            +
            		</layer>
         | 
| 290 | 
            +
            	</layers>
         | 
| 291 | 
            +
            	<edges>
         | 
| 292 | 
            +
            		<edge from-layer="0" from-port="0" to-layer="1" to-port="0" />
         | 
| 293 | 
            +
            		<edge from-layer="1" from-port="1" to-layer="6" to-port="0" />
         | 
| 294 | 
            +
            		<edge from-layer="2" from-port="0" to-layer="6" to-port="1" />
         | 
| 295 | 
            +
            		<edge from-layer="3" from-port="0" to-layer="6" to-port="2" />
         | 
| 296 | 
            +
            		<edge from-layer="4" from-port="0" to-layer="6" to-port="3" />
         | 
| 297 | 
            +
            		<edge from-layer="5" from-port="0" to-layer="6" to-port="4" />
         | 
| 298 | 
            +
            		<edge from-layer="6" from-port="6" to-layer="11" to-port="1" />
         | 
| 299 | 
            +
            		<edge from-layer="6" from-port="5" to-layer="11" to-port="0" />
         | 
| 300 | 
            +
            		<edge from-layer="6" from-port="8" to-layer="9" to-port="1" />
         | 
| 301 | 
            +
            		<edge from-layer="6" from-port="7" to-layer="9" to-port="0" />
         | 
| 302 | 
            +
            		<edge from-layer="6" from-port="9" to-layer="9" to-port="2" />
         | 
| 303 | 
            +
            		<edge from-layer="7" from-port="0" to-layer="9" to-port="3" />
         | 
| 304 | 
            +
            		<edge from-layer="8" from-port="0" to-layer="9" to-port="4" />
         | 
| 305 | 
            +
            		<edge from-layer="9" from-port="5" to-layer="10" to-port="0" />
         | 
| 306 | 
            +
            		<edge from-layer="9" from-port="6" to-layer="10" to-port="1" />
         | 
| 307 | 
            +
            		<edge from-layer="9" from-port="7" to-layer="10" to-port="2" />
         | 
| 308 | 
            +
            		<edge from-layer="10" from-port="3" to-layer="11" to-port="2" />
         | 
| 309 | 
            +
            		<edge from-layer="10" from-port="4" to-layer="11" to-port="3" />
         | 
| 310 | 
            +
            		<edge from-layer="10" from-port="5" to-layer="14" to-port="2" />
         | 
| 311 | 
            +
            		<edge from-layer="11" from-port="5" to-layer="14" to-port="1" />
         | 
| 312 | 
            +
            		<edge from-layer="11" from-port="4" to-layer="14" to-port="0" />
         | 
| 313 | 
            +
            		<edge from-layer="12" from-port="0" to-layer="14" to-port="3" />
         | 
| 314 | 
            +
            		<edge from-layer="13" from-port="0" to-layer="14" to-port="4" />
         | 
| 315 | 
            +
            		<edge from-layer="14" from-port="5" to-layer="15" to-port="0" />
         | 
| 316 | 
            +
            		<edge from-layer="14" from-port="6" to-layer="15" to-port="1" />
         | 
| 317 | 
            +
            		<edge from-layer="14" from-port="7" to-layer="15" to-port="2" />
         | 
| 318 | 
            +
            		<edge from-layer="15" from-port="3" to-layer="16" to-port="0" />
         | 
| 319 | 
            +
            		<edge from-layer="15" from-port="4" to-layer="16" to-port="1" />
         | 
| 320 | 
            +
            		<edge from-layer="15" from-port="5" to-layer="16" to-port="2" />
         | 
| 321 | 
            +
            		<edge from-layer="16" from-port="3" to-layer="17" to-port="0" />
         | 
| 322 | 
            +
            	</edges>
         | 
| 323 | 
            +
            	<rt_info>
         | 
| 324 | 
            +
            		<add_attention_mask value="True" />
         | 
| 325 | 
            +
            		<add_prefix_space />
         | 
| 326 | 
            +
            		<add_special_tokens value="True" />
         | 
| 327 | 
            +
            		<bos_token_id value="1" />
         | 
| 328 | 
            +
            		<chat_template value="{% for message in messages %}{% if message['role'] == 'system' %}{{'<|system|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'user' %}{{'<|user|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>
' + message['content'] + '<|end|>
'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>
' }}{% else %}{{ eos_token }}{% endif %}" />
         | 
| 329 | 
            +
            		<clean_up_tokenization_spaces />
         | 
| 330 | 
            +
            		<detokenizer_input_type value="i64" />
         | 
| 331 | 
            +
            		<eos_token_id value="32000" />
         | 
| 332 | 
            +
            		<handle_special_tokens_with_re />
         | 
| 333 | 
            +
            		<max_length />
         | 
| 334 | 
            +
            		<number_of_inputs value="1" />
         | 
| 335 | 
            +
            		<openvino_tokenizers_version value="2025.2.0.0-566-85be884a69f" />
         | 
| 336 | 
            +
            		<openvino_version value="2025.2.0-19136-649eec15cfe-releases/2025/2" />
         | 
| 337 | 
            +
            		<original_post_processor_template value="{"type": "TemplateProcessing", "single": [{"Sequence": {"id": "A", "type_id": 0}}], "pair": [{"Sequence": {"id": "A", "type_id": 0}}, {"Sequence": {"id": "B", "type_id": 1}}], "special_tokens": {}}" />
         | 
| 338 | 
            +
            		<original_tokenizer_class value="<class 'transformers.models.llama.tokenization_llama_fast.LlamaTokenizerFast'>" />
         | 
| 339 | 
            +
            		<pad_token_id value="32000" />
         | 
| 340 | 
            +
            		<processed_post_processor_template value="{"single": {"ids": [-1], "type_ids": [0]}, "pair": {"ids": [-1, -2], "type_ids": [0, 1]}}" />
         | 
| 341 | 
            +
            		<sentencepiece_version value="0.2.0" />
         | 
| 342 | 
            +
            		<skip_special_tokens value="True" />
         | 
| 343 | 
            +
            		<streaming_detokenizer value="False" />
         | 
| 344 | 
            +
            		<tiktoken_version value="0.9.0" />
         | 
| 345 | 
            +
            		<tokenizer_output_type value="i64" />
         | 
| 346 | 
            +
            		<tokenizers_version value="0.21.1" />
         | 
| 347 | 
            +
            		<transformers_version value="4.51.3" />
         | 
| 348 | 
            +
            		<use_max_padding value="False" />
         | 
| 349 | 
            +
            		<use_sentencepiece_backend value="False" />
         | 
| 350 | 
            +
            		<utf8_replace_mode value="replace" />
         | 
| 351 | 
            +
            		<with_detokenizer value="True" />
         | 
| 352 | 
            +
            	</rt_info>
         | 
| 353 | 
            +
            </net>
         | 
    	
        openvino_model.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:032302e52899ed3d85cd2057c36a40ccc55ca835252414b0bb0ebdeaf0beaeb3
         | 
| 3 | 
            +
            size 2011963692
         | 
    	
        openvino_model.xml
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        openvino_tokenizer.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ee7b1340b861821b381655739018a8f45a67531fd4362c76191c5aada08eb29b
         | 
| 3 | 
            +
            size 1881992
         | 
    	
        openvino_tokenizer.xml
    ADDED
    
    | @@ -0,0 +1,795 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            <?xml version="1.0"?>
         | 
| 2 | 
            +
            <net name="tokenizer" version="11">
         | 
| 3 | 
            +
            	<layers>
         | 
| 4 | 
            +
            		<layer id="0" name="Parameter_158686" type="Parameter" version="opset1">
         | 
| 5 | 
            +
            			<data shape="?" element_type="string" />
         | 
| 6 | 
            +
            			<output>
         | 
| 7 | 
            +
            				<port id="0" precision="STRING" names="Parameter_158686">
         | 
| 8 | 
            +
            					<dim>-1</dim>
         | 
| 9 | 
            +
            				</port>
         | 
| 10 | 
            +
            			</output>
         | 
| 11 | 
            +
            		</layer>
         | 
| 12 | 
            +
            		<layer id="1" name="Constant_158692" type="Const" version="opset1">
         | 
| 13 | 
            +
            			<data element_type="i64" shape="" offset="0" size="8" />
         | 
| 14 | 
            +
            			<output>
         | 
| 15 | 
            +
            				<port id="0" precision="I64" />
         | 
| 16 | 
            +
            			</output>
         | 
| 17 | 
            +
            		</layer>
         | 
| 18 | 
            +
            		<layer id="2" name="StringTensorUnpack_158687" type="StringTensorUnpack" version="opset15">
         | 
| 19 | 
            +
            			<input>
         | 
| 20 | 
            +
            				<port id="0" precision="STRING">
         | 
| 21 | 
            +
            					<dim>-1</dim>
         | 
| 22 | 
            +
            				</port>
         | 
| 23 | 
            +
            			</input>
         | 
| 24 | 
            +
            			<output>
         | 
| 25 | 
            +
            				<port id="1" precision="I32">
         | 
| 26 | 
            +
            					<dim>-1</dim>
         | 
| 27 | 
            +
            				</port>
         | 
| 28 | 
            +
            				<port id="2" precision="I32">
         | 
| 29 | 
            +
            					<dim>-1</dim>
         | 
| 30 | 
            +
            				</port>
         | 
| 31 | 
            +
            				<port id="3" precision="U8">
         | 
| 32 | 
            +
            					<dim>-1</dim>
         | 
| 33 | 
            +
            				</port>
         | 
| 34 | 
            +
            			</output>
         | 
| 35 | 
            +
            		</layer>
         | 
| 36 | 
            +
            		<layer id="3" name="ShapeOf_158688" type="ShapeOf" version="opset3">
         | 
| 37 | 
            +
            			<data output_type="i64" />
         | 
| 38 | 
            +
            			<input>
         | 
| 39 | 
            +
            				<port id="0" precision="I32">
         | 
| 40 | 
            +
            					<dim>-1</dim>
         | 
| 41 | 
            +
            				</port>
         | 
| 42 | 
            +
            			</input>
         | 
| 43 | 
            +
            			<output>
         | 
| 44 | 
            +
            				<port id="1" precision="I64">
         | 
| 45 | 
            +
            					<dim>1</dim>
         | 
| 46 | 
            +
            				</port>
         | 
| 47 | 
            +
            			</output>
         | 
| 48 | 
            +
            		</layer>
         | 
| 49 | 
            +
            		<layer id="4" name="Constant_158689" type="Const" version="opset1">
         | 
| 50 | 
            +
            			<data element_type="i64" shape="" offset="0" size="8" />
         | 
| 51 | 
            +
            			<output>
         | 
| 52 | 
            +
            				<port id="0" precision="I64" />
         | 
| 53 | 
            +
            			</output>
         | 
| 54 | 
            +
            		</layer>
         | 
| 55 | 
            +
            		<layer id="5" name="Constant_158690" type="Const" version="opset1">
         | 
| 56 | 
            +
            			<data element_type="i64" shape="" offset="0" size="8" />
         | 
| 57 | 
            +
            			<output>
         | 
| 58 | 
            +
            				<port id="0" precision="I64" />
         | 
| 59 | 
            +
            			</output>
         | 
| 60 | 
            +
            		</layer>
         | 
| 61 | 
            +
            		<layer id="6" name="Gather_158691" type="Gather" version="opset8">
         | 
| 62 | 
            +
            			<data batch_dims="0" />
         | 
| 63 | 
            +
            			<input>
         | 
| 64 | 
            +
            				<port id="0" precision="I64">
         | 
| 65 | 
            +
            					<dim>1</dim>
         | 
| 66 | 
            +
            				</port>
         | 
| 67 | 
            +
            				<port id="1" precision="I64" />
         | 
| 68 | 
            +
            				<port id="2" precision="I64" />
         | 
| 69 | 
            +
            			</input>
         | 
| 70 | 
            +
            			<output>
         | 
| 71 | 
            +
            				<port id="3" precision="I64" />
         | 
| 72 | 
            +
            			</output>
         | 
| 73 | 
            +
            		</layer>
         | 
| 74 | 
            +
            		<layer id="7" name="Constant_158693" type="Const" version="opset1">
         | 
| 75 | 
            +
            			<data element_type="i64" shape="" offset="8" size="8" />
         | 
| 76 | 
            +
            			<output>
         | 
| 77 | 
            +
            				<port id="0" precision="I64" />
         | 
| 78 | 
            +
            			</output>
         | 
| 79 | 
            +
            		</layer>
         | 
| 80 | 
            +
            		<layer id="8" name="Range_158694" type="Range" version="opset4">
         | 
| 81 | 
            +
            			<data output_type="i32" />
         | 
| 82 | 
            +
            			<input>
         | 
| 83 | 
            +
            				<port id="0" precision="I64" />
         | 
| 84 | 
            +
            				<port id="1" precision="I64" />
         | 
| 85 | 
            +
            				<port id="2" precision="I64" />
         | 
| 86 | 
            +
            			</input>
         | 
| 87 | 
            +
            			<output>
         | 
| 88 | 
            +
            				<port id="3" precision="I32">
         | 
| 89 | 
            +
            					<dim>-1</dim>
         | 
| 90 | 
            +
            				</port>
         | 
| 91 | 
            +
            			</output>
         | 
| 92 | 
            +
            		</layer>
         | 
| 93 | 
            +
            		<layer id="9" name="Constant_158695" type="Const" version="opset1">
         | 
| 94 | 
            +
            			<data element_type="i64" shape="" offset="8" size="8" />
         | 
| 95 | 
            +
            			<output>
         | 
| 96 | 
            +
            				<port id="0" precision="I64" />
         | 
| 97 | 
            +
            			</output>
         | 
| 98 | 
            +
            		</layer>
         | 
| 99 | 
            +
            		<layer id="10" name="Constant_158696" type="Const" version="opset1">
         | 
| 100 | 
            +
            			<data element_type="i64" shape="" offset="8" size="8" />
         | 
| 101 | 
            +
            			<output>
         | 
| 102 | 
            +
            				<port id="0" precision="I64" />
         | 
| 103 | 
            +
            			</output>
         | 
| 104 | 
            +
            		</layer>
         | 
| 105 | 
            +
            		<layer id="11" name="Add_158697" type="Add" version="opset1">
         | 
| 106 | 
            +
            			<data auto_broadcast="numpy" />
         | 
| 107 | 
            +
            			<input>
         | 
| 108 | 
            +
            				<port id="0" precision="I64" />
         | 
| 109 | 
            +
            				<port id="1" precision="I64" />
         | 
| 110 | 
            +
            			</input>
         | 
| 111 | 
            +
            			<output>
         | 
| 112 | 
            +
            				<port id="2" precision="I64" />
         | 
| 113 | 
            +
            			</output>
         | 
| 114 | 
            +
            		</layer>
         | 
| 115 | 
            +
            		<layer id="12" name="Constant_158698" type="Const" version="opset1">
         | 
| 116 | 
            +
            			<data element_type="i64" shape="" offset="8" size="8" />
         | 
| 117 | 
            +
            			<output>
         | 
| 118 | 
            +
            				<port id="0" precision="I64" />
         | 
| 119 | 
            +
            			</output>
         | 
| 120 | 
            +
            		</layer>
         | 
| 121 | 
            +
            		<layer id="13" name="Range_158699" type="Range" version="opset4">
         | 
| 122 | 
            +
            			<data output_type="i32" />
         | 
| 123 | 
            +
            			<input>
         | 
| 124 | 
            +
            				<port id="0" precision="I64" />
         | 
| 125 | 
            +
            				<port id="1" precision="I64" />
         | 
| 126 | 
            +
            				<port id="2" precision="I64" />
         | 
| 127 | 
            +
            			</input>
         | 
| 128 | 
            +
            			<output>
         | 
| 129 | 
            +
            				<port id="3" precision="I32">
         | 
| 130 | 
            +
            					<dim>-1</dim>
         | 
| 131 | 
            +
            				</port>
         | 
| 132 | 
            +
            			</output>
         | 
| 133 | 
            +
            		</layer>
         | 
| 134 | 
            +
            		<layer id="14" name="Constant_158761" type="Const" version="opset1">
         | 
| 135 | 
            +
            			<data element_type="u8" shape="328" offset="16" size="328" />
         | 
| 136 | 
            +
            			<output>
         | 
| 137 | 
            +
            				<port id="0" precision="U8">
         | 
| 138 | 
            +
            					<dim>328</dim>
         | 
| 139 | 
            +
            				</port>
         | 
| 140 | 
            +
            			</output>
         | 
| 141 | 
            +
            		</layer>
         | 
| 142 | 
            +
            		<layer id="15" name="SpecialTokensSplit_158762" type="SpecialTokensSplit" version="extension">
         | 
| 143 | 
            +
            			<input>
         | 
| 144 | 
            +
            				<port id="0" precision="I32">
         | 
| 145 | 
            +
            					<dim>-1</dim>
         | 
| 146 | 
            +
            				</port>
         | 
| 147 | 
            +
            				<port id="1" precision="I32">
         | 
| 148 | 
            +
            					<dim>-1</dim>
         | 
| 149 | 
            +
            				</port>
         | 
| 150 | 
            +
            				<port id="2" precision="I32">
         | 
| 151 | 
            +
            					<dim>-1</dim>
         | 
| 152 | 
            +
            				</port>
         | 
| 153 | 
            +
            				<port id="3" precision="I32">
         | 
| 154 | 
            +
            					<dim>-1</dim>
         | 
| 155 | 
            +
            				</port>
         | 
| 156 | 
            +
            				<port id="4" precision="U8">
         | 
| 157 | 
            +
            					<dim>-1</dim>
         | 
| 158 | 
            +
            				</port>
         | 
| 159 | 
            +
            				<port id="5" precision="U8">
         | 
| 160 | 
            +
            					<dim>328</dim>
         | 
| 161 | 
            +
            				</port>
         | 
| 162 | 
            +
            			</input>
         | 
| 163 | 
            +
            			<output>
         | 
| 164 | 
            +
            				<port id="6" precision="I32">
         | 
| 165 | 
            +
            					<dim>-1</dim>
         | 
| 166 | 
            +
            				</port>
         | 
| 167 | 
            +
            				<port id="7" precision="I32">
         | 
| 168 | 
            +
            					<dim>-1</dim>
         | 
| 169 | 
            +
            				</port>
         | 
| 170 | 
            +
            				<port id="8" precision="I32">
         | 
| 171 | 
            +
            					<dim>-1</dim>
         | 
| 172 | 
            +
            				</port>
         | 
| 173 | 
            +
            				<port id="9" precision="I32">
         | 
| 174 | 
            +
            					<dim>-1</dim>
         | 
| 175 | 
            +
            				</port>
         | 
| 176 | 
            +
            				<port id="10" precision="U8">
         | 
| 177 | 
            +
            					<dim>-1</dim>
         | 
| 178 | 
            +
            				</port>
         | 
| 179 | 
            +
            				<port id="11" precision="BOOL">
         | 
| 180 | 
            +
            					<dim>-1</dim>
         | 
| 181 | 
            +
            				</port>
         | 
| 182 | 
            +
            			</output>
         | 
| 183 | 
            +
            		</layer>
         | 
| 184 | 
            +
            		<layer id="16" name="Constant_158764" type="Const" version="opset1">
         | 
| 185 | 
            +
            			<data element_type="u8" shape="13" offset="344" size="13" />
         | 
| 186 | 
            +
            			<output>
         | 
| 187 | 
            +
            				<port id="0" precision="U8">
         | 
| 188 | 
            +
            					<dim>13</dim>
         | 
| 189 | 
            +
            				</port>
         | 
| 190 | 
            +
            			</output>
         | 
| 191 | 
            +
            		</layer>
         | 
| 192 | 
            +
            		<layer id="17" name="Constant_158766" type="Const" version="opset1">
         | 
| 193 | 
            +
            			<data element_type="u8" shape="5" offset="357" size="5" />
         | 
| 194 | 
            +
            			<output>
         | 
| 195 | 
            +
            				<port id="0" precision="U8">
         | 
| 196 | 
            +
            					<dim>5</dim>
         | 
| 197 | 
            +
            				</port>
         | 
| 198 | 
            +
            			</output>
         | 
| 199 | 
            +
            		</layer>
         | 
| 200 | 
            +
            		<layer id="18" name="RegexNormalization_158767" type="RegexNormalization" version="extension">
         | 
| 201 | 
            +
            			<data global_replace="true" />
         | 
| 202 | 
            +
            			<input>
         | 
| 203 | 
            +
            				<port id="0" precision="I32">
         | 
| 204 | 
            +
            					<dim>-1</dim>
         | 
| 205 | 
            +
            				</port>
         | 
| 206 | 
            +
            				<port id="1" precision="I32">
         | 
| 207 | 
            +
            					<dim>-1</dim>
         | 
| 208 | 
            +
            				</port>
         | 
| 209 | 
            +
            				<port id="2" precision="U8">
         | 
| 210 | 
            +
            					<dim>-1</dim>
         | 
| 211 | 
            +
            				</port>
         | 
| 212 | 
            +
            				<port id="3" precision="BOOL">
         | 
| 213 | 
            +
            					<dim>-1</dim>
         | 
| 214 | 
            +
            				</port>
         | 
| 215 | 
            +
            				<port id="4" precision="U8">
         | 
| 216 | 
            +
            					<dim>13</dim>
         | 
| 217 | 
            +
            				</port>
         | 
| 218 | 
            +
            				<port id="5" precision="U8">
         | 
| 219 | 
            +
            					<dim>5</dim>
         | 
| 220 | 
            +
            				</port>
         | 
| 221 | 
            +
            			</input>
         | 
| 222 | 
            +
            			<output>
         | 
| 223 | 
            +
            				<port id="6" precision="I32">
         | 
| 224 | 
            +
            					<dim>-1</dim>
         | 
| 225 | 
            +
            				</port>
         | 
| 226 | 
            +
            				<port id="7" precision="I32">
         | 
| 227 | 
            +
            					<dim>-1</dim>
         | 
| 228 | 
            +
            				</port>
         | 
| 229 | 
            +
            				<port id="8" precision="U8">
         | 
| 230 | 
            +
            					<dim>-1</dim>
         | 
| 231 | 
            +
            				</port>
         | 
| 232 | 
            +
            				<port id="9" precision="BOOL">
         | 
| 233 | 
            +
            					<dim>-1</dim>
         | 
| 234 | 
            +
            				</port>
         | 
| 235 | 
            +
            			</output>
         | 
| 236 | 
            +
            		</layer>
         | 
| 237 | 
            +
            		<layer id="19" name="Constant_158769" type="Const" version="opset1">
         | 
| 238 | 
            +
            			<data element_type="u8" shape="1" offset="362" size="1" />
         | 
| 239 | 
            +
            			<output>
         | 
| 240 | 
            +
            				<port id="0" precision="U8">
         | 
| 241 | 
            +
            					<dim>1</dim>
         | 
| 242 | 
            +
            				</port>
         | 
| 243 | 
            +
            			</output>
         | 
| 244 | 
            +
            		</layer>
         | 
| 245 | 
            +
            		<layer id="20" name="Constant_158771" type="Const" version="opset1">
         | 
| 246 | 
            +
            			<data element_type="u8" shape="3" offset="363" size="3" />
         | 
| 247 | 
            +
            			<output>
         | 
| 248 | 
            +
            				<port id="0" precision="U8">
         | 
| 249 | 
            +
            					<dim>3</dim>
         | 
| 250 | 
            +
            				</port>
         | 
| 251 | 
            +
            			</output>
         | 
| 252 | 
            +
            		</layer>
         | 
| 253 | 
            +
            		<layer id="21" name="RegexNormalization_158772" type="RegexNormalization" version="extension">
         | 
| 254 | 
            +
            			<data global_replace="true" />
         | 
| 255 | 
            +
            			<input>
         | 
| 256 | 
            +
            				<port id="0" precision="I32">
         | 
| 257 | 
            +
            					<dim>-1</dim>
         | 
| 258 | 
            +
            				</port>
         | 
| 259 | 
            +
            				<port id="1" precision="I32">
         | 
| 260 | 
            +
            					<dim>-1</dim>
         | 
| 261 | 
            +
            				</port>
         | 
| 262 | 
            +
            				<port id="2" precision="U8">
         | 
| 263 | 
            +
            					<dim>-1</dim>
         | 
| 264 | 
            +
            				</port>
         | 
| 265 | 
            +
            				<port id="3" precision="BOOL">
         | 
| 266 | 
            +
            					<dim>-1</dim>
         | 
| 267 | 
            +
            				</port>
         | 
| 268 | 
            +
            				<port id="4" precision="U8">
         | 
| 269 | 
            +
            					<dim>1</dim>
         | 
| 270 | 
            +
            				</port>
         | 
| 271 | 
            +
            				<port id="5" precision="U8">
         | 
| 272 | 
            +
            					<dim>3</dim>
         | 
| 273 | 
            +
            				</port>
         | 
| 274 | 
            +
            			</input>
         | 
| 275 | 
            +
            			<output>
         | 
| 276 | 
            +
            				<port id="6" precision="I32">
         | 
| 277 | 
            +
            					<dim>-1</dim>
         | 
| 278 | 
            +
            				</port>
         | 
| 279 | 
            +
            				<port id="7" precision="I32">
         | 
| 280 | 
            +
            					<dim>-1</dim>
         | 
| 281 | 
            +
            				</port>
         | 
| 282 | 
            +
            				<port id="8" precision="U8">
         | 
| 283 | 
            +
            					<dim>-1</dim>
         | 
| 284 | 
            +
            				</port>
         | 
| 285 | 
            +
            				<port id="9" precision="BOOL">
         | 
| 286 | 
            +
            					<dim>-1</dim>
         | 
| 287 | 
            +
            				</port>
         | 
| 288 | 
            +
            			</output>
         | 
| 289 | 
            +
            		</layer>
         | 
| 290 | 
            +
            		<layer id="22" name="Constant_158774" type="Const" version="opset1">
         | 
| 291 | 
            +
            			<data element_type="i32" shape="32011" offset="366" size="128044" />
         | 
| 292 | 
            +
            			<output>
         | 
| 293 | 
            +
            				<port id="0" precision="I32">
         | 
| 294 | 
            +
            					<dim>32011</dim>
         | 
| 295 | 
            +
            				</port>
         | 
| 296 | 
            +
            			</output>
         | 
| 297 | 
            +
            		</layer>
         | 
| 298 | 
            +
            		<layer id="23" name="Constant_158776" type="Const" version="opset1">
         | 
| 299 | 
            +
            			<data element_type="i32" shape="32011" offset="128410" size="128044" />
         | 
| 300 | 
            +
            			<output>
         | 
| 301 | 
            +
            				<port id="0" precision="I32">
         | 
| 302 | 
            +
            					<dim>32011</dim>
         | 
| 303 | 
            +
            				</port>
         | 
| 304 | 
            +
            			</output>
         | 
| 305 | 
            +
            		</layer>
         | 
| 306 | 
            +
            		<layer id="24" name="Constant_158778" type="Const" version="opset1">
         | 
| 307 | 
            +
            			<data element_type="u8" shape="211088" offset="256454" size="211088" />
         | 
| 308 | 
            +
            			<output>
         | 
| 309 | 
            +
            				<port id="0" precision="U8">
         | 
| 310 | 
            +
            					<dim>211088</dim>
         | 
| 311 | 
            +
            				</port>
         | 
| 312 | 
            +
            			</output>
         | 
| 313 | 
            +
            		</layer>
         | 
| 314 | 
            +
            		<layer id="25" name="Constant_158786" type="Const" version="opset1">
         | 
| 315 | 
            +
            			<data element_type="i32" shape="61249" offset="467542" size="244996" />
         | 
| 316 | 
            +
            			<output>
         | 
| 317 | 
            +
            				<port id="0" precision="I32">
         | 
| 318 | 
            +
            					<dim>61249</dim>
         | 
| 319 | 
            +
            				</port>
         | 
| 320 | 
            +
            			</output>
         | 
| 321 | 
            +
            		</layer>
         | 
| 322 | 
            +
            		<layer id="26" name="Constant_158788" type="Const" version="opset1">
         | 
| 323 | 
            +
            			<data element_type="i32" shape="61249" offset="712538" size="244996" />
         | 
| 324 | 
            +
            			<output>
         | 
| 325 | 
            +
            				<port id="0" precision="I32">
         | 
| 326 | 
            +
            					<dim>61249</dim>
         | 
| 327 | 
            +
            				</port>
         | 
| 328 | 
            +
            			</output>
         | 
| 329 | 
            +
            		</layer>
         | 
| 330 | 
            +
            		<layer id="27" name="Constant_158790" type="Const" version="opset1">
         | 
| 331 | 
            +
            			<data element_type="u8" shape="254123" offset="957534" size="254123" />
         | 
| 332 | 
            +
            			<output>
         | 
| 333 | 
            +
            				<port id="0" precision="U8">
         | 
| 334 | 
            +
            					<dim>254123</dim>
         | 
| 335 | 
            +
            				</port>
         | 
| 336 | 
            +
            			</output>
         | 
| 337 | 
            +
            		</layer>
         | 
| 338 | 
            +
            		<layer id="28" name="Constant_158792" type="Const" version="opset1">
         | 
| 339 | 
            +
            			<data element_type="i32" shape="61249" offset="1211657" size="244996" />
         | 
| 340 | 
            +
            			<output>
         | 
| 341 | 
            +
            				<port id="0" precision="I32">
         | 
| 342 | 
            +
            					<dim>61249</dim>
         | 
| 343 | 
            +
            				</port>
         | 
| 344 | 
            +
            			</output>
         | 
| 345 | 
            +
            		</layer>
         | 
| 346 | 
            +
            		<layer id="29" name="Constant_158794" type="Const" version="opset1">
         | 
| 347 | 
            +
            			<data element_type="i32" shape="61249" offset="1456653" size="244996" />
         | 
| 348 | 
            +
            			<output>
         | 
| 349 | 
            +
            				<port id="0" precision="I32">
         | 
| 350 | 
            +
            					<dim>61249</dim>
         | 
| 351 | 
            +
            				</port>
         | 
| 352 | 
            +
            			</output>
         | 
| 353 | 
            +
            		</layer>
         | 
| 354 | 
            +
            		<layer id="30" name="Constant_158796" type="Const" version="opset1">
         | 
| 355 | 
            +
            			<data element_type="u8" shape="167806" offset="1701649" size="167806" />
         | 
| 356 | 
            +
            			<output>
         | 
| 357 | 
            +
            				<port id="0" precision="U8">
         | 
| 358 | 
            +
            					<dim>167806</dim>
         | 
| 359 | 
            +
            				</port>
         | 
| 360 | 
            +
            			</output>
         | 
| 361 | 
            +
            		</layer>
         | 
| 362 | 
            +
            		<layer id="31" name="Constant_158780" type="Const" version="opset1">
         | 
| 363 | 
            +
            			<data element_type="i32" shape="475" offset="1869455" size="1900" />
         | 
| 364 | 
            +
            			<output>
         | 
| 365 | 
            +
            				<port id="0" precision="I32">
         | 
| 366 | 
            +
            					<dim>475</dim>
         | 
| 367 | 
            +
            				</port>
         | 
| 368 | 
            +
            			</output>
         | 
| 369 | 
            +
            		</layer>
         | 
| 370 | 
            +
            		<layer id="32" name="Constant_158782" type="Const" version="opset1">
         | 
| 371 | 
            +
            			<data element_type="i32" shape="475" offset="1871355" size="1900" />
         | 
| 372 | 
            +
            			<output>
         | 
| 373 | 
            +
            				<port id="0" precision="I32">
         | 
| 374 | 
            +
            					<dim>475</dim>
         | 
| 375 | 
            +
            				</port>
         | 
| 376 | 
            +
            			</output>
         | 
| 377 | 
            +
            		</layer>
         | 
| 378 | 
            +
            		<layer id="33" name="Constant_158784" type="Const" version="opset1">
         | 
| 379 | 
            +
            			<data element_type="u8" shape="6808" offset="1873255" size="6808" />
         | 
| 380 | 
            +
            			<output>
         | 
| 381 | 
            +
            				<port id="0" precision="U8">
         | 
| 382 | 
            +
            					<dim>6808</dim>
         | 
| 383 | 
            +
            				</port>
         | 
| 384 | 
            +
            			</output>
         | 
| 385 | 
            +
            		</layer>
         | 
| 386 | 
            +
            		<layer id="34" name="Constant_158797" type="Const" version="opset1">
         | 
| 387 | 
            +
            			<data element_type="i32" shape="475" offset="1880063" size="1900" />
         | 
| 388 | 
            +
            			<output>
         | 
| 389 | 
            +
            				<port id="0" precision="I32">
         | 
| 390 | 
            +
            					<dim>475</dim>
         | 
| 391 | 
            +
            				</port>
         | 
| 392 | 
            +
            			</output>
         | 
| 393 | 
            +
            		</layer>
         | 
| 394 | 
            +
            		<layer id="35" name="BPETokenizer_158798" type="BPETokenizer" version="extension">
         | 
| 395 | 
            +
            			<data unk_token="<unk>" fuse_unk="true" suffix_indicator="" end_suffix="" byte_fallback="true" cache_capacity="20000" />
         | 
| 396 | 
            +
            			<input>
         | 
| 397 | 
            +
            				<port id="0" precision="I32">
         | 
| 398 | 
            +
            					<dim>-1</dim>
         | 
| 399 | 
            +
            				</port>
         | 
| 400 | 
            +
            				<port id="1" precision="I32">
         | 
| 401 | 
            +
            					<dim>-1</dim>
         | 
| 402 | 
            +
            				</port>
         | 
| 403 | 
            +
            				<port id="2" precision="I32">
         | 
| 404 | 
            +
            					<dim>-1</dim>
         | 
| 405 | 
            +
            				</port>
         | 
| 406 | 
            +
            				<port id="3" precision="I32">
         | 
| 407 | 
            +
            					<dim>-1</dim>
         | 
| 408 | 
            +
            				</port>
         | 
| 409 | 
            +
            				<port id="4" precision="U8">
         | 
| 410 | 
            +
            					<dim>-1</dim>
         | 
| 411 | 
            +
            				</port>
         | 
| 412 | 
            +
            				<port id="5" precision="I32">
         | 
| 413 | 
            +
            					<dim>32011</dim>
         | 
| 414 | 
            +
            				</port>
         | 
| 415 | 
            +
            				<port id="6" precision="I32">
         | 
| 416 | 
            +
            					<dim>32011</dim>
         | 
| 417 | 
            +
            				</port>
         | 
| 418 | 
            +
            				<port id="7" precision="U8">
         | 
| 419 | 
            +
            					<dim>211088</dim>
         | 
| 420 | 
            +
            				</port>
         | 
| 421 | 
            +
            				<port id="8" precision="I32">
         | 
| 422 | 
            +
            					<dim>61249</dim>
         | 
| 423 | 
            +
            				</port>
         | 
| 424 | 
            +
            				<port id="9" precision="I32">
         | 
| 425 | 
            +
            					<dim>61249</dim>
         | 
| 426 | 
            +
            				</port>
         | 
| 427 | 
            +
            				<port id="10" precision="U8">
         | 
| 428 | 
            +
            					<dim>254123</dim>
         | 
| 429 | 
            +
            				</port>
         | 
| 430 | 
            +
            				<port id="11" precision="I32">
         | 
| 431 | 
            +
            					<dim>61249</dim>
         | 
| 432 | 
            +
            				</port>
         | 
| 433 | 
            +
            				<port id="12" precision="I32">
         | 
| 434 | 
            +
            					<dim>61249</dim>
         | 
| 435 | 
            +
            				</port>
         | 
| 436 | 
            +
            				<port id="13" precision="U8">
         | 
| 437 | 
            +
            					<dim>167806</dim>
         | 
| 438 | 
            +
            				</port>
         | 
| 439 | 
            +
            				<port id="14" precision="I32">
         | 
| 440 | 
            +
            					<dim>475</dim>
         | 
| 441 | 
            +
            				</port>
         | 
| 442 | 
            +
            				<port id="15" precision="I32">
         | 
| 443 | 
            +
            					<dim>475</dim>
         | 
| 444 | 
            +
            				</port>
         | 
| 445 | 
            +
            				<port id="16" precision="U8">
         | 
| 446 | 
            +
            					<dim>6808</dim>
         | 
| 447 | 
            +
            				</port>
         | 
| 448 | 
            +
            				<port id="17" precision="I32">
         | 
| 449 | 
            +
            					<dim>475</dim>
         | 
| 450 | 
            +
            				</port>
         | 
| 451 | 
            +
            			</input>
         | 
| 452 | 
            +
            			<output>
         | 
| 453 | 
            +
            				<port id="18" precision="I32">
         | 
| 454 | 
            +
            					<dim>-1</dim>
         | 
| 455 | 
            +
            				</port>
         | 
| 456 | 
            +
            				<port id="19" precision="I32">
         | 
| 457 | 
            +
            					<dim>-1</dim>
         | 
| 458 | 
            +
            				</port>
         | 
| 459 | 
            +
            				<port id="20" precision="I32">
         | 
| 460 | 
            +
            					<dim>-1</dim>
         | 
| 461 | 
            +
            				</port>
         | 
| 462 | 
            +
            			</output>
         | 
| 463 | 
            +
            		</layer>
         | 
| 464 | 
            +
            		<layer id="36" name="Constant_158799" type="Const" version="opset1">
         | 
| 465 | 
            +
            			<data element_type="i32" shape="" offset="1881963" size="4" />
         | 
| 466 | 
            +
            			<output>
         | 
| 467 | 
            +
            				<port id="0" precision="I32" />
         | 
| 468 | 
            +
            			</output>
         | 
| 469 | 
            +
            		</layer>
         | 
| 470 | 
            +
            		<layer id="37" name="Constant_158801" type="Const" version="opset1">
         | 
| 471 | 
            +
            			<data element_type="u8" shape="4" offset="1881967" size="4" />
         | 
| 472 | 
            +
            			<output>
         | 
| 473 | 
            +
            				<port id="0" precision="U8">
         | 
| 474 | 
            +
            					<dim>4</dim>
         | 
| 475 | 
            +
            				</port>
         | 
| 476 | 
            +
            			</output>
         | 
| 477 | 
            +
            		</layer>
         | 
| 478 | 
            +
            		<layer id="38" name="Constant_158803" type="Const" version="opset1">
         | 
| 479 | 
            +
            			<data element_type="u8" shape="13" offset="1881971" size="13" />
         | 
| 480 | 
            +
            			<output>
         | 
| 481 | 
            +
            				<port id="0" precision="U8">
         | 
| 482 | 
            +
            					<dim>13</dim>
         | 
| 483 | 
            +
            				</port>
         | 
| 484 | 
            +
            			</output>
         | 
| 485 | 
            +
            		</layer>
         | 
| 486 | 
            +
            		<layer id="39" name="Truncate_158804" type="Truncate" version="extension">
         | 
| 487 | 
            +
            			<data m_num_inputs="1" />
         | 
| 488 | 
            +
            			<input>
         | 
| 489 | 
            +
            				<port id="0" precision="I32">
         | 
| 490 | 
            +
            					<dim>-1</dim>
         | 
| 491 | 
            +
            				</port>
         | 
| 492 | 
            +
            				<port id="1" precision="I32">
         | 
| 493 | 
            +
            					<dim>-1</dim>
         | 
| 494 | 
            +
            				</port>
         | 
| 495 | 
            +
            				<port id="2" precision="I32">
         | 
| 496 | 
            +
            					<dim>-1</dim>
         | 
| 497 | 
            +
            				</port>
         | 
| 498 | 
            +
            				<port id="3" precision="I32" />
         | 
| 499 | 
            +
            				<port id="4" precision="U8">
         | 
| 500 | 
            +
            					<dim>4</dim>
         | 
| 501 | 
            +
            				</port>
         | 
| 502 | 
            +
            				<port id="5" precision="U8">
         | 
| 503 | 
            +
            					<dim>13</dim>
         | 
| 504 | 
            +
            				</port>
         | 
| 505 | 
            +
            			</input>
         | 
| 506 | 
            +
            			<output>
         | 
| 507 | 
            +
            				<port id="6" precision="I32">
         | 
| 508 | 
            +
            					<dim>-1</dim>
         | 
| 509 | 
            +
            				</port>
         | 
| 510 | 
            +
            				<port id="7" precision="I32">
         | 
| 511 | 
            +
            					<dim>-1</dim>
         | 
| 512 | 
            +
            				</port>
         | 
| 513 | 
            +
            				<port id="8" precision="I32">
         | 
| 514 | 
            +
            					<dim>-1</dim>
         | 
| 515 | 
            +
            				</port>
         | 
| 516 | 
            +
            			</output>
         | 
| 517 | 
            +
            		</layer>
         | 
| 518 | 
            +
            		<layer id="40" name="Constant_158805" type="Const" version="opset1">
         | 
| 519 | 
            +
            			<data element_type="i32" shape="1" offset="1881984" size="4" />
         | 
| 520 | 
            +
            			<output>
         | 
| 521 | 
            +
            				<port id="0" precision="I32">
         | 
| 522 | 
            +
            					<dim>1</dim>
         | 
| 523 | 
            +
            				</port>
         | 
| 524 | 
            +
            			</output>
         | 
| 525 | 
            +
            		</layer>
         | 
| 526 | 
            +
            		<layer id="41" name="CombineSegments_158806" type="CombineSegments" version="extension">
         | 
| 527 | 
            +
            			<input>
         | 
| 528 | 
            +
            				<port id="0" precision="I32">
         | 
| 529 | 
            +
            					<dim>-1</dim>
         | 
| 530 | 
            +
            				</port>
         | 
| 531 | 
            +
            				<port id="1" precision="I32">
         | 
| 532 | 
            +
            					<dim>-1</dim>
         | 
| 533 | 
            +
            				</port>
         | 
| 534 | 
            +
            				<port id="2" precision="I32">
         | 
| 535 | 
            +
            					<dim>-1</dim>
         | 
| 536 | 
            +
            				</port>
         | 
| 537 | 
            +
            				<port id="3" precision="I32">
         | 
| 538 | 
            +
            					<dim>1</dim>
         | 
| 539 | 
            +
            				</port>
         | 
| 540 | 
            +
            			</input>
         | 
| 541 | 
            +
            			<output>
         | 
| 542 | 
            +
            				<port id="4" precision="I32">
         | 
| 543 | 
            +
            					<dim>-1</dim>
         | 
| 544 | 
            +
            				</port>
         | 
| 545 | 
            +
            				<port id="5" precision="I32">
         | 
| 546 | 
            +
            					<dim>-1</dim>
         | 
| 547 | 
            +
            				</port>
         | 
| 548 | 
            +
            				<port id="6" precision="I32">
         | 
| 549 | 
            +
            					<dim>-1</dim>
         | 
| 550 | 
            +
            				</port>
         | 
| 551 | 
            +
            				<port id="7" precision="I32">
         | 
| 552 | 
            +
            					<dim>-1</dim>
         | 
| 553 | 
            +
            				</port>
         | 
| 554 | 
            +
            				<port id="8" precision="I32">
         | 
| 555 | 
            +
            					<dim>-1</dim>
         | 
| 556 | 
            +
            				</port>
         | 
| 557 | 
            +
            				<port id="9" precision="I32">
         | 
| 558 | 
            +
            					<dim>-1</dim>
         | 
| 559 | 
            +
            				</port>
         | 
| 560 | 
            +
            			</output>
         | 
| 561 | 
            +
            		</layer>
         | 
| 562 | 
            +
            		<layer id="42" name="Subtract_158807" type="Subtract" version="opset1">
         | 
| 563 | 
            +
            			<data auto_broadcast="numpy" />
         | 
| 564 | 
            +
            			<input>
         | 
| 565 | 
            +
            				<port id="0" precision="I32">
         | 
| 566 | 
            +
            					<dim>-1</dim>
         | 
| 567 | 
            +
            				</port>
         | 
| 568 | 
            +
            				<port id="1" precision="I32">
         | 
| 569 | 
            +
            					<dim>-1</dim>
         | 
| 570 | 
            +
            				</port>
         | 
| 571 | 
            +
            			</input>
         | 
| 572 | 
            +
            			<output>
         | 
| 573 | 
            +
            				<port id="2" precision="I32">
         | 
| 574 | 
            +
            					<dim>-1</dim>
         | 
| 575 | 
            +
            				</port>
         | 
| 576 | 
            +
            			</output>
         | 
| 577 | 
            +
            		</layer>
         | 
| 578 | 
            +
            		<layer id="43" name="Constant_158808" type="Const" version="opset1">
         | 
| 579 | 
            +
            			<data element_type="i32" shape="" offset="1881984" size="4" />
         | 
| 580 | 
            +
            			<output>
         | 
| 581 | 
            +
            				<port id="0" precision="I32" />
         | 
| 582 | 
            +
            			</output>
         | 
| 583 | 
            +
            		</layer>
         | 
| 584 | 
            +
            		<layer id="44" name="ReduceMax_158809" type="ReduceMax" version="opset1">
         | 
| 585 | 
            +
            			<data keep_dims="false" />
         | 
| 586 | 
            +
            			<input>
         | 
| 587 | 
            +
            				<port id="0" precision="I32">
         | 
| 588 | 
            +
            					<dim>-1</dim>
         | 
| 589 | 
            +
            				</port>
         | 
| 590 | 
            +
            				<port id="1" precision="I32" />
         | 
| 591 | 
            +
            			</input>
         | 
| 592 | 
            +
            			<output>
         | 
| 593 | 
            +
            				<port id="2" precision="I32" />
         | 
| 594 | 
            +
            			</output>
         | 
| 595 | 
            +
            		</layer>
         | 
| 596 | 
            +
            		<layer id="45" name="Constant_158810" type="Const" version="opset1">
         | 
| 597 | 
            +
            			<data element_type="i32" shape="" offset="1881988" size="4" />
         | 
| 598 | 
            +
            			<output>
         | 
| 599 | 
            +
            				<port id="0" precision="I32" />
         | 
| 600 | 
            +
            			</output>
         | 
| 601 | 
            +
            		</layer>
         | 
| 602 | 
            +
            		<layer id="46" name="RaggedToDense_158811" type="RaggedToDense" version="extension">
         | 
| 603 | 
            +
            			<data pad_right="false" m_pad_max_length="false" />
         | 
| 604 | 
            +
            			<input>
         | 
| 605 | 
            +
            				<port id="0" precision="I32">
         | 
| 606 | 
            +
            					<dim>-1</dim>
         | 
| 607 | 
            +
            				</port>
         | 
| 608 | 
            +
            				<port id="1" precision="I32">
         | 
| 609 | 
            +
            					<dim>-1</dim>
         | 
| 610 | 
            +
            				</port>
         | 
| 611 | 
            +
            				<port id="2" precision="I32">
         | 
| 612 | 
            +
            					<dim>-1</dim>
         | 
| 613 | 
            +
            				</port>
         | 
| 614 | 
            +
            				<port id="3" precision="I32" />
         | 
| 615 | 
            +
            				<port id="4" precision="I32" />
         | 
| 616 | 
            +
            			</input>
         | 
| 617 | 
            +
            			<output>
         | 
| 618 | 
            +
            				<port id="5" precision="I32">
         | 
| 619 | 
            +
            					<dim>-1</dim>
         | 
| 620 | 
            +
            					<dim>-1</dim>
         | 
| 621 | 
            +
            				</port>
         | 
| 622 | 
            +
            				<port id="6" precision="BOOL">
         | 
| 623 | 
            +
            					<dim>-1</dim>
         | 
| 624 | 
            +
            					<dim>-1</dim>
         | 
| 625 | 
            +
            				</port>
         | 
| 626 | 
            +
            			</output>
         | 
| 627 | 
            +
            		</layer>
         | 
| 628 | 
            +
            		<layer id="47" name="Convert_158812" type="Convert" version="opset1">
         | 
| 629 | 
            +
            			<data destination_type="i32" />
         | 
| 630 | 
            +
            			<input>
         | 
| 631 | 
            +
            				<port id="0" precision="BOOL">
         | 
| 632 | 
            +
            					<dim>-1</dim>
         | 
| 633 | 
            +
            					<dim>-1</dim>
         | 
| 634 | 
            +
            				</port>
         | 
| 635 | 
            +
            			</input>
         | 
| 636 | 
            +
            			<output>
         | 
| 637 | 
            +
            				<port id="1" precision="I32">
         | 
| 638 | 
            +
            					<dim>-1</dim>
         | 
| 639 | 
            +
            					<dim>-1</dim>
         | 
| 640 | 
            +
            				</port>
         | 
| 641 | 
            +
            			</output>
         | 
| 642 | 
            +
            		</layer>
         | 
| 643 | 
            +
            		<layer id="48" name="Convert_158812.0" type="Convert" version="opset1">
         | 
| 644 | 
            +
            			<data destination_type="i64" />
         | 
| 645 | 
            +
            			<input>
         | 
| 646 | 
            +
            				<port id="0" precision="I32">
         | 
| 647 | 
            +
            					<dim>-1</dim>
         | 
| 648 | 
            +
            					<dim>-1</dim>
         | 
| 649 | 
            +
            				</port>
         | 
| 650 | 
            +
            			</input>
         | 
| 651 | 
            +
            			<output>
         | 
| 652 | 
            +
            				<port id="1" precision="I64" names="attention_mask">
         | 
| 653 | 
            +
            					<dim>-1</dim>
         | 
| 654 | 
            +
            					<dim>-1</dim>
         | 
| 655 | 
            +
            				</port>
         | 
| 656 | 
            +
            			</output>
         | 
| 657 | 
            +
            		</layer>
         | 
| 658 | 
            +
            		<layer id="50" name="RaggedToDense_158811.0" type="Convert" version="opset1">
         | 
| 659 | 
            +
            			<data destination_type="i64" />
         | 
| 660 | 
            +
            			<input>
         | 
| 661 | 
            +
            				<port id="0" precision="I32">
         | 
| 662 | 
            +
            					<dim>-1</dim>
         | 
| 663 | 
            +
            					<dim>-1</dim>
         | 
| 664 | 
            +
            				</port>
         | 
| 665 | 
            +
            			</input>
         | 
| 666 | 
            +
            			<output>
         | 
| 667 | 
            +
            				<port id="1" precision="I64" names="input_ids">
         | 
| 668 | 
            +
            					<dim>-1</dim>
         | 
| 669 | 
            +
            					<dim>-1</dim>
         | 
| 670 | 
            +
            				</port>
         | 
| 671 | 
            +
            			</output>
         | 
| 672 | 
            +
            		</layer>
         | 
| 673 | 
            +
            		<layer id="51" name="Result_158815" type="Result" version="opset1" output_names="input_ids">
         | 
| 674 | 
            +
            			<input>
         | 
| 675 | 
            +
            				<port id="0" precision="I64">
         | 
| 676 | 
            +
            					<dim>-1</dim>
         | 
| 677 | 
            +
            					<dim>-1</dim>
         | 
| 678 | 
            +
            				</port>
         | 
| 679 | 
            +
            			</input>
         | 
| 680 | 
            +
            		</layer>
         | 
| 681 | 
            +
            		<layer id="49" name="Result_158817" type="Result" version="opset1" output_names="attention_mask">
         | 
| 682 | 
            +
            			<input>
         | 
| 683 | 
            +
            				<port id="0" precision="I64">
         | 
| 684 | 
            +
            					<dim>-1</dim>
         | 
| 685 | 
            +
            					<dim>-1</dim>
         | 
| 686 | 
            +
            				</port>
         | 
| 687 | 
            +
            			</input>
         | 
| 688 | 
            +
            		</layer>
         | 
| 689 | 
            +
            	</layers>
         | 
| 690 | 
            +
            	<edges>
         | 
| 691 | 
            +
            		<edge from-layer="0" from-port="0" to-layer="2" to-port="0" />
         | 
| 692 | 
            +
            		<edge from-layer="1" from-port="0" to-layer="8" to-port="0" />
         | 
| 693 | 
            +
            		<edge from-layer="2" from-port="1" to-layer="3" to-port="0" />
         | 
| 694 | 
            +
            		<edge from-layer="2" from-port="3" to-layer="15" to-port="4" />
         | 
| 695 | 
            +
            		<edge from-layer="2" from-port="2" to-layer="15" to-port="3" />
         | 
| 696 | 
            +
            		<edge from-layer="2" from-port="1" to-layer="15" to-port="2" />
         | 
| 697 | 
            +
            		<edge from-layer="3" from-port="1" to-layer="6" to-port="0" />
         | 
| 698 | 
            +
            		<edge from-layer="4" from-port="0" to-layer="6" to-port="1" />
         | 
| 699 | 
            +
            		<edge from-layer="5" from-port="0" to-layer="6" to-port="2" />
         | 
| 700 | 
            +
            		<edge from-layer="6" from-port="3" to-layer="11" to-port="0" />
         | 
| 701 | 
            +
            		<edge from-layer="6" from-port="3" to-layer="8" to-port="1" />
         | 
| 702 | 
            +
            		<edge from-layer="7" from-port="0" to-layer="8" to-port="2" />
         | 
| 703 | 
            +
            		<edge from-layer="8" from-port="3" to-layer="15" to-port="0" />
         | 
| 704 | 
            +
            		<edge from-layer="9" from-port="0" to-layer="13" to-port="0" />
         | 
| 705 | 
            +
            		<edge from-layer="10" from-port="0" to-layer="11" to-port="1" />
         | 
| 706 | 
            +
            		<edge from-layer="11" from-port="2" to-layer="13" to-port="1" />
         | 
| 707 | 
            +
            		<edge from-layer="12" from-port="0" to-layer="13" to-port="2" />
         | 
| 708 | 
            +
            		<edge from-layer="13" from-port="3" to-layer="15" to-port="1" />
         | 
| 709 | 
            +
            		<edge from-layer="14" from-port="0" to-layer="15" to-port="5" />
         | 
| 710 | 
            +
            		<edge from-layer="15" from-port="10" to-layer="18" to-port="2" />
         | 
| 711 | 
            +
            		<edge from-layer="15" from-port="7" to-layer="35" to-port="1" />
         | 
| 712 | 
            +
            		<edge from-layer="15" from-port="6" to-layer="35" to-port="0" />
         | 
| 713 | 
            +
            		<edge from-layer="15" from-port="11" to-layer="18" to-port="3" />
         | 
| 714 | 
            +
            		<edge from-layer="15" from-port="9" to-layer="18" to-port="1" />
         | 
| 715 | 
            +
            		<edge from-layer="15" from-port="8" to-layer="18" to-port="0" />
         | 
| 716 | 
            +
            		<edge from-layer="16" from-port="0" to-layer="18" to-port="4" />
         | 
| 717 | 
            +
            		<edge from-layer="17" from-port="0" to-layer="18" to-port="5" />
         | 
| 718 | 
            +
            		<edge from-layer="18" from-port="6" to-layer="21" to-port="0" />
         | 
| 719 | 
            +
            		<edge from-layer="18" from-port="7" to-layer="21" to-port="1" />
         | 
| 720 | 
            +
            		<edge from-layer="18" from-port="8" to-layer="21" to-port="2" />
         | 
| 721 | 
            +
            		<edge from-layer="18" from-port="9" to-layer="21" to-port="3" />
         | 
| 722 | 
            +
            		<edge from-layer="19" from-port="0" to-layer="21" to-port="4" />
         | 
| 723 | 
            +
            		<edge from-layer="20" from-port="0" to-layer="21" to-port="5" />
         | 
| 724 | 
            +
            		<edge from-layer="21" from-port="6" to-layer="35" to-port="2" />
         | 
| 725 | 
            +
            		<edge from-layer="21" from-port="7" to-layer="35" to-port="3" />
         | 
| 726 | 
            +
            		<edge from-layer="21" from-port="8" to-layer="35" to-port="4" />
         | 
| 727 | 
            +
            		<edge from-layer="22" from-port="0" to-layer="35" to-port="5" />
         | 
| 728 | 
            +
            		<edge from-layer="23" from-port="0" to-layer="35" to-port="6" />
         | 
| 729 | 
            +
            		<edge from-layer="24" from-port="0" to-layer="35" to-port="7" />
         | 
| 730 | 
            +
            		<edge from-layer="25" from-port="0" to-layer="35" to-port="8" />
         | 
| 731 | 
            +
            		<edge from-layer="26" from-port="0" to-layer="35" to-port="9" />
         | 
| 732 | 
            +
            		<edge from-layer="27" from-port="0" to-layer="35" to-port="10" />
         | 
| 733 | 
            +
            		<edge from-layer="28" from-port="0" to-layer="35" to-port="11" />
         | 
| 734 | 
            +
            		<edge from-layer="29" from-port="0" to-layer="35" to-port="12" />
         | 
| 735 | 
            +
            		<edge from-layer="30" from-port="0" to-layer="35" to-port="13" />
         | 
| 736 | 
            +
            		<edge from-layer="31" from-port="0" to-layer="35" to-port="14" />
         | 
| 737 | 
            +
            		<edge from-layer="32" from-port="0" to-layer="35" to-port="15" />
         | 
| 738 | 
            +
            		<edge from-layer="33" from-port="0" to-layer="35" to-port="16" />
         | 
| 739 | 
            +
            		<edge from-layer="34" from-port="0" to-layer="35" to-port="17" />
         | 
| 740 | 
            +
            		<edge from-layer="35" from-port="18" to-layer="39" to-port="0" />
         | 
| 741 | 
            +
            		<edge from-layer="35" from-port="19" to-layer="39" to-port="1" />
         | 
| 742 | 
            +
            		<edge from-layer="35" from-port="20" to-layer="39" to-port="2" />
         | 
| 743 | 
            +
            		<edge from-layer="36" from-port="0" to-layer="39" to-port="3" />
         | 
| 744 | 
            +
            		<edge from-layer="37" from-port="0" to-layer="39" to-port="4" />
         | 
| 745 | 
            +
            		<edge from-layer="38" from-port="0" to-layer="39" to-port="5" />
         | 
| 746 | 
            +
            		<edge from-layer="39" from-port="6" to-layer="41" to-port="0" />
         | 
| 747 | 
            +
            		<edge from-layer="39" from-port="8" to-layer="41" to-port="2" />
         | 
| 748 | 
            +
            		<edge from-layer="39" from-port="7" to-layer="41" to-port="1" />
         | 
| 749 | 
            +
            		<edge from-layer="40" from-port="0" to-layer="41" to-port="3" />
         | 
| 750 | 
            +
            		<edge from-layer="41" from-port="5" to-layer="42" to-port="0" />
         | 
| 751 | 
            +
            		<edge from-layer="41" from-port="4" to-layer="42" to-port="1" />
         | 
| 752 | 
            +
            		<edge from-layer="41" from-port="4" to-layer="46" to-port="0" />
         | 
| 753 | 
            +
            		<edge from-layer="41" from-port="5" to-layer="46" to-port="1" />
         | 
| 754 | 
            +
            		<edge from-layer="41" from-port="6" to-layer="46" to-port="2" />
         | 
| 755 | 
            +
            		<edge from-layer="42" from-port="2" to-layer="44" to-port="0" />
         | 
| 756 | 
            +
            		<edge from-layer="43" from-port="0" to-layer="44" to-port="1" />
         | 
| 757 | 
            +
            		<edge from-layer="44" from-port="2" to-layer="46" to-port="3" />
         | 
| 758 | 
            +
            		<edge from-layer="45" from-port="0" to-layer="46" to-port="4" />
         | 
| 759 | 
            +
            		<edge from-layer="46" from-port="6" to-layer="47" to-port="0" />
         | 
| 760 | 
            +
            		<edge from-layer="46" from-port="5" to-layer="50" to-port="0" />
         | 
| 761 | 
            +
            		<edge from-layer="47" from-port="1" to-layer="48" to-port="0" />
         | 
| 762 | 
            +
            		<edge from-layer="48" from-port="1" to-layer="49" to-port="0" />
         | 
| 763 | 
            +
            		<edge from-layer="50" from-port="1" to-layer="51" to-port="0" />
         | 
| 764 | 
            +
            	</edges>
         | 
| 765 | 
            +
            	<rt_info>
         | 
| 766 | 
            +
            		<add_attention_mask value="True" />
         | 
| 767 | 
            +
            		<add_prefix_space />
         | 
| 768 | 
            +
            		<add_special_tokens value="True" />
         | 
| 769 | 
            +
            		<bos_token_id value="1" />
         | 
| 770 | 
            +
            		<chat_template value="{% for message in messages %}{% if message['role'] == 'system' %}{{'<|system|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'user' %}{{'<|user|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>
' + message['content'] + '<|end|>
'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>
' }}{% else %}{{ eos_token }}{% endif %}" />
         | 
| 771 | 
            +
            		<clean_up_tokenization_spaces />
         | 
| 772 | 
            +
            		<detokenizer_input_type value="i64" />
         | 
| 773 | 
            +
            		<eos_token_id value="32000" />
         | 
| 774 | 
            +
            		<handle_special_tokens_with_re />
         | 
| 775 | 
            +
            		<max_length />
         | 
| 776 | 
            +
            		<number_of_inputs value="1" />
         | 
| 777 | 
            +
            		<openvino_tokenizers_version value="2025.2.0.0-566-85be884a69f" />
         | 
| 778 | 
            +
            		<openvino_version value="2025.2.0-19136-649eec15cfe-releases/2025/2" />
         | 
| 779 | 
            +
            		<original_post_processor_template value="{"type": "TemplateProcessing", "single": [{"Sequence": {"id": "A", "type_id": 0}}], "pair": [{"Sequence": {"id": "A", "type_id": 0}}, {"Sequence": {"id": "B", "type_id": 1}}], "special_tokens": {}}" />
         | 
| 780 | 
            +
            		<original_tokenizer_class value="<class 'transformers.models.llama.tokenization_llama_fast.LlamaTokenizerFast'>" />
         | 
| 781 | 
            +
            		<pad_token_id value="32000" />
         | 
| 782 | 
            +
            		<processed_post_processor_template value="{"single": {"ids": [-1], "type_ids": [0]}, "pair": {"ids": [-1, -2], "type_ids": [0, 1]}}" />
         | 
| 783 | 
            +
            		<sentencepiece_version value="0.2.0" />
         | 
| 784 | 
            +
            		<skip_special_tokens value="True" />
         | 
| 785 | 
            +
            		<streaming_detokenizer value="False" />
         | 
| 786 | 
            +
            		<tiktoken_version value="0.9.0" />
         | 
| 787 | 
            +
            		<tokenizer_output_type value="i64" />
         | 
| 788 | 
            +
            		<tokenizers_version value="0.21.1" />
         | 
| 789 | 
            +
            		<transformers_version value="4.51.3" />
         | 
| 790 | 
            +
            		<use_max_padding value="False" />
         | 
| 791 | 
            +
            		<use_sentencepiece_backend value="False" />
         | 
| 792 | 
            +
            		<utf8_replace_mode value="replace" />
         | 
| 793 | 
            +
            		<with_detokenizer value="True" />
         | 
| 794 | 
            +
            	</rt_info>
         | 
| 795 | 
            +
            </net>
         | 
    	
        special_tokens_map.json
    ADDED
    
    | @@ -0,0 +1,30 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "bos_token": {
         | 
| 3 | 
            +
                "content": "<s>",
         | 
| 4 | 
            +
                "lstrip": false,
         | 
| 5 | 
            +
                "normalized": false,
         | 
| 6 | 
            +
                "rstrip": false,
         | 
| 7 | 
            +
                "single_word": false
         | 
| 8 | 
            +
              },
         | 
| 9 | 
            +
              "eos_token": {
         | 
| 10 | 
            +
                "content": "<|endoftext|>",
         | 
| 11 | 
            +
                "lstrip": false,
         | 
| 12 | 
            +
                "normalized": false,
         | 
| 13 | 
            +
                "rstrip": false,
         | 
| 14 | 
            +
                "single_word": false
         | 
| 15 | 
            +
              },
         | 
| 16 | 
            +
              "pad_token": {
         | 
| 17 | 
            +
                "content": "<|endoftext|>",
         | 
| 18 | 
            +
                "lstrip": false,
         | 
| 19 | 
            +
                "normalized": false,
         | 
| 20 | 
            +
                "rstrip": false,
         | 
| 21 | 
            +
                "single_word": false
         | 
| 22 | 
            +
              },
         | 
| 23 | 
            +
              "unk_token": {
         | 
| 24 | 
            +
                "content": "<unk>",
         | 
| 25 | 
            +
                "lstrip": false,
         | 
| 26 | 
            +
                "normalized": false,
         | 
| 27 | 
            +
                "rstrip": false,
         | 
| 28 | 
            +
                "single_word": false
         | 
| 29 | 
            +
              }
         | 
| 30 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer.model
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
         | 
| 3 | 
            +
            size 499723
         | 
    	
        tokenizer_config.json
    ADDED
    
    | @@ -0,0 +1,132 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "add_bos_token": false,
         | 
| 3 | 
            +
              "add_eos_token": false,
         | 
| 4 | 
            +
              "add_prefix_space": null,
         | 
| 5 | 
            +
              "added_tokens_decoder": {
         | 
| 6 | 
            +
                "0": {
         | 
| 7 | 
            +
                  "content": "<unk>",
         | 
| 8 | 
            +
                  "lstrip": false,
         | 
| 9 | 
            +
                  "normalized": false,
         | 
| 10 | 
            +
                  "rstrip": false,
         | 
| 11 | 
            +
                  "single_word": false,
         | 
| 12 | 
            +
                  "special": true
         | 
| 13 | 
            +
                },
         | 
| 14 | 
            +
                "1": {
         | 
| 15 | 
            +
                  "content": "<s>",
         | 
| 16 | 
            +
                  "lstrip": false,
         | 
| 17 | 
            +
                  "normalized": false,
         | 
| 18 | 
            +
                  "rstrip": false,
         | 
| 19 | 
            +
                  "single_word": false,
         | 
| 20 | 
            +
                  "special": true
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
                "2": {
         | 
| 23 | 
            +
                  "content": "</s>",
         | 
| 24 | 
            +
                  "lstrip": false,
         | 
| 25 | 
            +
                  "normalized": false,
         | 
| 26 | 
            +
                  "rstrip": true,
         | 
| 27 | 
            +
                  "single_word": false,
         | 
| 28 | 
            +
                  "special": false
         | 
| 29 | 
            +
                },
         | 
| 30 | 
            +
                "32000": {
         | 
| 31 | 
            +
                  "content": "<|endoftext|>",
         | 
| 32 | 
            +
                  "lstrip": false,
         | 
| 33 | 
            +
                  "normalized": false,
         | 
| 34 | 
            +
                  "rstrip": false,
         | 
| 35 | 
            +
                  "single_word": false,
         | 
| 36 | 
            +
                  "special": true
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                "32001": {
         | 
| 39 | 
            +
                  "content": "<|assistant|>",
         | 
| 40 | 
            +
                  "lstrip": false,
         | 
| 41 | 
            +
                  "normalized": false,
         | 
| 42 | 
            +
                  "rstrip": true,
         | 
| 43 | 
            +
                  "single_word": false,
         | 
| 44 | 
            +
                  "special": true
         | 
| 45 | 
            +
                },
         | 
| 46 | 
            +
                "32002": {
         | 
| 47 | 
            +
                  "content": "<|placeholder1|>",
         | 
| 48 | 
            +
                  "lstrip": false,
         | 
| 49 | 
            +
                  "normalized": false,
         | 
| 50 | 
            +
                  "rstrip": true,
         | 
| 51 | 
            +
                  "single_word": false,
         | 
| 52 | 
            +
                  "special": true
         | 
| 53 | 
            +
                },
         | 
| 54 | 
            +
                "32003": {
         | 
| 55 | 
            +
                  "content": "<|placeholder2|>",
         | 
| 56 | 
            +
                  "lstrip": false,
         | 
| 57 | 
            +
                  "normalized": false,
         | 
| 58 | 
            +
                  "rstrip": true,
         | 
| 59 | 
            +
                  "single_word": false,
         | 
| 60 | 
            +
                  "special": true
         | 
| 61 | 
            +
                },
         | 
| 62 | 
            +
                "32004": {
         | 
| 63 | 
            +
                  "content": "<|placeholder3|>",
         | 
| 64 | 
            +
                  "lstrip": false,
         | 
| 65 | 
            +
                  "normalized": false,
         | 
| 66 | 
            +
                  "rstrip": true,
         | 
| 67 | 
            +
                  "single_word": false,
         | 
| 68 | 
            +
                  "special": true
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                "32005": {
         | 
| 71 | 
            +
                  "content": "<|placeholder4|>",
         | 
| 72 | 
            +
                  "lstrip": false,
         | 
| 73 | 
            +
                  "normalized": false,
         | 
| 74 | 
            +
                  "rstrip": true,
         | 
| 75 | 
            +
                  "single_word": false,
         | 
| 76 | 
            +
                  "special": true
         | 
| 77 | 
            +
                },
         | 
| 78 | 
            +
                "32006": {
         | 
| 79 | 
            +
                  "content": "<|system|>",
         | 
| 80 | 
            +
                  "lstrip": false,
         | 
| 81 | 
            +
                  "normalized": false,
         | 
| 82 | 
            +
                  "rstrip": true,
         | 
| 83 | 
            +
                  "single_word": false,
         | 
| 84 | 
            +
                  "special": true
         | 
| 85 | 
            +
                },
         | 
| 86 | 
            +
                "32007": {
         | 
| 87 | 
            +
                  "content": "<|end|>",
         | 
| 88 | 
            +
                  "lstrip": false,
         | 
| 89 | 
            +
                  "normalized": false,
         | 
| 90 | 
            +
                  "rstrip": true,
         | 
| 91 | 
            +
                  "single_word": false,
         | 
| 92 | 
            +
                  "special": true
         | 
| 93 | 
            +
                },
         | 
| 94 | 
            +
                "32008": {
         | 
| 95 | 
            +
                  "content": "<|placeholder5|>",
         | 
| 96 | 
            +
                  "lstrip": false,
         | 
| 97 | 
            +
                  "normalized": false,
         | 
| 98 | 
            +
                  "rstrip": true,
         | 
| 99 | 
            +
                  "single_word": false,
         | 
| 100 | 
            +
                  "special": true
         | 
| 101 | 
            +
                },
         | 
| 102 | 
            +
                "32009": {
         | 
| 103 | 
            +
                  "content": "<|placeholder6|>",
         | 
| 104 | 
            +
                  "lstrip": false,
         | 
| 105 | 
            +
                  "normalized": false,
         | 
| 106 | 
            +
                  "rstrip": true,
         | 
| 107 | 
            +
                  "single_word": false,
         | 
| 108 | 
            +
                  "special": true
         | 
| 109 | 
            +
                },
         | 
| 110 | 
            +
                "32010": {
         | 
| 111 | 
            +
                  "content": "<|user|>",
         | 
| 112 | 
            +
                  "lstrip": false,
         | 
| 113 | 
            +
                  "normalized": false,
         | 
| 114 | 
            +
                  "rstrip": true,
         | 
| 115 | 
            +
                  "single_word": false,
         | 
| 116 | 
            +
                  "special": true
         | 
| 117 | 
            +
                }
         | 
| 118 | 
            +
              },
         | 
| 119 | 
            +
              "bos_token": "<s>",
         | 
| 120 | 
            +
              "chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}{{'<|system|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'user' %}{{'<|user|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>\n' + message['content'] + '<|end|>\n'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>\n' }}{% else %}{{ eos_token }}{% endif %}",
         | 
| 121 | 
            +
              "clean_up_tokenization_spaces": false,
         | 
| 122 | 
            +
              "eos_token": "<|endoftext|>",
         | 
| 123 | 
            +
              "extra_special_tokens": {},
         | 
| 124 | 
            +
              "legacy": false,
         | 
| 125 | 
            +
              "model_max_length": 4096,
         | 
| 126 | 
            +
              "pad_token": "<|endoftext|>",
         | 
| 127 | 
            +
              "padding_side": "left",
         | 
| 128 | 
            +
              "sp_model_kwargs": {},
         | 
| 129 | 
            +
              "tokenizer_class": "LlamaTokenizer",
         | 
| 130 | 
            +
              "unk_token": "<unk>",
         | 
| 131 | 
            +
              "use_default_system_prompt": false
         | 
| 132 | 
            +
            }
         | 
