Upload folder using huggingface_hub
Browse files- chat_template.json +3 -0
- config.json +61 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model-00001-of-00038.safetensors +3 -0
- model-00002-of-00038.safetensors +3 -0
- model-00003-of-00038.safetensors +3 -0
- model-00004-of-00038.safetensors +3 -0
- model-00005-of-00038.safetensors +3 -0
- model-00006-of-00038.safetensors +3 -0
- model-00007-of-00038.safetensors +3 -0
- model-00008-of-00038.safetensors +3 -0
- model-00009-of-00038.safetensors +3 -0
- model-00010-of-00038.safetensors +3 -0
- model-00011-of-00038.safetensors +3 -0
- model-00012-of-00038.safetensors +3 -0
- model-00013-of-00038.safetensors +3 -0
- model-00014-of-00038.safetensors +3 -0
- model-00015-of-00038.safetensors +3 -0
- model-00016-of-00038.safetensors +3 -0
- model-00017-of-00038.safetensors +3 -0
- model-00018-of-00038.safetensors +3 -0
- model-00019-of-00038.safetensors +3 -0
- model-00020-of-00038.safetensors +3 -0
- model-00021-of-00038.safetensors +3 -0
- model-00022-of-00038.safetensors +3 -0
- model-00023-of-00038.safetensors +3 -0
- model-00024-of-00038.safetensors +3 -0
- model-00025-of-00038.safetensors +3 -0
- model-00026-of-00038.safetensors +3 -0
- model-00027-of-00038.safetensors +3 -0
- model-00028-of-00038.safetensors +3 -0
- model-00029-of-00038.safetensors +3 -0
- model-00030-of-00038.safetensors +3 -0
- model-00031-of-00038.safetensors +3 -0
- model-00032-of-00038.safetensors +3 -0
- model-00033-of-00038.safetensors +3 -0
- model-00034-of-00038.safetensors +3 -0
- model-00035-of-00038.safetensors +3 -0
- model-00036-of-00038.safetensors +3 -0
- model-00037-of-00038.safetensors +3 -0
- model-00038-of-00038.safetensors +3 -0
- model.safetensors.index.json +0 -0
- preprocessor_config.json +19 -0
- tokenizer.json +0 -0
- tokenizer_config.json +207 -0
- vocab.json +0 -0
    	
        chat_template.json
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
         | 
| 3 | 
            +
            }
         | 
    	
        config.json
    ADDED
    
    | @@ -0,0 +1,61 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "architectures": [
         | 
| 3 | 
            +
                "Qwen2_5_VLForConditionalGeneration"
         | 
| 4 | 
            +
              ],
         | 
| 5 | 
            +
              "attention_dropout": 0.0,
         | 
| 6 | 
            +
              "bos_token_id": 151643,
         | 
| 7 | 
            +
              "eos_token_id": 151645,
         | 
| 8 | 
            +
              "vision_start_token_id": 151652,
         | 
| 9 | 
            +
              "vision_end_token_id": 151653,
         | 
| 10 | 
            +
              "vision_token_id": 151654,
         | 
| 11 | 
            +
              "image_token_id": 151655,
         | 
| 12 | 
            +
              "video_token_id": 151656,
         | 
| 13 | 
            +
              "hidden_act": "silu",
         | 
| 14 | 
            +
              "hidden_size": 8192,
         | 
| 15 | 
            +
              "initializer_range": 0.02,
         | 
| 16 | 
            +
              "intermediate_size": 29568,
         | 
| 17 | 
            +
              "max_position_embeddings": 128000,
         | 
| 18 | 
            +
              "max_window_layers": 80,
         | 
| 19 | 
            +
              "model_type": "qwen2_5_vl",
         | 
| 20 | 
            +
              "num_attention_heads": 64,
         | 
| 21 | 
            +
              "num_hidden_layers": 80,
         | 
| 22 | 
            +
              "num_key_value_heads": 8,
         | 
| 23 | 
            +
              "rms_norm_eps": 1e-06,
         | 
