Upload processor
Browse files- chat_template.json +3 -0
- preprocessor_config.json +29 -0
- processor_config.json +4 -0
    	
        chat_template.json
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n    {%- if messages[0]['content'] is string -%}\n        {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n    {%- else -%}\n        {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n    {%- endif -%}\n    {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n    {%- set first_user_prefix = \"\" -%}\n    {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n    {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n        {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n    {%- endif -%}\n    {%- if (message['role'] == 'assistant') -%}\n        {%- set role = \"model\" -%}\n    {%- else -%}\n        {%- set role = message['role'] -%}\n    {%- endif -%}\n    {{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n    {%- if message['content'] is string -%}\n        {{ message['content'] | trim }}\n    {%- elif message['content'] is iterable -%}\n        {%- for item in message['content'] -%}\n            {%- if item['type'] == 'image' -%}\n                {{ '<start_of_image>' }}\n            {%- elif item['type'] == 'text' -%}\n                {{ item['text'] | trim }}\n            {%- endif -%}\n        {%- endfor -%}\n    {%- else -%}\n        {{ raise_exception(\"Invalid content type\") }}\n    {%- endif -%}\n    {{ '<end_of_turn>\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n    {{'<start_of_turn>model\n'}}\n{%- endif -%}\n"
         | 
| 3 | 
            +
            }
         | 
    	
        preprocessor_config.json
    ADDED
    
    | @@ -0,0 +1,29 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "do_convert_rgb": null,
         | 
| 3 | 
            +
              "do_normalize": true,
         | 
| 4 | 
            +
              "do_pan_and_scan": null,
         | 
| 5 | 
            +
              "do_rescale": true,
         | 
| 6 | 
            +
              "do_resize": true,
         | 
| 7 | 
            +
              "image_mean": [
         | 
| 8 | 
            +
                0.5,
         | 
| 9 | 
            +
                0.5,
         | 
| 10 | 
            +
                0.5
         | 
| 11 | 
            +
              ],
         | 
| 12 | 
            +
              "image_processor_type": "Gemma3ImageProcessor",
         | 
| 13 | 
            +
              "image_seq_length": 256,
         | 
| 14 | 
            +
              "image_std": [
         | 
| 15 | 
            +
                0.5,
         | 
| 16 | 
            +
                0.5,
         | 
| 17 | 
            +
                0.5
         | 
| 18 | 
            +
              ],
         | 
| 19 | 
            +
              "pan_and_scan_max_num_crops": null,
         | 
| 20 | 
            +
              "pan_and_scan_min_crop_size": null,
         | 
| 21 | 
            +
              "pan_and_scan_min_ratio_to_activate": null,
         | 
| 22 | 
            +
              "processor_class": "Gemma3Processor",
         | 
| 23 | 
            +
              "resample": 2,
         | 
| 24 | 
            +
              "rescale_factor": 0.00392156862745098,
         | 
| 25 | 
            +
              "size": {
         | 
| 26 | 
            +
                "height": 896,
         | 
| 27 | 
            +
                "width": 896
         | 
| 28 | 
            +
              }
         | 
| 29 | 
            +
            }
         | 
    	
        processor_config.json
    ADDED
    
    | @@ -0,0 +1,4 @@ | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "image_seq_length": 256,
         | 
| 3 | 
            +
              "processor_class": "Gemma3Processor"
         | 
| 4 | 
            +
            }
         |