Update config.json
Browse files- config.json +32 -29
    	
        config.json
    CHANGED
    
    | @@ -1,37 +1,40 @@ | |
| 1 | 
             
            {
         | 
| 2 | 
             
              "architectures": [
         | 
| 3 | 
            -
                " | 
| 4 | 
             
              ],
         | 
| 5 | 
            -
              " | 
| 6 | 
            -
              " | 
| 7 | 
            -
              " | 
| 8 | 
            -
             | 
| 9 | 
            -
             | 
| 10 | 
            -
               | 
| 11 | 
            -
              " | 
| 12 | 
            -
              "head_dim": 256,
         | 
| 13 | 
            -
              "hidden_activation": "gelu_pytorch_tanh",
         | 
| 14 | 
            -
              "hidden_size": 3840,
         | 
| 15 | 
             
              "initializer_range": 0.02,
         | 
| 16 | 
            -
              " | 
| 17 | 
            -
              " | 
| 18 | 
            -
              " | 
| 19 | 
            -
             | 
| 20 | 
            -
             | 
| 21 | 
            -
             | 
| 22 | 
            -
             | 
| 23 | 
            -
             | 
| 24 | 
            -
             | 
| 25 | 
            -
             | 
| 26 | 
            -
             | 
| 27 | 
            -
             | 
| 28 | 
            -
                 | 
|  | |
| 29 | 
             
              },
         | 
| 30 | 
            -
              "rope_theta": 1000000.0,
         | 
| 31 | 
            -
              "sliding_window": 1024,
         | 
| 32 | 
            -
              "sliding_window_pattern": 6,
         | 
| 33 | 
             
              "torch_dtype": "bfloat16",
         | 
| 34 | 
             
              "transformers_version": "4.50.0.dev0",
         | 
| 35 | 
            -
              " | 
| 36 | 
            -
             | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 37 | 
             
            }
         | 
|  | |
| 1 | 
             
            {
         | 
| 2 | 
             
              "architectures": [
         | 
| 3 | 
            +
                "Gemma3ForConditionalGeneration"
         | 
| 4 | 
             
              ],
         | 
| 5 | 
            +
              "boi_token_index": 255999,
         | 
| 6 | 
            +
              "eoi_token_index": 256000,
         | 
| 7 | 
            +
              "eos_token_id": [
         | 
| 8 | 
            +
                1,
         | 
| 9 | 
            +
                106
         | 
| 10 | 
            +
              ],
         | 
| 11 | 
            +
              "image_token_index": 262144,
         | 
|  | |
|  | |
|  | |
| 12 | 
             
              "initializer_range": 0.02,
         | 
| 13 | 
            +
              "mm_tokens_per_image": 256,
         | 
| 14 | 
            +
              "model_type": "gemma3",
         | 
| 15 | 
            +
              "text_config": {
         | 
| 16 | 
            +
                "hidden_size": 3840,
         | 
| 17 | 
            +
                "intermediate_size": 15360,
         | 
| 18 | 
            +
                "model_type": "gemma3_text",
         | 
| 19 | 
            +
                "num_attention_heads": 16,
         | 
| 20 | 
            +
                "num_hidden_layers": 48,
         | 
| 21 | 
            +
                "num_key_value_heads": 8,
         | 
| 22 | 
            +
                "rope_scaling": {
         | 
| 23 | 
            +
                  "factor": 8.0,
         | 
| 24 | 
            +
                  "rope_type": "linear"
         | 
| 25 | 
            +
                },
         | 
| 26 | 
            +
                "sliding_window": 1024
         | 
| 27 | 
             
              },
         | 
|  | |
|  | |
|  | |
| 28 | 
             
              "torch_dtype": "bfloat16",
         | 
| 29 | 
             
              "transformers_version": "4.50.0.dev0",
         | 
| 30 | 
            +
              "vision_config": {
         | 
| 31 | 
            +
                "hidden_size": 1152,
         | 
| 32 | 
            +
                "image_size": 896,
         | 
| 33 | 
            +
                "intermediate_size": 4304,
         | 
| 34 | 
            +
                "model_type": "siglip_vision_model",
         | 
| 35 | 
            +
                "num_attention_heads": 16,
         | 
| 36 | 
            +
                "num_hidden_layers": 27,
         | 
| 37 | 
            +
                "patch_size": 14,
         | 
| 38 | 
            +
                "vision_use_head": false
         | 
| 39 | 
            +
              }
         | 
| 40 | 
             
            }
         |