| 24 | 
            +
              "rope_theta": 1000000.0,
         | 
| 25 | 
            +
              "sliding_window": 32768,
         | 
| 26 | 
            +
              "tie_word_embeddings": false,
         | 
| 27 | 
            +
              "torch_dtype": "bfloat16",
         | 
| 28 | 
            +
              "transformers_version": "4.41.2",
         | 
| 29 | 
            +
              "use_cache": true,
         | 
| 30 | 
            +
              "use_sliding_window": false,
         | 
| 31 | 
            +
              "vision_config": {
         | 
| 32 | 
            +
                "depth": 32,
         | 
| 33 | 
            +
                "hidden_act": "silu",
         | 
| 34 | 
            +
                "hidden_size": 1280,
         | 
| 35 | 
            +
                "intermediate_size": 3456,
         | 
| 36 | 
            +
                "num_heads": 16,
         | 
| 37 | 
            +
                "in_chans": 3,
         | 
| 38 | 
            +
                "out_hidden_size": 8192,
         | 
| 39 | 
            +
                "patch_size": 14,
         | 
| 40 | 
            +
                "spatial_merge_size": 2,
         | 
| 41 | 
            +
                "spatial_patch_size": 14,
         | 
| 42 | 
            +
                "window_size": 112,
         | 
| 43 | 
            +
                "fullatt_block_indexes": [
         | 
| 44 | 
            +
                  7,
         | 
| 45 | 
            +
                  15,
         | 
| 46 | 
            +
                  23,
         | 
| 47 | 
            +
                  31
         | 
| 48 | 
            +
                ],
         | 
| 49 | 
            +
                "tokens_per_second": 2,
         | 
| 50 | 
            +
                "temporal_patch_size": 2
         | 
| 51 | 
            +
              },
         | 
| 52 | 
            +
              "rope_scaling": {
         | 
| 53 | 
            +
                "type": "mrope",
         | 
| 54 | 
            +
                "mrope_section": [
         | 
| 55 | 
            +
                  16,
         | 
| 56 | 
            +
                  24,
         | 
| 57 | 
            +
                  24
         | 
| 58 | 
            +
                ]
         | 
| 59 | 
            +
              },
         | 
| 60 | 
            +
              "vocab_size": 152064
         | 
| 61 | 
            +
            }
         | 
    	
        generation_config.json
    ADDED
    
    | @@ -0,0 +1,14 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "bos_token_id": 151643,
         | 
| 3 | 
            +
              "pad_token_id": 151643,
         | 
| 4 | 
            +
              "do_sample": true,
         | 
| 5 | 
            +
              "eos_token_id": [
         | 
| 6 | 
            +
                151645,
         | 
| 7 | 
            +
                151643
         | 
| 8 | 
            +
              ],
         | 
| 9 | 
            +
              "repetition_penalty": 1.05,
         | 
| 10 | 
            +
              "temperature": 1,
         | 
| 11 | 
            +
              "top_p": 0.001,
         | 
| 12 | 
            +
              "top_k": 1,
         | 
| 13 | 
            +
              "transformers_version": "4.37.0"
         | 
| 14 | 
            +
            }
         | 
    	
        merges.txt
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        model-00001-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:4d35297e3d812dfc5008955f89d33c684a823e0798fcebd03afcb68d4b56b173
         | 
| 3 | 
            +
            size 3900622992
         | 
    	
        model-00002-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:35039b606fd283b1c2d01779edf5b316793a0d495429b277baa5216177e6754f
         | 
| 3 | 
            +
            size 3812769392
         | 
    	
        model-00003-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:1f79cf3cf38a5b903e70fffbf7e46bf958cf55dfac9e2120dc74c4ba478c2ab7
         | 
| 3 | 
            +
            size 3995183944
         | 
    	
        model-00004-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:81efdd682f485f0c14844d4ea36cfc5cedaa7aa9e64474f24e1b0ca6b7d20748
         | 
