Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
 - README.md +39 -0
 - chat_template.jinja +1 -0
 - config.json +36 -0
 - model-00001-of-00002.safetensors +3 -0
 - model-00002-of-00002.safetensors +3 -0
 - model.safetensors.index.json +0 -0
 - special_tokens_map.json +23 -0
 - tokenizer.json +3 -0
 - tokenizer_config.json +204 -0
 
    	
        .gitattributes
    CHANGED
    
    | 
         @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text 
     | 
|
| 33 | 
         
             
            *.zip filter=lfs diff=lfs merge=lfs -text
         
     | 
| 34 | 
         
             
            *.zst filter=lfs diff=lfs merge=lfs -text
         
     | 
| 35 | 
         
             
            *tfevents* filter=lfs diff=lfs merge=lfs -text
         
     | 
| 
         | 
| 
         | 
|
| 33 | 
         
             
            *.zip filter=lfs diff=lfs merge=lfs -text
         
     | 
| 34 | 
         
             
            *.zst filter=lfs diff=lfs merge=lfs -text
         
     | 
| 35 | 
         
             
            *tfevents* filter=lfs diff=lfs merge=lfs -text
         
     | 
| 36 | 
         
            +
            tokenizer.json filter=lfs diff=lfs merge=lfs -text
         
     | 
    	
        README.md
    ADDED
    
    | 
         @@ -0,0 +1,39 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            ---
         
     | 
| 2 | 
         
            +
            license: mit
         
     | 
| 3 | 
         
            +
            library_name: mlx
         
     | 
| 4 | 
         
            +
            datasets:
         
     | 
| 5 | 
         
            +
            - FractalAIResearch/Fathom-V0.4-SFT-Shortest-Chains
         
     | 
| 6 | 
         
            +
            - FractalAIResearch/Fathom-V0.6-Iterative-Curriculum-Learning
         
     | 
| 7 | 
         
            +
            base_model: FractalAIResearch/Fathom-R1-14B
         
     | 
| 8 | 
         
            +
            pipeline_tag: text-generation
         
     | 
| 9 | 
         
            +
            tags:
         
     | 
| 10 | 
         
            +
            - mlx
         
     | 
| 11 | 
         
            +
            ---
         
     | 
| 12 | 
         
            +
             
     | 
| 13 | 
         
            +
            # mlx-community/Fathom-R1-14B-4bit
         
     | 
| 14 | 
         
            +
             
     | 
