Add files using upload-large-folder tool
Browse files- chat_template.json +3 -0
- config.json +418 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model-00001-of-00024.safetensors +3 -0
- model-00002-of-00024.safetensors +3 -0
- model-00003-of-00024.safetensors +3 -0
- model-00004-of-00024.safetensors +3 -0
- model-00005-of-00024.safetensors +3 -0
- model-00006-of-00024.safetensors +3 -0
- model-00007-of-00024.safetensors +3 -0
- model-00008-of-00024.safetensors +3 -0
- model-00009-of-00024.safetensors +3 -0
- model-00010-of-00024.safetensors +3 -0
- model-00011-of-00024.safetensors +3 -0
- model-00012-of-00024.safetensors +3 -0
- model-00013-of-00024.safetensors +3 -0
- model-00014-of-00024.safetensors +3 -0
- model-00015-of-00024.safetensors +3 -0
- model-00016-of-00024.safetensors +3 -0
- model-00017-of-00024.safetensors +3 -0
- model-00018-of-00024.safetensors +3 -0
- model-00019-of-00024.safetensors +3 -0
- model-00020-of-00024.safetensors +3 -0
- model-00021-of-00024.safetensors +3 -0
- model-00022-of-00024.safetensors +3 -0
- model-00023-of-00024.safetensors +3 -0
- model-00024-of-00024.safetensors +3 -0
- model.safetensors.index.json +0 -0
- preprocessor_config.json +21 -0
- tokenizer.json +0 -0
- tokenizer_config.json +239 -0
- video_preprocessor_config.json +21 -0
- vocab.json +0 -0
chat_template.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count) %}\n {%- if content is string %}\n {{- content }}\n {%- else %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n{%- endmacro %}\n{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- render_content(messages[0].content, false) + '\\n\\n' }}\n {%- endif %}\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' + render_content(messages[0].content, false) + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false) %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, True) %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- 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<think>\\n' }}\n{%- endif %}\n"
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3VLMoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 151655,
|
| 6 |
+
"model_type": "qwen3_vl_moe",
|
| 7 |
+
"text_config": {
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"bos_token_id": 151643,
|
| 11 |
+
"decoder_sparse_step": 1,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 151645,
|
| 14 |
+
"head_dim": 128,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 4096,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 12288,
|
| 19 |
+
"max_position_embeddings": 262144,
|
| 20 |
+
"mlp_only_layers": [],
|
| 21 |
+
"model_type": "qwen3_vl_moe_text",
|
| 22 |
+
"moe_intermediate_size": 1536,
|
| 23 |
+
"norm_topk_prob": true,
|
| 24 |
+
"num_attention_heads": 64,
|
| 25 |
+
"num_experts": 128,
|
| 26 |
+
"num_experts_per_tok": 8,
|
| 27 |
+
"num_hidden_layers": 94,
|
| 28 |
+
"num_key_value_heads": 4,
|
| 29 |
+
"rms_norm_eps": 1e-06,
|
| 30 |
+
"rope_scaling": {
|
| 31 |
+
"mrope_interleaved": true,
|
| 32 |
+
"mrope_section": [
|
| 33 |
+
24,
|
| 34 |
+
20,
|
| 35 |
+
20
|
| 36 |
+
],
|
| 37 |
+
"rope_type": "default"
|
| 38 |
+
},
|
| 39 |
+
"rope_theta": 5000000,
|
| 40 |
+
"use_cache": true,
|
| 41 |
+
"vocab_size": 151936
|
| 42 |
+
},
|
| 43 |
+
"tie_word_embeddings": false,
|
| 44 |
+
"transformers_version": "4.57.0.dev0",
|
| 45 |
+
"video_token_id": 151656,
|
| 46 |
+
"vision_config": {
|
| 47 |
+
"deepstack_visual_indexes": [
|
| 48 |
+
8,
|
| 49 |
+
16,
|
| 50 |
+
24
|
| 51 |
+
],
|
| 52 |
+
"depth": 27,
|
| 53 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 54 |
+
"hidden_size": 1152,
|
| 55 |
+
"in_channels": 3,
|
| 56 |
+
"initializer_range": 0.02,
|
| 57 |
+
"intermediate_size": 4304,
|
| 58 |
+
"model_type": "qwen3_vl_moe",
|
| 59 |
+
"num_heads": 16,
|
| 60 |
+
"num_position_embeddings": 2304,
|
| 61 |
+
"out_hidden_size": 4096,
|
| 62 |
+
"patch_size": 16,
|
| 63 |
+
"spatial_merge_size": 2,
|
| 64 |
+
"temporal_patch_size": 2
|
| 65 |
+
},
|
| 66 |
+
"vision_end_token_id": 151653,
|
| 67 |
+
"vision_start_token_id": 151652,
|
| 68 |
+
"quantization_config": {
|
| 69 |
+
"activation_scheme": "dynamic",
|
| 70 |
+
"fmt": "e4m3",
|
| 71 |
+
"quant_method": "fp8",
|
| 72 |
+
"ignored_layers": [
|
| 73 |
+
"lm_head",
|
| 74 |
+
"model.visual.merger.linear_fc1",
|
| 75 |
+
"model.visual.merger.linear_fc2",
|
| 76 |
+
"model.visual.merger.norm",
|
| 77 |
+
"model.visual.patch_embed.proj",
|
| 78 |
+
"model.visual.pos_embed",
|
| 79 |
+
"visual.merger.linear_fc1",
|
| 80 |
+
"visual.merger.linear_fc2",
|
| 81 |
+
"visual.merger.norm",
|
| 82 |
+
"visual.patch_embed.proj",
|
| 83 |
+
"visual.pos_embed",
|
| 84 |
+
"model.visual.blocks.0.attn.proj",
|
| 85 |
+
"model.visual.blocks.0.attn.qkv",
|
| 86 |
+
"model.visual.blocks.0.mlp.linear_fc1",
|
| 87 |
+
"model.visual.blocks.0.mlp.linear_fc2",
|
| 88 |
+
"visual.blocks.0.attn.proj",
|
| 89 |
+
"visual.blocks.0.attn.qkv_proj",
|
| 90 |
+
"visual.blocks.0.mlp.linear_fc1",
|
| 91 |
+
"visual.blocks.0.mlp.linear_fc2",
|
| 92 |
+
"model.visual.blocks.1.attn.proj",
|
| 93 |
+
"model.visual.blocks.1.attn.qkv",
|
| 94 |
+
"model.visual.blocks.1.mlp.linear_fc1",
|
| 95 |
+
"model.visual.blocks.1.mlp.linear_fc2",
|
| 96 |
+
"visual.blocks.1.attn.proj",
|
| 97 |
+
"visual.blocks.1.attn.qkv_proj",
|
| 98 |
+
"visual.blocks.1.mlp.linear_fc1",
|
| 99 |
+
"visual.blocks.1.mlp.linear_fc2",
|
| 100 |
+
"model.visual.blocks.2.attn.proj",
|
| 101 |
+
"model.visual.blocks.2.attn.qkv",
|
| 102 |
+
"model.visual.blocks.2.mlp.linear_fc1",
|
| 103 |
+
"model.visual.blocks.2.mlp.linear_fc2",
|
| 104 |
+
"visual.blocks.2.attn.proj",
|
| 105 |
+
"visual.blocks.2.attn.qkv_proj",
|
| 106 |
+
"visual.blocks.2.mlp.linear_fc1",
|
| 107 |
+
"visual.blocks.2.mlp.linear_fc2",
|
| 108 |
+
"model.visual.blocks.3.attn.proj",
|
| 109 |
+
"model.visual.blocks.3.attn.qkv",
|
| 110 |
+
"model.visual.blocks.3.mlp.linear_fc1",
|
| 111 |
+
"model.visual.blocks.3.mlp.linear_fc2",
|
| 112 |
+
"visual.blocks.3.attn.proj",
|
| 113 |
+
"visual.blocks.3.attn.qkv_proj",
|
| 114 |
+
"visual.blocks.3.mlp.linear_fc1",
|
| 115 |
+
"visual.blocks.3.mlp.linear_fc2",
|
| 116 |
+
"model.visual.blocks.4.attn.proj",
|
| 117 |
+
"model.visual.blocks.4.attn.qkv",
|
| 118 |
+
"model.visual.blocks.4.mlp.linear_fc1",
|
| 119 |
+
"model.visual.blocks.4.mlp.linear_fc2",
|
| 120 |
+
"visual.blocks.4.attn.proj",
|
| 121 |
+
"visual.blocks.4.attn.qkv_proj",
|
| 122 |
+
"visual.blocks.4.mlp.linear_fc1",
|
| 123 |
+
"visual.blocks.4.mlp.linear_fc2",
|
| 124 |
+
"model.visual.blocks.5.attn.proj",
|
| 125 |
+
"model.visual.blocks.5.attn.qkv",
|
| 126 |
+
"model.visual.blocks.5.mlp.linear_fc1",
|
| 127 |
+
"model.visual.blocks.5.mlp.linear_fc2",
|
| 128 |
+
"visual.blocks.5.attn.proj",
|
| 129 |
+
"visual.blocks.5.attn.qkv_proj",
|
| 130 |
+
"visual.blocks.5.mlp.linear_fc1",
|
| 131 |
+
"visual.blocks.5.mlp.linear_fc2",
|
| 132 |
+
"model.visual.blocks.6.attn.proj",
|
| 133 |
+
"model.visual.blocks.6.attn.qkv",
|
| 134 |
+
"model.visual.blocks.6.mlp.linear_fc1",
|
| 135 |
+
"model.visual.blocks.6.mlp.linear_fc2",
|
| 136 |
+
"visual.blocks.6.attn.proj",
|
| 137 |
+
"visual.blocks.6.attn.qkv_proj",
|
| 138 |
+
"visual.blocks.6.mlp.linear_fc1",
|
| 139 |
+
"visual.blocks.6.mlp.linear_fc2",
|
| 140 |
+
"model.visual.blocks.7.attn.proj",
|
| 141 |
+
"model.visual.blocks.7.attn.qkv",
|
| 142 |
+
"model.visual.blocks.7.mlp.linear_fc1",
|
| 143 |
+
"model.visual.blocks.7.mlp.linear_fc2",
|
| 144 |
+
"visual.blocks.7.attn.proj",
|
| 145 |
+
"visual.blocks.7.attn.qkv_proj",
|
| 146 |
+
"visual.blocks.7.mlp.linear_fc1",
|
| 147 |
+
"visual.blocks.7.mlp.linear_fc2",
|
| 148 |
+
"model.visual.blocks.8.attn.proj",
|
| 149 |
+
"model.visual.blocks.8.attn.qkv",
|
| 150 |
+
"model.visual.blocks.8.mlp.linear_fc1",
|
| 151 |
+
"model.visual.blocks.8.mlp.linear_fc2",
|
| 152 |
+
"visual.blocks.8.attn.proj",
|
| 153 |
+
"visual.blocks.8.attn.qkv_proj",
|
| 154 |
+
"visual.blocks.8.mlp.linear_fc1",
|
| 155 |
+
"visual.blocks.8.mlp.linear_fc2",
|
| 156 |
+
"model.visual.blocks.9.attn.proj",
|
| 157 |
+
"model.visual.blocks.9.attn.qkv",
|
| 158 |
+
"model.visual.blocks.9.mlp.linear_fc1",
|
| 159 |
+
"model.visual.blocks.9.mlp.linear_fc2",
|
| 160 |
+
"visual.blocks.9.attn.proj",
|
| 161 |
+
"visual.blocks.9.attn.qkv_proj",
|
| 162 |
+
"visual.blocks.9.mlp.linear_fc1",
|
| 163 |
+
"visual.blocks.9.mlp.linear_fc2",
|
| 164 |
+
"model.visual.blocks.10.attn.proj",
|
| 165 |
+
"model.visual.blocks.10.attn.qkv",
|
| 166 |
+
"model.visual.blocks.10.mlp.linear_fc1",
|
| 167 |
+
"model.visual.blocks.10.mlp.linear_fc2",
|
| 168 |
+
"visual.blocks.10.attn.proj",
|
| 169 |
+
"visual.blocks.10.attn.qkv_proj",
|
| 170 |
+
"visual.blocks.10.mlp.linear_fc1",
|
| 171 |
+
"visual.blocks.10.mlp.linear_fc2",
|
| 172 |
+
"model.visual.blocks.11.attn.proj",
|
| 173 |
+
"model.visual.blocks.11.attn.qkv",
|
| 174 |
+
"model.visual.blocks.11.mlp.linear_fc1",
|
| 175 |
+
"model.visual.blocks.11.mlp.linear_fc2",
|
| 176 |
+
"visual.blocks.11.attn.proj",
|
| 177 |
+
"visual.blocks.11.attn.qkv_proj",
|
| 178 |
+
"visual.blocks.11.mlp.linear_fc1",
|
| 179 |
+
"visual.blocks.11.mlp.linear_fc2",
|
| 180 |
+
"model.visual.blocks.12.attn.proj",
|
| 181 |
+
"model.visual.blocks.12.attn.qkv",
|
| 182 |
+
"model.visual.blocks.12.mlp.linear_fc1",
|
| 183 |
+
"model.visual.blocks.12.mlp.linear_fc2",
|
| 184 |
+
"visual.blocks.12.attn.proj",
|
| 185 |
+
"visual.blocks.12.attn.qkv_proj",
|
| 186 |
+
"visual.blocks.12.mlp.linear_fc1",
|
| 187 |
+
"visual.blocks.12.mlp.linear_fc2",
|
| 188 |
+
"model.visual.blocks.13.attn.proj",
|
| 189 |
+
"model.visual.blocks.13.attn.qkv",
|
| 190 |
+
"model.visual.blocks.13.mlp.linear_fc1",
|
| 191 |
+
"model.visual.blocks.13.mlp.linear_fc2",
|
| 192 |
+
"visual.blocks.13.attn.proj",
|
| 193 |
+
"visual.blocks.13.attn.qkv_proj",
|
| 194 |
+
"visual.blocks.13.mlp.linear_fc1",
|
| 195 |
+
"visual.blocks.13.mlp.linear_fc2",
|
| 196 |
+
"model.visual.blocks.14.attn.proj",
|
| 197 |
+
"model.visual.blocks.14.attn.qkv",
|
| 198 |
+
"model.visual.blocks.14.mlp.linear_fc1",
|
| 199 |
+
"model.visual.blocks.14.mlp.linear_fc2",
|
| 200 |
+
"visual.blocks.14.attn.proj",
|
| 201 |
+
"visual.blocks.14.attn.qkv_proj",
|
| 202 |
+
"visual.blocks.14.mlp.linear_fc1",
|
| 203 |
+
"visual.blocks.14.mlp.linear_fc2",
|
| 204 |
+
"model.visual.blocks.15.attn.proj",
|
| 205 |
+
"model.visual.blocks.15.attn.qkv",
|
| 206 |
+
"model.visual.blocks.15.mlp.linear_fc1",
|
| 207 |
+
"model.visual.blocks.15.mlp.linear_fc2",
|
| 208 |
+
"visual.blocks.15.attn.proj",
|
| 209 |
+
"visual.blocks.15.attn.qkv_proj",
|
| 210 |
+
"visual.blocks.15.mlp.linear_fc1",
|
| 211 |
+
"visual.blocks.15.mlp.linear_fc2",
|
| 212 |
+
"model.visual.blocks.16.attn.proj",
|
| 213 |
+
"model.visual.blocks.16.attn.qkv",
|
| 214 |
+
"model.visual.blocks.16.mlp.linear_fc1",
|
| 215 |
+
"model.visual.blocks.16.mlp.linear_fc2",
|
| 216 |
+
"visual.blocks.16.attn.proj",
|
| 217 |
+
"visual.blocks.16.attn.qkv_proj",
|
| 218 |
+
"visual.blocks.16.mlp.linear_fc1",
|
| 219 |
+
"visual.blocks.16.mlp.linear_fc2",
|
| 220 |
+
"model.visual.blocks.17.attn.proj",
|
| 221 |
+
"model.visual.blocks.17.attn.qkv",
|
| 222 |
+
"model.visual.blocks.17.mlp.linear_fc1",
|
| 223 |
+
"model.visual.blocks.17.mlp.linear_fc2",
|
| 224 |
+
"visual.blocks.17.attn.proj",
|
| 225 |
+
"visual.blocks.17.attn.qkv_proj",
|
| 226 |
+
"visual.blocks.17.mlp.linear_fc1",
|
| 227 |
+
"visual.blocks.17.mlp.linear_fc2",
|
| 228 |
+
"model.visual.blocks.18.attn.proj",
|
| 229 |
+
"model.visual.blocks.18.attn.qkv",
|
| 230 |
+
"model.visual.blocks.18.mlp.linear_fc1",
|
| 231 |
+
"model.visual.blocks.18.mlp.linear_fc2",
|
| 232 |
+
"visual.blocks.18.attn.proj",
|
| 233 |
+
"visual.blocks.18.attn.qkv_proj",
|
| 234 |
+
"visual.blocks.18.mlp.linear_fc1",
|
| 235 |
+
"visual.blocks.18.mlp.linear_fc2",
|
| 236 |
+
"model.visual.blocks.19.attn.proj",
|
| 237 |
+
"model.visual.blocks.19.attn.qkv",
|
| 238 |
+
"model.visual.blocks.19.mlp.linear_fc1",
|
| 239 |
+
"model.visual.blocks.19.mlp.linear_fc2",
|
| 240 |
+
"visual.blocks.19.attn.proj",
|
| 241 |
+
"visual.blocks.19.attn.qkv_proj",
|
| 242 |
+
"visual.blocks.19.mlp.linear_fc1",
|
| 243 |
+
"visual.blocks.19.mlp.linear_fc2",
|
| 244 |
+
"model.visual.blocks.20.attn.proj",
|
| 245 |
+
"model.visual.blocks.20.attn.qkv",
|
| 246 |
+
"model.visual.blocks.20.mlp.linear_fc1",
|
| 247 |
+
"model.visual.blocks.20.mlp.linear_fc2",
|
| 248 |
+
"visual.blocks.20.attn.proj",
|
| 249 |
+
"visual.blocks.20.attn.qkv_proj",
|
| 250 |
+
"visual.blocks.20.mlp.linear_fc1",
|
| 251 |
+
"visual.blocks.20.mlp.linear_fc2",
|
| 252 |
+
"model.visual.blocks.21.attn.proj",
|
| 253 |
+
"model.visual.blocks.21.attn.qkv",
|
| 254 |
+
"model.visual.blocks.21.mlp.linear_fc1",
|
| 255 |
+
"model.visual.blocks.21.mlp.linear_fc2",
|
| 256 |
+
"visual.blocks.21.attn.proj",
|
| 257 |
+
"visual.blocks.21.attn.qkv_proj",
|
| 258 |
+
"visual.blocks.21.mlp.linear_fc1",
|
| 259 |
+
"visual.blocks.21.mlp.linear_fc2",
|
| 260 |
+
"model.visual.blocks.22.attn.proj",
|
| 261 |
+
"model.visual.blocks.22.attn.qkv",
|
| 262 |
+
"model.visual.blocks.22.mlp.linear_fc1",
|
| 263 |
+
"model.visual.blocks.22.mlp.linear_fc2",
|
| 264 |
+
"visual.blocks.22.attn.proj",
|
| 265 |
+
"visual.blocks.22.attn.qkv_proj",
|
| 266 |
+
"visual.blocks.22.mlp.linear_fc1",
|
| 267 |
+
"visual.blocks.22.mlp.linear_fc2",
|
| 268 |
+
"model.visual.blocks.23.attn.proj",
|
| 269 |
+
"model.visual.blocks.23.attn.qkv",
|
| 270 |
+
"model.visual.blocks.23.mlp.linear_fc1",
|
| 271 |
+
"model.visual.blocks.23.mlp.linear_fc2",
|
| 272 |
+
"visual.blocks.23.attn.proj",
|
| 273 |
+
"visual.blocks.23.attn.qkv_proj",
|
| 274 |
+
"visual.blocks.23.mlp.linear_fc1",
|
| 275 |
+
"visual.blocks.23.mlp.linear_fc2",
|
| 276 |
+
"model.visual.blocks.24.attn.proj",
|
| 277 |
+
"model.visual.blocks.24.attn.qkv",
|
| 278 |
+
"model.visual.blocks.24.mlp.linear_fc1",
|
| 279 |
+
"model.visual.blocks.24.mlp.linear_fc2",
|
| 280 |
+
"visual.blocks.24.attn.proj",
|
| 281 |
+
"visual.blocks.24.attn.qkv_proj",
|
| 282 |
+
"visual.blocks.24.mlp.linear_fc1",
|
| 283 |
+
"visual.blocks.24.mlp.linear_fc2",
|
| 284 |
+
"model.visual.blocks.25.attn.proj",
|
| 285 |
+
"model.visual.blocks.25.attn.qkv",
|
| 286 |
+
"model.visual.blocks.25.mlp.linear_fc1",
|
| 287 |
+
"model.visual.blocks.25.mlp.linear_fc2",
|
| 288 |
+
"visual.blocks.25.attn.proj",
|
| 289 |
+
"visual.blocks.25.attn.qkv_proj",
|
| 290 |
+
"visual.blocks.25.mlp.linear_fc1",
|
| 291 |
+
"visual.blocks.25.mlp.linear_fc2",
|
| 292 |
+
"model.visual.blocks.26.attn.proj",
|
| 293 |
+
"model.visual.blocks.26.attn.qkv",
|
| 294 |
+
"model.visual.blocks.26.mlp.linear_fc1",
|
| 295 |
+
"model.visual.blocks.26.mlp.linear_fc2",
|
| 296 |
+
"visual.blocks.26.attn.proj",
|
| 297 |
+
"visual.blocks.26.attn.qkv_proj",
|
| 298 |
+
"visual.blocks.26.mlp.linear_fc1",
|
| 299 |
+
"visual.blocks.26.mlp.linear_fc2",
|
| 300 |
+
"model.visual.deepstack_merger_list.0.linear_fc1",
|
| 301 |
+
"model.visual.deepstack_merger_list.0.linear_fc2",
|
| 302 |
+
"model.visual.deepstack_merger_list.0.norm",
|
| 303 |
+
"visual.deepstack_merger_list.0.linear_fc1",
|
| 304 |
+
"visual.deepstack_merger_list.0.linear_fc2",
|
| 305 |
+
"visual.deepstack_merger_list.0.norm",
|
| 306 |
+
"model.visual.deepstack_merger_list.1.linear_fc1",
|
| 307 |
+
"model.visual.deepstack_merger_list.1.linear_fc2",
|
| 308 |
+
"model.visual.deepstack_merger_list.1.norm",
|
| 309 |
+
"visual.deepstack_merger_list.1.linear_fc1",
|
| 310 |
+
"visual.deepstack_merger_list.1.linear_fc2",
|
| 311 |
+
"visual.deepstack_merger_list.1.norm",
|
| 312 |
+
"model.visual.deepstack_merger_list.2.linear_fc1",
|
| 313 |
+
"model.visual.deepstack_merger_list.2.linear_fc2",
|
| 314 |
+
"model.visual.deepstack_merger_list.2.norm",
|
| 315 |
+
"visual.deepstack_merger_list.2.linear_fc1",
|
| 316 |
+
"visual.deepstack_merger_list.2.linear_fc2",
|
| 317 |
+
"visual.deepstack_merger_list.2.norm",
|
| 318 |
+
"model.language_model.layers.0.mlp.gate",
|
| 319 |
+
"model.language_model.layers.1.mlp.gate",
|
| 320 |
+
"model.language_model.layers.2.mlp.gate",
|
| 321 |
+
"model.language_model.layers.3.mlp.gate",
|
| 322 |
+
"model.language_model.layers.4.mlp.gate",
|
| 323 |
+
"model.language_model.layers.5.mlp.gate",
|
| 324 |
+
"model.language_model.layers.6.mlp.gate",
|
| 325 |
+
"model.language_model.layers.7.mlp.gate",
|
| 326 |
+
"model.language_model.layers.8.mlp.gate",
|
| 327 |
+
"model.language_model.layers.9.mlp.gate",
|
| 328 |
+
"model.language_model.layers.10.mlp.gate",
|
| 329 |
+
"model.language_model.layers.11.mlp.gate",
|
| 330 |
+
"model.language_model.layers.12.mlp.gate",
|
| 331 |
+
"model.language_model.layers.13.mlp.gate",
|
| 332 |
+
"model.language_model.layers.14.mlp.gate",
|
| 333 |
+
"model.language_model.layers.15.mlp.gate",
|
| 334 |
+
"model.language_model.layers.16.mlp.gate",
|
| 335 |
+
"model.language_model.layers.17.mlp.gate",
|
| 336 |
+
"model.language_model.layers.18.mlp.gate",
|
| 337 |
+
"model.language_model.layers.19.mlp.gate",
|
| 338 |
+
"model.language_model.layers.20.mlp.gate",
|
| 339 |
+
"model.language_model.layers.21.mlp.gate",
|
| 340 |
+
"model.language_model.layers.22.mlp.gate",
|
| 341 |
+
"model.language_model.layers.23.mlp.gate",
|
| 342 |
+
"model.language_model.layers.24.mlp.gate",
|
| 343 |
+
"model.language_model.layers.25.mlp.gate",
|
| 344 |
+
"model.language_model.layers.26.mlp.gate",
|
| 345 |
+
"model.language_model.layers.27.mlp.gate",
|
| 346 |
+
"model.language_model.layers.28.mlp.gate",
|
| 347 |
+
"model.language_model.layers.29.mlp.gate",
|
| 348 |
+
"model.language_model.layers.30.mlp.gate",
|
| 349 |
+
"model.language_model.layers.31.mlp.gate",
|
| 350 |
+
"model.language_model.layers.32.mlp.gate",
|
| 351 |
+
"model.language_model.layers.33.mlp.gate",
|
| 352 |
+
"model.language_model.layers.34.mlp.gate",
|
| 353 |
+
"model.language_model.layers.35.mlp.gate",
|
| 354 |
+
"model.language_model.layers.36.mlp.gate",
|
| 355 |
+
"model.language_model.layers.37.mlp.gate",
|
| 356 |
+
"model.language_model.layers.38.mlp.gate",
|
| 357 |
+
"model.language_model.layers.39.mlp.gate",
|
| 358 |
+
"model.language_model.layers.40.mlp.gate",
|
| 359 |
+
"model.language_model.layers.41.mlp.gate",
|
| 360 |
+
"model.language_model.layers.42.mlp.gate",
|
| 361 |
+
"model.language_model.layers.43.mlp.gate",
|
| 362 |
+
"model.language_model.layers.44.mlp.gate",
|
| 363 |
+
"model.language_model.layers.45.mlp.gate",
|
| 364 |
+
"model.language_model.layers.46.mlp.gate",
|
| 365 |
+
"model.language_model.layers.47.mlp.gate",
|
| 366 |
+
"model.language_model.layers.48.mlp.gate",
|
| 367 |
+
"model.language_model.layers.49.mlp.gate",
|
| 368 |
+
"model.language_model.layers.50.mlp.gate",
|
| 369 |
+
"model.language_model.layers.51.mlp.gate",
|
| 370 |
+
"model.language_model.layers.52.mlp.gate",
|
| 371 |
+
"model.language_model.layers.53.mlp.gate",
|
| 372 |
+
"model.language_model.layers.54.mlp.gate",
|
| 373 |
+
"model.language_model.layers.55.mlp.gate",
|
| 374 |
+
"model.language_model.layers.56.mlp.gate",
|
| 375 |
+
"model.language_model.layers.57.mlp.gate",
|
| 376 |
+
"model.language_model.layers.58.mlp.gate",
|
| 377 |
+
"model.language_model.layers.59.mlp.gate",
|
| 378 |
+
"model.language_model.layers.60.mlp.gate",
|
| 379 |
+
"model.language_model.layers.61.mlp.gate",
|
| 380 |
+
"model.language_model.layers.62.mlp.gate",
|
| 381 |
+
"model.language_model.layers.63.mlp.gate",
|
| 382 |
+
"model.language_model.layers.64.mlp.gate",
|
| 383 |
+
"model.language_model.layers.65.mlp.gate",
|
| 384 |
+
"model.language_model.layers.66.mlp.gate",
|
| 385 |
+
"model.language_model.layers.67.mlp.gate",
|
| 386 |
+
"model.language_model.layers.68.mlp.gate",
|
| 387 |
+
"model.language_model.layers.69.mlp.gate",
|
| 388 |
+
"model.language_model.layers.70.mlp.gate",
|
| 389 |
+
"model.language_model.layers.71.mlp.gate",
|
| 390 |
+
"model.language_model.layers.72.mlp.gate",
|
| 391 |
+
"model.language_model.layers.73.mlp.gate",
|
| 392 |
+
"model.language_model.layers.74.mlp.gate",
|
| 393 |
+
"model.language_model.layers.75.mlp.gate",
|
| 394 |
+
"model.language_model.layers.76.mlp.gate",
|
| 395 |
+
"model.language_model.layers.77.mlp.gate",
|
| 396 |
+
"model.language_model.layers.78.mlp.gate",
|
| 397 |
+
"model.language_model.layers.79.mlp.gate",
|
| 398 |
+
"model.language_model.layers.80.mlp.gate",
|
| 399 |
+
"model.language_model.layers.81.mlp.gate",
|
| 400 |
+
"model.language_model.layers.82.mlp.gate",
|
| 401 |
+
"model.language_model.layers.83.mlp.gate",
|
| 402 |
+
"model.language_model.layers.84.mlp.gate",
|
| 403 |
+
"model.language_model.layers.85.mlp.gate",
|
| 404 |
+
"model.language_model.layers.86.mlp.gate",
|
| 405 |
+
"model.language_model.layers.87.mlp.gate",
|
| 406 |
+
"model.language_model.layers.88.mlp.gate",
|
| 407 |
+
"model.language_model.layers.89.mlp.gate",
|
| 408 |
+
"model.language_model.layers.90.mlp.gate",
|
| 409 |
+
"model.language_model.layers.91.mlp.gate",
|
| 410 |
+
"model.language_model.layers.92.mlp.gate",
|
| 411 |
+
"model.language_model.layers.93.mlp.gate"
|
| 412 |
+
],
|
| 413 |
+
"weight_block_size": [
|
| 414 |
+
128,
|
| 415 |
+
128
|
| 416 |
+
]
|
| 417 |
+
}
|
| 418 |
+
}
|
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 |
+
"top_k": 20,
|
| 10 |
+
"top_p": 0.95,
|
| 11 |
+
"repetition_penalty": 1.0,
|
| 12 |
+
"temperature": 0.8,
|
| 13 |
+
"transformers_version": "4.56.0"
|
| 14 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef2645131a322a5caea03366dc23f4714c2eb4157dc307b0e3c4b86298e4bd81
|
| 3 |
+
size 9956019648
|
model-00002-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:677c928ad1093c446f63d43d20327f9118f8c98b67b62eea9f574988522aef56
|
| 3 |
+
size 9955588840
|
model-00003-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:581ac4dcc588a27debc2e5bc01727a14ac9350d9dd01c28c0e461e4e8e10b8ea
|
| 3 |
+
size 9955588840
|
model-00004-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d32f90d60f575d3adeed535adf6c85da2b081d90ac76cb6f10dce4b70420dce7
|
| 3 |
+
size 9955588824
|
model-00005-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56b6762edc0e99610b310f143c3ea991c88719324964c16b34cfc3c614d94294
|
| 3 |
+
size 9955588840
|
model-00006-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6681731e94f10752f1859898fcc9c8b33611610bd130b9cd300dd92d9d9a032b
|
| 3 |
+
size 9955588840
|
model-00007-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a48e58631575b4b7c1b55b60034a8d641221147a0912594d3a6adaa3a992f7fc
|
| 3 |
+
size 9955588824
|
model-00008-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbbe5c91fd997b20e3f97eece6b42430485ef3e43e67fe4605f39cbaa26fe26b
|
| 3 |
+
size 9955588840
|
model-00009-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:973797d9edfe69cd81795c4a037e882b041ddd2d1a557614108d6329e206fc3c
|
| 3 |
+
size 9955588824
|
model-00010-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:607d48aa1451992044c387d56fa2512a9ab4e08fff6906807e1a3920be5434ba
|
| 3 |
+
size 9955588840
|
model-00011-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e64b71bb86526c4d9ad276c7a30a26c2c66cc183b5303f4e2436bb04eaf8f75
|
| 3 |
+
size 9955588840
|
model-00012-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5391af01939b993693df3d09a78460125db086855e2bd6cc5396d7b5ebed6eb
|
| 3 |
+
size 9955588824
|
model-00013-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:519ba01428f7186632359df899cc7b44e3e07eea9a2c2312220ccf46b45f4af7
|
| 3 |
+
size 9955588840
|
model-00014-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dd3270104e01cf9d9d998caada1d59e8bf698d544a8ccfa809fbfdfd65a7403
|
| 3 |
+
size 9955588840
|
model-00015-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52dea7ef12656bccfd4617647078b6de593ee50a0c7c5c975509258dc83b37e5
|
| 3 |
+
size 9955588824
|
model-00016-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea59e25b02306c4988668fe1d9fd1ad203d0ea7abb6968debabb6fdbc818f94a
|
| 3 |
+
size 9955588840
|
model-00017-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1823d46b18dea8a1848a7165118481c37c64f8a14daab3324d68a7e1e20c1e4
|
| 3 |
+
size 9955588840
|
model-00018-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f17371fd672c102e228f65ec5bdc915b8b2b54609ad8aae480edbba10ceb4885
|
| 3 |
+
size 9955588824
|
model-00019-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:465c4d92e11dac9b322a13f8724546df4fe6a8bf1c73a2ee184606e0e326bfbe
|
| 3 |
+
size 9955588840
|
model-00020-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebe11dbfdad8c0f10e3f4ca906a35a86c132cbfc2e1ffd95440fb31e971f38b2
|
| 3 |
+
size 9955588824
|
model-00021-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4c1eaf33b48b80452bf8dbcb339d7753a7ded492f82b865be81f27704f7e918
|
| 3 |
+
size 9955588840
|
model-00022-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f499f54e012c1e8c2c1c990f2b3da6c2db241a5781d36ccfbd6392bf16c2bb3
|
| 3 |
+
size 9955588840
|
model-00023-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:946d5d76c97ef19e07750d2b1be75c00ff49d56d922bd47d3a0da4295c29ff90
|
| 3 |
+
size 9955588824
|
model-00024-of-00024.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eae53aa2855a2a2c32ea7d274534f818ef2ee6bbdfa7d262cd75e723f69e6955
|
| 3 |
+
size 8619507568
|
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,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 16777216,
|
| 4 |
+
"shortest_edge": 65536
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"image_processor_type": "Qwen2VLImageProcessorFast"
|
| 21 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count) %}\n {%- if content is string %}\n {{- content }}\n {%- else %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}\n <|vision_start|><|image_pad|><|vision_end|>\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}\n <|vision_start|><|video_pad|><|vision_end|>\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n{%- endmacro %}\n{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- render_content(messages[0].content, false) + '\\n\\n' }}\n {%- endif %}\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' + render_content(messages[0].content, false) + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false) %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, True) %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- 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<think>\\n' }}\n{%- endif %}\n",
|
| 231 |
+
"clean_up_tokenization_spaces": false,
|
| 232 |
+
"eos_token": "<|im_end|>",
|
| 233 |
+
"errors": "replace",
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 25165824,
|
| 4 |
+
"shortest_edge": 4096
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 21 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|