| 3 | 
            +
            size 3995183944
         | 
    	
        model-00005-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:36316ff00732a185bb4f409c9d0d94a713ac35b3ad73996828921ba6b45ae456
         | 
| 3 | 
            +
            size 3995200440
         | 
    	
        model-00006-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:791cef1c4fddd52492f69f9ee1043d23782b632a3f376d7426c42329cde3588b
         | 
| 3 | 
            +
            size 3812769400
         | 
    	
        model-00007-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:93f9e978e31dbc380661ac7bde41b12b8a56a8db98db5d56704daf63b4caaf3c
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00008-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ef2c2ceb4b03037f9948406a5b432c114c59738e63bbf09a7b3584ef1555fd45
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00009-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:bfbe73d620bdd03af42b21e264610ffd4372bc594d0ca7f04dfc90fdb924878d
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00010-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:5c2835a35034783ed525ec38fd825b5dd4ca1621d3037f05a94870ae9441768a
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00011-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:c36b82dc4bd8a72daaa379d55e6d60383bbdbc3a4754f8631d19e33becb28a2f
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00012-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:5f51e338bce17df8d6520157bceaa774edd206a330008af8dda1f59fc3171e9e
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00013-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ed1303d2a83c83cce7664f99fafcd31c83b52349c3410e4eb06024b267714c57
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00014-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:1affc94d9512e9d9a154fc9f22b567a52628a9d6b5337515968fd7b447a8c5e6
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00015-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:10ca486bf73e649fd2aef6f461a2f1bfe1aad64f0aa22d3bfb731a755dba0705
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00016-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:44e20834654311173ba25c20cb66836c5def42ad027b256ed1c6c0d0dfb675bc
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00017-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:c69a4d5191c423794bd9e2fa70bfddc0f57d87baafcaf39bb72476542b0b7498
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00018-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:3dcf567915d92dcac0c05ecb2345280d843d302e0d3b4636e91e51a45726979c
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00019-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:5d6723d2e6008332df186a8c083cb29228c620e2f0d9eb43682b39b56fe77713
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00020-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:00c5d22593422b8874338c55a15870bae2a0026776a69653daef7eafb3501bd8
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00021-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:f6d3d0ef425638d2deb16fb0c879cb1da12e095d27bd2d14a5d95e9a859233a0
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00022-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:7c82bc721d5414ec092e4daba3405f014cfbe6b80367b71f86b1a8616b37496b
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00023-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:1b2476cada32a2c2f12ca3afdac36b306dbefabe3073bd66fdba20c7c2148578
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00024-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:827003d07370f5d85e4e29fde5952ed9c93d97d3db88c2a4e78e0f04101bdb41
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00025-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:fa0b2212c92b06c192787613d8deb67440bdcb82452fe37e5be3f8de501a8bfe
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00026-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:0d2886961a7cc06955bee921a2f844a9370cf658cd1de33839fca7e2e1b3f1ae
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00027-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:a6b22b083984170384370762bd46e1ef690db5cac3168c57ae04ca3228bfe710
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00028-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:0940176e8d7a4d722b8a11d3f5158de867b4969f3d3ef90ecd4050ab4f011536
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00029-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:a8317367d87a1b4c1f254c074225b16eba0acb3391cb52e682c9ec004cf08fa5
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00030-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:b906665ccd0d2b5143c18e627333951545f70ca1415a18b24f953895d4ca6b3d
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00031-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:73bf6bd0686cc088f1aa5205283ab235dba92af949c48be6e6c04572d03b7972
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00032-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:13ea8296dd40e99cf3ce8de4435bd6740cb88f4fa8b2dbf256b969606853143f
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00033-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:f5a4eea30a8a0a2143fb90397a1600f223b9d0c395b007cfe03673eae1c43c5a
         | 
| 3 | 
            +
            size 3995200464
         | 
    	
        model-00034-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ea65a4c7d00503467334d843865a136a22064dc34010e35ef06208ccf9a59c55
         | 