| 15 | 
         
            +
            This model [mlx-community/Fathom-R1-14B-4bit](https://huggingface.co/mlx-community/Fathom-R1-14B-4bit) was
         
     | 
| 16 | 
         
            +
            converted to MLX format from [FractalAIResearch/Fathom-R1-14B](https://huggingface.co/FractalAIResearch/Fathom-R1-14B)
         
     | 
| 17 | 
         
            +
            using mlx-lm version **0.25.0**.
         
     | 
| 18 | 
         
            +
             
     | 
| 19 | 
         
            +
            ## Use with mlx
         
     | 
| 20 | 
         
            +
             
     | 
| 21 | 
         
            +
            ```bash
         
     | 
| 22 | 
         
            +
            pip install mlx-lm
         
     | 
| 23 | 
         
            +
            ```
         
     | 
| 24 | 
         
            +
             
     | 
| 25 | 
         
            +
            ```python
         
     | 
| 26 | 
         
            +
            from mlx_lm import load, generate
         
     | 
| 27 | 
         
            +
             
     | 
| 28 | 
         
            +
            model, tokenizer = load("mlx-community/Fathom-R1-14B-4bit")
         
     | 
| 29 | 
         
            +
             
     | 
| 30 | 
         
            +
            prompt = "hello"
         
     | 
| 31 | 
         
            +
             
     | 
| 32 | 
         
            +
            if tokenizer.chat_template is not None:
         
     | 
| 33 | 
         
            +
                messages = [{"role": "user", "content": prompt}]
         
     | 
| 34 | 
         
            +
                prompt = tokenizer.apply_chat_template(
         
     | 
| 35 | 
         
            +
                    messages, add_generation_prompt=True
         
     | 
| 36 | 
         
            +
                )
         
     | 
| 37 | 
         
            +
             
     | 
| 38 | 
         
            +
            response = generate(model, tokenizer, prompt=prompt, verbose=True)
         
     | 
| 39 | 
         
            +
            ```
         
     | 
    	
        chat_template.jinja
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
         
     | 
    	
        config.json
    ADDED
    
    | 
         @@ -0,0 +1,36 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            {
         
     | 
| 2 | 
         
            +
                "architectures": [
         
     | 
| 3 | 
         
            +
                    "Qwen2ForCausalLM"
         
     | 
| 4 | 
         
            +
                ],
         
     | 
| 5 | 
         
            +
                "attention_dropout": 0.0,
         
     | 
| 6 | 
         
            +
                "bos_token_id": 151643,
         
     | 
| 7 | 
         
            +
                "eos_token_id": 151643,
         
     | 
| 8 | 
         
            +
                "hidden_act": "silu",
         
     | 
| 9 | 
         
            +
                "hidden_size": 5120,
         
     | 
| 10 | 
         
            +
                "initializer_range": 0.02,
         
     | 
| 11 | 
         
            +
                "intermediate_size": 13824,
         
     | 
| 12 | 
         
            +
                "max_position_embeddings": 131072,
         
     | 
| 13 | 
         
            +
                "max_window_layers": 48,
         
     | 
| 14 | 
         
            +
                "model_type": "qwen2",
         
     | 
| 15 | 
         
            +
                "num_attention_heads": 40,
         
     | 
| 16 | 
         
            +
                "num_hidden_layers": 48,
         
     | 
| 17 | 
         
            +
                "num_key_value_heads": 8,
         
     | 
| 18 | 
         
            +
                "quantization": {
         
     | 
| 19 | 
         
            +
                    "group_size": 64,
         
     | 
| 20 | 
         
            +
                    "bits": 4
         
     | 
| 21 | 
         
            +
                },
         
     | 
| 22 | 
         
            +
                "quantization_config": {
         
     | 
| 23 | 
         
            +
                    "group_size": 64,
         
     | 
| 24 | 
         
            +
                    "bits": 4
         
     | 
| 25 | 
         
            +
                },
         
     | 
| 26 | 
         
            +
                "rms_norm_eps": 1e-05,
         
     | 
| 27 | 
         
            +
                "rope_scaling": null,
         
     | 
| 28 | 
         
            +
                "rope_theta": 1000000.0,
         
     | 
| 29 | 
         
            +
                "sliding_window": null,
         
     | 
| 30 | 
         
            +
                "tie_word_embeddings": false,
         
     | 
| 31 | 
         
            +
                "torch_dtype": "bfloat16",
         
     | 
| 32 | 
         
            +
                "transformers_version": "4.51.1",
         
     | 
| 33 | 
         
            +
                "use_cache": false,
         
     | 
| 34 | 
         
            +
                "use_sliding_window": false,
         
     | 
| 35 | 
         
            +
                "vocab_size": 152064
         
     | 
| 36 | 
         
            +
            }
         
     | 
    	
        model-00001-of-00002.safetensors
    ADDED
    
    | 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            version https://git-lfs.github.com/spec/v1
         
     | 
| 2 | 
         
            +
            oid sha256:abe909d2ec56a91d5ba96da54af4cf3414496e729d111cf9e14c7bbd1e8174bd
         
     | 
| 3 | 
         
            +
            size 5353840945
         
     | 
    	
        model-00002-of-00002.safetensors
    ADDED
    
    | 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            version https://git-lfs.github.com/spec/v1
         
     | 
| 2 | 
         
            +
            oid sha256:70ab0a19b679ca43a93dd39cee2d1e8ff98ebe8305b53de931908fb2c57c836c
         
     | 
| 3 | 
         
            +
            size 2955654333
         
     | 
    	
        model.safetensors.index.json
    ADDED
    
    | 
         The diff for this file is too large to render. 
		See raw diff 
     | 
| 
         | 
    	
        special_tokens_map.json
    ADDED
    
    | 
         @@ -0,0 +1,23 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            {
         
     | 
| 2 | 
         
            +
              "bos_token": {
         
     | 
| 3 | 
         
            +
                "content": "<|begin▁of▁sentence|>",
         
     | 
| 4 | 
         
            +
                "lstrip": false,
         
     | 
| 5 | 
         
            +
                "normalized": false,
         
     | 
| 6 | 
         
            +
                "rstrip": false,
         
     | 
| 7 | 
         
            +
                "single_word": false
         
     | 
| 8 | 
         
            +
              },
         
     | 
| 9 | 
         
            +
              "eos_token": {
         
     | 
| 10 | 
         
            +
                "content": "<|im_end|>",
         
     | 
| 11 | 
         
            +
                "lstrip": false,
         
     | 
| 12 | 
         
            +
                "normalized": false,
         
     | 
| 13 | 
         
            +
                "rstrip": false,
         
     | 
| 14 | 
         
            +
                "single_word": false
         
     | 
| 15 | 
         
            +
              },
         
     | 
| 16 | 
         
            +
              "pad_token": {
         
     | 
| 17 | 
         
            +
                "content": "<|end▁of▁sentence|>",
         
     | 
| 18 | 
         
            +
                "lstrip": false,
         
     | 
| 19 | 
         
            +
                "normalized": false,
         
     | 
| 20 | 
         
            +
                "rstrip": false,
         
     | 
| 21 | 
         
            +
                "single_word": false
         
     | 
| 22 | 
         
            +
              }
         
     | 
| 23 | 
         
            +
            }
         
     | 
    	
        tokenizer.json
    ADDED
    
    | 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            version https://git-lfs.github.com/spec/v1
         
     | 
| 2 | 
         
            +
            oid sha256:02643f00207dfc5ed248992486bde04314c21dca556bf65ce520690962b8db63
         
     | 
| 3 | 
         
            +
            size 11422965
         
     | 
    	
        tokenizer_config.json
    ADDED
    
    | 
         @@ -0,0 +1,204 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            {
         
     | 
| 2 | 
         
            +
              "add_bos_token": true,
         
     | 
| 3 | 
         
            +
              "add_eos_token": false,
         
     | 
| 4 | 
         
            +
              "add_prefix_space": null,
         
     | 
| 5 | 
         
            +
              "added_tokens_decoder": {
         
     | 
| 6 | 
         
            +
                "151643": {
         
     | 
| 7 | 
         
            +
                  "content": "<|end▁of▁sentence|>",
         
     | 
| 8 | 
         
            +
                  "lstrip": false,
         
     | 
| 9 | 
         
            +
                  "normalized": false,
         
     | 
| 10 | 
         
            +
                  "rstrip": false,
         
     | 
| 11 | 
         
            +
                  "single_word": false,
         
     | 
| 12 | 
         
            +
                  "special": true
         
     | 
| 13 | 
         
            +
                },
         
     | 
| 14 | 
         
            +
                "151644": {
         
     | 
| 15 | 
         
            +
                  "content": "<|User|>",
         
     | 
| 16 | 
         
            +
                  "lstrip": false,
         
     | 
| 17 | 
         
            +
                  "normalized": false,
         
     | 
| 18 | 
         
            +
                  "rstrip": false,
         
     | 
| 19 | 
         
            +
                  "single_word": false,
         
     | 
| 20 | 
         
            +
                  "special": false
         
     | 
| 21 | 
         
            +
                },
         
     | 
| 22 | 
         
            +
                "151645": {
         
     | 
| 23 | 
         
            +
                  "content": "<|Assistant|>",
         
     | 
| 24 | 
         
            +
                  "lstrip": false,
         
     | 
| 25 | 
         
            +
                  "normalized": false,
         
     | 
| 26 | 
         
            +
                  "rstrip": false,
         
     | 
| 27 | 
         
            +
                  "single_word": false,
         
     | 
| 28 | 
         
            +
                  "special": false
         
     | 
| 29 | 
         
            +
                },
         
     | 
| 30 | 
         
            +
                "151646": {
         
     | 
| 31 | 
         
            +
                  "content": "<|begin▁of▁sentence|>",
         
     | 
| 32 | 
         
            +
                  "lstrip": false,
         
     | 
| 33 | 
         
            +
                  "normalized": false,
         
     | 
| 34 | 
         
            +
                  "rstrip": false,
         
     | 
| 35 | 
         
            +
                  "single_word": false,
         
     | 
| 36 | 
         
            +
                  "special": true
         
     | 
| 37 | 
         
            +
                },
         
     | 
| 38 | 
         
            +
                "151647": {
         
     | 
| 39 | 
         
            +
                  "content": "<|EOT|>",
         
     | 
| 40 | 
         
            +
                  "lstrip": false,
         
     | 
| 41 | 
         
            +
                  "normalized": false,
         
     | 
| 42 | 
         
            +
                  "rstrip": false,
         
     | 
| 43 | 
         
            +
                  "single_word": false,
         
     | 
| 44 | 
         
            +
                  "special": false
         
     | 
| 45 | 
         
            +
                },
         
     | 
| 46 | 
         
            +
                "151648": {
         
     | 
| 47 | 
         
            +
                  "content": "<think>",
         
     | 
| 48 | 
         
            +
                  "lstrip": false,
         
     | 
| 49 | 
         
            +
                  "normalized": false,
         
     | 
| 50 | 
         
            +
                  "rstrip": false,
         
     | 
| 51 | 
         
            +
                  "single_word": false,
         
     | 
| 52 | 
         
            +
                  "special": false
         
     | 
| 53 | 
         
            +
                },
         
     | 
| 54 | 
         
            +
                "151649": {
         
     | 
| 55 | 
         
            +
                  "content": "</think>",
         
     | 
| 56 | 
         
            +
                  "lstrip": false,
         
     | 
| 57 | 
         
            +
                  "normalized": false,
         
     | 
| 58 | 
         
            +
                  "rstrip": false,
         
     | 
| 59 | 
         
            +
                  "single_word": false,
         
     | 
| 60 | 
         
            +
                  "special": false
         
     | 
| 61 | 
         
            +
                },
         
     | 
| 62 | 
         
            +
                "151650": {
         
     | 
| 63 | 
         
            +
                  "content": "<|quad_start|>",
         
     | 
| 64 | 
         
            +
                  "lstrip": false,
         
     | 
| 65 | 
         
            +
                  "normalized": false,
         
     | 
| 66 | 
         
            +
                  "rstrip": false,
         
     | 
| 67 | 
         
            +
                  "single_word": false,
         
     | 
| 68 | 
         
            +
                  "special": true
         
     | 
| 69 | 
         
            +
                },
         
     | 
| 70 | 
         
            +
                "151651": {
         
     | 
| 71 | 
         
            +
                  "content": "<|quad_end|>",
         
     | 
| 72 | 
         
            +
                  "lstrip": false,
         
     | 
| 73 | 
         
            +
                  "normalized": false,
         
     | 
| 74 | 
         
            +
                  "rstrip": false,
         
     | 
| 75 | 
         
            +
                  "single_word": false,
         
     | 
| 76 | 
         
            +
                  "special": true
         
     | 
| 77 | 
         
            +
                },
         
     | 
| 78 | 
         
            +
                "151652": {
         
     | 
| 79 | 
         
            +
                  "content": "<|vision_start|>",
         
     | 
| 80 | 
         
            +
                  "lstrip": false,
         
     | 
| 81 | 
         
            +
                  "normalized": false,
         
     | 
| 82 | 
         
            +
                  "rstrip": false,
         
     | 
| 83 | 
         
            +
                  "single_word": false,
         
     | 
| 84 | 
         
            +
                  "special": true
         
     | 
| 85 | 
         
            +
                },
         
     | 
| 86 | 
         
            +
                "151653": {
         
     | 
| 87 | 
         
            +
                  "content": "<|vision_end|>",
         
     | 
| 88 | 
         
            +
                  "lstrip": false,
         
     | 
| 89 | 
         
            +
                  "normalized": false,
         
     | 
| 90 | 
         
            +
                  "rstrip": false,
         
     | 
| 91 | 
         
            +
                  "single_word": false,
         
     | 
| 92 | 
         
            +
                  "special": true
         
     | 
| 93 | 
         
            +
                },
         
     | 
| 94 | 
         
            +
                "151654": {
         
     | 
| 95 | 
         
            +
                  "content": "<|vision_pad|>",
         
     | 
| 96 | 
         
            +
                  "lstrip": false,
         
     | 
| 97 | 
         
            +
                  "normalized": false,
         
     | 
| 98 | 
         
            +
                  "rstrip": false,
         
     | 
| 99 | 
         
            +
                  "single_word": false,
         
     | 
| 100 | 
         
            +
                  "special": true
         
     | 
| 101 | 
         
            +
                },
         
     | 
| 102 | 
         
            +
                "151655": {
         
     | 
| 103 | 
         
            +
                  "content": "<|image_pad|>",
         
     | 
| 104 | 
         
            +
                  "lstrip": false,
         
     | 
| 105 | 
         
            +
                  "normalized": false,
         
     | 
| 106 | 
         
            +
                  "rstrip": false,
         
     | 
| 107 | 
         
            +
                  "single_word": false,
         
     | 
| 108 | 
         
            +
                  "special": true
         
     | 
| 109 | 
         
            +
                },
         
     | 
| 110 | 
         
            +
                "151656": {
         
     | 
| 111 | 
         
            +
                  "content": "<|video_pad|>",
         
     | 
| 112 | 
         
            +
                  "lstrip": false,
         
     | 
| 113 | 
         
            +
                  "normalized": false,
         
     | 
| 114 | 
         
            +
                  "rstrip": false,
         
     | 
| 115 | 
         
            +
                  "single_word": false,
         
     | 
| 116 | 
         
            +
                  "special": true
         
     | 
| 117 | 
         
            +
                },
         
     | 
| 118 | 
         
            +
                "151657": {
         
     | 
| 119 | 
         
            +
                  "content": "<tool_call>",
         
     | 
| 120 | 
         
            +
                  "lstrip": false,
         
     | 
| 121 | 
         
            +
                  "normalized": false,
         
     | 
| 122 | 
         
            +
                  "rstrip": false,
         
     | 
| 123 | 
         
            +
                  "single_word": false,
         
     | 
| 124 | 
         
            +
                  "special": false
         
     | 
| 125 | 
         
            +
                },
         
     | 
| 126 | 
         
            +
                "151658": {
         
     | 
| 127 | 
         
            +
                  "content": "</tool_call>",
         
     | 
| 128 | 
         
            +
                  "lstrip": false,
         
     | 
| 129 | 
         
            +
                  "normalized": false,
         
     | 
| 130 | 
         
            +
                  "rstrip": false,
         
     | 
| 131 | 
         
            +
                  "single_word": false,
         
     | 
| 132 | 
         
            +
                  "special": false
         
     | 
| 133 | 
         
            +
                },
         
     | 
| 134 | 
         
            +
                "151659": {
         
     | 
| 135 | 
         
            +
                  "content": "<|fim_prefix|>",
         
     | 
| 136 | 
         
            +
                  "lstrip": false,
         
     | 
| 137 | 
         
            +
                  "normalized": false,
         
     | 
| 138 | 
         
            +
                  "rstrip": false,
         
     | 
| 139 | 
         
            +
                  "single_word": false,
         
     | 
| 140 | 
         
            +
                  "special": false
         
     | 
| 141 | 
         
            +
                },
         
     | 
| 142 | 
         
            +
                "151660": {
         
     | 
| 143 | 
         
            +
                  "content": "<|fim_middle|>",
         
     | 
| 144 | 
         
            +
                  "lstrip": false,
         
     | 
| 145 | 
         
            +
                  "normalized": false,
         
     | 
| 146 | 
         
            +
                  "rstrip": false,
         
     | 
| 147 | 
         
            +
                  "single_word": false,
         
     | 
| 148 | 
         
            +
                  "special": false
         
     | 
| 149 | 
         
            +
                },
         
     | 
| 150 | 
         
            +
                "151661": {
         
     | 
| 151 | 
         
            +
                  "content": "<|fim_suffix|>",
         
     | 
| 152 | 
         
            +
                  "lstrip": false,
         
     | 
| 153 | 
         
            +
                  "normalized": false,
         
     | 
| 154 | 
         
            +
                  "rstrip": false,
         
     | 
| 155 | 
         
            +
                  "single_word": false,
         
     | 
| 156 | 
         
            +
                  "special": false
         
     | 
| 157 | 
         
            +
                },
         
     | 
| 158 | 
         
            +
                "151662": {
         
     | 
| 159 | 
         
            +
                  "content": "<|fim_pad|>",
         
     | 
| 160 | 
         
            +
                  "lstrip": false,
         
     | 
| 161 | 
         
            +
                  "normalized": false,
         
     | 
| 162 | 
         
            +
                  "rstrip": false,
         
     | 
| 163 | 
         
            +
                  "single_word": false,
         
     | 
| 164 | 
         
            +
                  "special": false
         
     | 
| 165 | 
         
            +
                },
         
     | 
| 166 | 
         
            +
                "151663": {
         
     | 
| 167 | 
         
            +
                  "content": "<|repo_name|>",
         
     | 
| 168 | 
         
            +
                  "lstrip": false,
         
     | 
| 169 | 
         
            +
                  "normalized": false,
         
     | 
| 170 | 
         
            +
                  "rstrip": false,
         
     | 
| 171 | 
         
            +
                  "single_word": false,
         
     | 
| 172 | 
         
            +
                  "special": false
         
     | 
| 173 | 
         
            +
                },
         
     | 
| 174 | 
         
            +
                "151664": {
         
     | 
| 175 | 
         
            +
                  "content": "<|file_sep|>",
         
     | 
| 176 | 
         
            +
                  "lstrip": false,
         
     | 
| 177 | 
         
            +
                  "normalized": false,
         
     | 
| 178 | 
         
            +
                  "rstrip": false,
         
     | 
| 179 | 
         
            +
                  "single_word": false,
         
     | 
| 180 | 
         
            +
                  "special": false
         
     | 
| 181 | 
         
            +
                },
         
     | 
| 182 | 
         
            +
                "151665": {
         
     | 
| 183 | 
         
            +
                  "content": "<|im_end|>",
         
     | 
| 184 | 
         
            +
                  "lstrip": false,
         
     | 
| 185 | 
         
            +
                  "normalized": false,
         
     | 
| 186 | 
         
            +
                  "rstrip": false,
         
     | 
| 187 | 
         
            +
                  "single_word": false,
         
     | 
| 188 | 
         
            +
                  "special": true
         
     | 
| 189 | 
         
            +
                }
         
     | 
| 190 | 
         
            +
              },
         
     | 
| 191 | 
         
            +
              "bos_token": "<|begin▁of▁sentence|>",
         
     | 
| 192 | 
         
            +
              "clean_up_tokenization_spaces": false,
         
     | 
| 193 | 
         
            +
              "eos_token": "<|im_end|>",
         
     | 
| 194 | 
         
            +
              "extra_special_tokens": {},
         
     | 
| 195 | 
         
            +
              "legacy": true,
         
     | 
| 196 | 
         
            +
              "model_max_length": 16384,
         
     | 
| 197 | 
         
            +
              "pad_token": "<|end▁of▁sentence|>",
         
     | 
| 198 | 
         
            +
              "padding_side": "right",
         
     | 
| 199 | 
         
            +
              "sp_model_kwargs": {},
         
     | 
| 200 | 
         
            +
              "split_special_tokens": false,
         
     | 
| 201 | 
         
            +
              "tokenizer_class": "LlamaTokenizerFast",
         
     | 
| 202 | 
         
            +
              "unk_token": null,
         
     | 
| 203 | 
         
            +
              "use_default_system_prompt": false
         
     | 
| 204 | 
         
            +
            }
         
     |