| 3 | 
            +
            size 3812769424
         | 
    	
        model-00035-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ea4569e19f1aacdd8d5c0cf11bfb4f751bc9e8e02dc64c3555bebe883a759897
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00036-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:e8f0fbf12bd8123b338b2f7e14706307fab75047a56a1143648083e11564a8d1
         | 
| 3 | 
            +
            size 3995183968
         | 
    	
        model-00037-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:ef6c4895570177b6cc11d4415c214e2e7edf96771d01855727c0d7f397337a33
         | 
| 3 | 
            +
            size 2239829584
         | 
    	
        model-00038-of-00038.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:f9b524193abf7718f1c37f3110a7540c6ca4caef5a5584038c77660acc20f02d
         | 
| 3 | 
            +
            size 2491416704
         | 
    	
        model.safetensors.index.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        preprocessor_config.json
    ADDED
    
    | @@ -0,0 +1,19 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "min_pixels": 3136,
         | 
| 3 | 
            +
              "max_pixels": 12845056,
         | 
| 4 | 
            +
              "patch_size": 14,
         | 
| 5 | 
            +
              "temporal_patch_size": 2,
         | 
| 6 | 
            +
              "merge_size": 2,
         | 
| 7 | 
            +
              "image_mean": [
         | 
| 8 | 
            +
                0.48145466,
         | 
| 9 | 
            +
                0.4578275,
         | 
| 10 | 
            +
                0.40821073
         | 
| 11 | 
            +
              ],
         | 
| 12 | 
            +
              "image_std": [
         | 
| 13 | 
            +
                0.26862954,
         | 
| 14 | 
            +
                0.26130258,
         | 
| 15 | 
            +
                0.27577711
         | 
| 16 | 
            +
              ],
         | 
| 17 | 
            +
              "image_processor_type": "Qwen2_5_VLImageProcessor",
         | 
| 18 | 
            +
              "processor_class": "Qwen2_5_VLProcessor"
         | 
| 19 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer_config.json
    ADDED
    
    | @@ -0,0 +1,207 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "add_prefix_space": false,
         | 
| 3 | 
            +
              "added_tokens_decoder": {
         | 
| 4 | 
            +
                "151643": {
         | 
| 5 | 
            +
                  "content": "<|endoftext|>",
         | 
| 6 | 
            +
                  "lstrip": false,
         | 
| 7 | 
            +
                  "normalized": false,
         | 
| 8 | 
            +
                  "rstrip": false,
         | 
| 9 | 
            +
                  "single_word": false,
         | 
| 10 | 
            +
                  "special": true
         | 
| 11 | 
            +
                },
         | 
| 12 | 
            +
                "151644": {
         | 
| 13 | 
            +
                  "content": "<|im_start|>",
         | 
| 14 | 
            +
                  "lstrip": false,
         | 
| 15 | 
            +
                  "normalized": false,
         | 
| 16 | 
            +
                  "rstrip": false,
         | 
| 17 | 
            +
                  "single_word": false,
         | 
| 18 | 
            +
                  "special": true
         | 
| 19 | 
            +
                },
         | 
| 20 | 
            +
                "151645": {
         | 
| 21 | 
            +
                  "content": "<|im_end|>",
         | 
| 22 | 
            +
                  "lstrip": false,
         | 
| 23 | 
            +
                  "normalized": false,
         | 
| 24 | 
            +
                  "rstrip": false,
         | 
| 25 | 
            +
                  "single_word": false,
         | 
| 26 | 
            +
                  "special": true
         | 
| 27 | 
            +
                },
         | 
| 28 | 
            +
                "151646": {
         | 
| 29 | 
            +
                  "content": "<|object_ref_start|>",
         | 
| 30 | 
            +
                  "lstrip": false,
         | 
| 31 | 
            +
                  "normalized": false,
         | 
| 32 | 
            +
                  "rstrip": false,
         | 
| 33 | 
            +
                  "single_word": false,
         | 
| 34 | 
            +
                  "special": true
         | 
| 35 | 
            +
                },
         | 
| 36 | 
            +
                "151647": {
         | 
| 37 | 
            +
                  "content": "<|object_ref_end|>",
         | 
| 38 | 
            +
                  "lstrip": false,
         | 
| 39 | 
            +
                  "normalized": false,
         | 
| 40 | 
            +
                  "rstrip": false,
         | 
| 41 | 
            +
                  "single_word": false,
         | 
| 42 | 
            +
                  "special": true
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                "151648": {
         | 
| 45 | 
            +
                  "content": "<|box_start|>",
         | 
| 46 | 
            +
                  "lstrip": false,
         | 
| 47 | 
            +
                  "normalized": false,
         | 
| 48 | 
            +
                  "rstrip": false,
         | 
| 49 | 
            +
                  "single_word": false,
         | 
| 50 | 
            +
                  "special": true
         | 
| 51 | 
            +
                },
         | 
| 52 | 
            +
                "151649": {
         | 
| 53 | 
            +
                  "content": "<|box_end|>",
         | 
| 54 | 
            +
                  "lstrip": false,
         | 
| 55 | 
            +
                  "normalized": false,
         | 
| 56 | 
            +
                  "rstrip": false,
         | 
| 57 | 
            +
                  "single_word": false,
         | 
| 58 | 
            +
                  "special": true
         | 
| 59 | 
            +
                },
         | 
| 60 | 
            +
                "151650": {
         | 
| 61 | 
            +
                  "content": "<|quad_start|>",
         | 
| 62 | 
            +
                  "lstrip": false,
         | 
| 63 | 
            +
                  "normalized": false,
         | 
| 64 | 
            +
                  "rstrip": false,
         | 
| 65 | 
            +
                  "single_word": false,
         | 
| 66 | 
            +
                  "special": true
         | 
| 67 | 
            +
                },
         | 
| 68 | 
            +
                "151651": {
         | 
| 69 | 
            +
                  "content": "<|quad_end|>",
         | 
| 70 | 
            +
                  "lstrip": false,
         | 
| 71 | 
            +
                  "normalized": false,
         | 
| 72 | 
            +
                  "rstrip": false,
         | 
| 73 | 
            +
                  "single_word": false,
         | 
| 74 | 
            +
                  "special": true
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                "151652": {
         | 
| 77 | 
            +
                  "content": "<|vision_start|>",
         | 
| 78 | 
            +
                  "lstrip": false,
         | 
| 79 | 
            +
                  "normalized": false,
         | 
| 80 | 
            +
                  "rstrip": false,
         | 
| 81 | 
            +
                  "single_word": false,
         | 
| 82 | 
            +
                  "special": true
         | 
| 83 | 
            +
                },
         | 
| 84 | 
            +
                "151653": {
         | 
| 85 | 
            +
                  "content": "<|vision_end|>",
         | 
| 86 | 
            +
                  "lstrip": false,
         | 
| 87 | 
            +
                  "normalized": false,
         | 
| 88 | 
            +
                  "rstrip": false,
         | 
| 89 | 
            +
                  "single_word": false,
         | 
| 90 | 
            +
                  "special": true
         | 
| 91 | 
            +
                },
         | 
| 92 | 
            +
                "151654": {
         | 
| 93 | 
            +
                  "content": "<|vision_pad|>",
         | 
| 94 | 
            +
                  "lstrip": false,
         | 
| 95 | 
            +
                  "normalized": false,
         | 
| 96 | 
            +
                  "rstrip": false,
         | 
| 97 | 
            +
                  "single_word": false,
         | 
| 98 | 
            +
                  "special": true
         | 
| 99 | 
            +
                },
         | 
| 100 | 
            +
                "151655": {
         | 
| 101 | 
            +
                  "content": "<|image_pad|>",
         | 
| 102 | 
            +
                  "lstrip": false,
         | 
| 103 | 
            +
                  "normalized": false,
         | 
| 104 | 
            +
                  "rstrip": false,
         | 
| 105 | 
            +
                  "single_word": false,
         | 
| 106 | 
            +
                  "special": true
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                "151656": {
         | 
| 109 | 
            +
                  "content": "<|video_pad|>",
         | 
| 110 | 
            +
                  "lstrip": false,
         | 
| 111 | 
            +
                  "normalized": false,
         | 
| 112 | 
            +
                  "rstrip": false,
         | 
| 113 | 
            +
                  "single_word": false,
         | 
| 114 | 
            +
                  "special": true
         | 
| 115 | 
            +
                },
         | 
| 116 | 
            +
                "151657": {
         | 
| 117 | 
            +
                  "content": "<tool_call>",
         | 
| 118 | 
            +
                  "lstrip": false,
         | 
| 119 | 
            +
                  "normalized": false,
         | 
| 120 | 
            +
                  "rstrip": false,
         | 
| 121 | 
            +
                  "single_word": false,
         | 
| 122 | 
            +
                  "special": false
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                "151658": {
         | 
| 125 | 
            +
                  "content": "</tool_call>",
         | 
| 126 | 
            +
                  "lstrip": false,
         | 
| 127 | 
            +
                  "normalized": false,
         | 
| 128 | 
            +
                  "rstrip": false,
         | 
| 129 | 
            +
                  "single_word": false,
         | 
| 130 | 
            +
                  "special": false
         | 
| 131 | 
            +
                },
         | 
| 132 | 
            +
                "151659": {
         | 
| 133 | 
            +
                  "content": "<|fim_prefix|>",
         | 
| 134 | 
            +
                  "lstrip": false,
         | 
| 135 | 
            +
                  "normalized": false,
         | 
| 136 | 
            +
                  "rstrip": false,
         | 
| 137 | 
            +
                  "single_word": false,
         | 
| 138 | 
            +
                  "special": false
         | 
| 139 | 
            +
                },
         | 
| 140 | 
            +
                "151660": {
         | 
| 141 | 
            +
                  "content": "<|fim_middle|>",
         | 
| 142 | 
            +
                  "lstrip": false,
         | 
| 143 | 
            +
                  "normalized": false,
         | 
| 144 | 
            +
                  "rstrip": false,
         | 
| 145 | 
            +
                  "single_word": false,
         | 
| 146 | 
            +
                  "special": false
         | 
| 147 | 
            +
                },
         | 
| 148 | 
            +
                "151661": {
         | 
| 149 | 
            +
                  "content": "<|fim_suffix|>",
         | 
| 150 | 
            +
                  "lstrip": false,
         | 
| 151 | 
            +
                  "normalized": false,
         | 
| 152 | 
            +
                  "rstrip": false,
         | 
| 153 | 
            +
                  "single_word": false,
         | 
| 154 | 
            +
                  "special": false
         | 
| 155 | 
            +
                },
         | 
| 156 | 
            +
                "151662": {
         | 
| 157 | 
            +
                  "content": "<|fim_pad|>",
         | 
| 158 | 
            +
                  "lstrip": false,
         | 
| 159 | 
            +
                  "normalized": false,
         | 
| 160 | 
            +
                  "rstrip": false,
         | 
| 161 | 
            +
                  "single_word": false,
         | 
| 162 | 
            +
                  "special": false
         | 
| 163 | 
            +
                },
         | 
| 164 | 
            +
                "151663": {
         | 
| 165 | 
            +
                  "content": "<|repo_name|>",
         | 
| 166 | 
            +
                  "lstrip": false,
         | 
| 167 | 
            +
                  "normalized": false,
         | 
| 168 | 
            +
                  "rstrip": false,
         | 
| 169 | 
            +
                  "single_word": false,
         | 
| 170 | 
            +
                  "special": false
         | 
| 171 | 
            +
                },
         | 
| 172 | 
            +
                "151664": {
         | 
| 173 | 
            +
                  "content": "<|file_sep|>",
         | 
| 174 | 
            +
                  "lstrip": false,
         | 
| 175 | 
            +
                  "normalized": false,
         | 
| 176 | 
            +
                  "rstrip": false,
         | 
| 177 | 
            +
                  "single_word": false,
         | 
| 178 | 
            +
                  "special": false
         | 
| 179 | 
            +
                }
         | 
| 180 | 
            +
              },
         | 
| 181 | 
            +
              "additional_special_tokens": [
         | 
| 182 | 
            +
                "<|im_start|>",
         | 
| 183 | 
            +
                "<|im_end|>",
         | 
| 184 | 
            +
                "<|object_ref_start|>",
         | 
| 185 | 
            +
                "<|object_ref_end|>",
         | 
| 186 | 
            +
                "<|box_start|>",
         | 
| 187 | 
            +
                "<|box_end|>",
         | 
| 188 | 
            +
                "<|quad_start|>",
         | 
| 189 | 
            +
                "<|quad_end|>",
         | 
| 190 | 
            +
                "<|vision_start|>",
         | 
| 191 | 
            +
                "<|vision_end|>",
         | 
| 192 | 
            +
                "<|vision_pad|>",
         | 
| 193 | 
            +
                "<|image_pad|>",
         | 
| 194 | 
            +
                "<|video_pad|>"
         | 
| 195 | 
            +
              ],
         | 
| 196 | 
            +
              "bos_token": null,
         | 
| 197 | 
            +
              "chat_template": "{%- if tools %}\n    {{- '<|im_start|>system\\n' }}\n    {%- if messages[0]['role'] == 'system' %}\n        {{- messages[0]['content'] }}\n    {%- else %}\n        {{- 'You are a helpful assistant.' }}\n    {%- endif %}\n    {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n    {%- for tool in tools %}\n        {{- \"\\n\" }}\n        {{- tool | tojson }}\n    {%- endfor %}\n    {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n    {%- if messages[0]['role'] == 'system' %}\n        {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n    {%- else %}\n        {{- '<|im_start|>system\\nYou are a helpful assistant.<|im_end|>\\n' }}\n    {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n    {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n        {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n    {%- elif message.role == \"assistant\" %}\n        {{- '<|im_start|>' + message.role }}\n        {%- if message.content %}\n            {{- '\\n' + message.content }}\n        {%- endif %}\n        {%- for tool_call in message.tool_calls %}\n            {%- if tool_call.function is defined %}\n                {%- set tool_call = tool_call.function %}\n            {%- endif %}\n            {{- '\\n<tool_call>\\n{\"name\": \"' }}\n            {{- tool_call.name }}\n            {{- '\", \"arguments\": ' }}\n            {{- tool_call.arguments | tojson }}\n            {{- '}\\n</tool_call>' }}\n        {%- endfor %}\n        {{- '<|im_end|>\\n' }}\n    {%- elif message.role == \"tool\" %}\n        {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n            {{- '<|im_start|>user' }}\n        {%- endif %}\n        {{- '\\n<tool_response>\\n' }}\n        {{- message.content }}\n        {{- '\\n</tool_response>' }}\n        {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n            {{- '<|im_end|>\\n' }}\n        {%- endif %}\n    {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n    {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
         | 
| 198 | 
            +
              "clean_up_tokenization_spaces": false,
         | 
| 199 | 
            +
              "eos_token": "<|im_end|>",
         | 
| 200 | 
            +
              "errors": "replace",
         | 
| 201 | 
            +
              "model_max_length": 131072,
         | 
| 202 | 
            +
              "pad_token": "<|endoftext|>",
         | 
| 203 | 
            +
              "split_special_tokens": false,
         | 
| 204 | 
            +
              "tokenizer_class": "Qwen2Tokenizer",
         | 
| 205 | 
            +
              "unk_token": null,
         | 
| 206 | 
            +
              "add_bos_token": false
         | 
| 207 | 
            +
            }
         | 
    	
        vocab.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
