ZHANGYUXUAN-zR commited on
Commit
c62a0ee
·
verified ·
1 Parent(s): f3993d2

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. chat_template.jinja +141 -0
  3. config.json +646 -0
  4. generation_config.json +14 -0
  5. model-00001-of-00041.safetensors +3 -0
  6. model-00002-of-00041.safetensors +3 -0
  7. model-00003-of-00041.safetensors +3 -0
  8. model-00004-of-00041.safetensors +3 -0
  9. model-00005-of-00041.safetensors +3 -0
  10. model-00006-of-00041.safetensors +3 -0
  11. model-00007-of-00041.safetensors +3 -0
  12. model-00008-of-00041.safetensors +3 -0
  13. model-00009-of-00041.safetensors +3 -0
  14. model-00010-of-00041.safetensors +3 -0
  15. model-00011-of-00041.safetensors +3 -0
  16. model-00012-of-00041.safetensors +3 -0
  17. model-00013-of-00041.safetensors +3 -0
  18. model-00014-of-00041.safetensors +3 -0
  19. model-00015-of-00041.safetensors +3 -0
  20. model-00016-of-00041.safetensors +3 -0
  21. model-00017-of-00041.safetensors +3 -0
  22. model-00018-of-00041.safetensors +3 -0
  23. model-00019-of-00041.safetensors +3 -0
  24. model-00020-of-00041.safetensors +3 -0
  25. model-00021-of-00041.safetensors +3 -0
  26. model-00022-of-00041.safetensors +3 -0
  27. model-00023-of-00041.safetensors +3 -0
  28. model-00024-of-00041.safetensors +3 -0
  29. model-00025-of-00041.safetensors +3 -0
  30. model-00026-of-00041.safetensors +3 -0
  31. model-00027-of-00041.safetensors +3 -0
  32. model-00028-of-00041.safetensors +3 -0
  33. model-00029-of-00041.safetensors +3 -0
  34. model-00030-of-00041.safetensors +3 -0
  35. model-00031-of-00041.safetensors +3 -0
  36. model-00032-of-00041.safetensors +3 -0
  37. model-00033-of-00041.safetensors +3 -0
  38. model-00034-of-00041.safetensors +3 -0
  39. model-00035-of-00041.safetensors +3 -0
  40. model-00036-of-00041.safetensors +3 -0
  41. model-00037-of-00041.safetensors +3 -0
  42. model-00038-of-00041.safetensors +3 -0
  43. model-00039-of-00041.safetensors +3 -0
  44. model-00040-of-00041.safetensors +3 -0
  45. model-00041-of-00041.safetensors +3 -0
  46. model.safetensors.index.json +0 -0
  47. preprocessor_config.json +11 -0
  48. tokenizer.json +3 -0
  49. tokenizer_config.json +327 -0
  50. video_preprocessor_config.json +11 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ <|system|>
4
+ # Tools
5
+
6
+ You may call one or more functions to assist with the user query.
7
+
8
+ You are provided with function signatures within <tools></tools> XML tags:
9
+ <tools>
10
+ {% for tool in tools %}
11
+ {{ tool | tojson(ensure_ascii=False) }}
12
+ {% endfor %}
13
+ </tools>
14
+
15
+ For each function call, output the function name and arguments within the following XML format:
16
+ <tool_call>{function-name}
17
+ <arg_key>{arg-key-1}</arg_key>
18
+ <arg_value>{arg-value-1}</arg_value>
19
+ <arg_key>{arg-key-2}</arg_key>
20
+ <arg_value>{arg-value-2}</arg_value>
21
+ ...
22
+ </tool_call>{%- endif -%}
23
+ {%- macro visible_text(content) -%}
24
+ {%- if content is string -%}
25
+ {{- content }}
26
+ {%- elif content is iterable and content is not mapping -%}
27
+ {%- for item in content -%}
28
+ {%- if item is mapping and item.type == 'text' -%}
29
+ {{- item.text }}
30
+ {%- elif item is mapping and (item.type == 'image' or 'image' in item) -%}
31
+ <|begin_of_image|><|image|><|end_of_image|>
32
+ {%- elif item is mapping and (item.type == 'video' or 'video' in item) -%}
33
+ <|begin_of_video|><|video|><|end_of_video|>
34
+ {%- elif item is string -%}
35
+ {{- item }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{- content }}
40
+ {%- endif -%}
41
+ {%- endmacro -%}
42
+ {%- set ns = namespace(last_user_index=-1) %}
43
+ {%- for m in messages %}
44
+ {%- if m.role == 'user' %}
45
+ {% set ns.last_user_index = loop.index0 -%}
46
+ {%- endif %}
47
+ {%- endfor %}
48
+ {% for m in messages %}
49
+ {%- if m.role == 'user' -%}<|user|>
50
+ {% if m.content is string %}
51
+ {{ m.content }}
52
+ {%- else %}
53
+ {%- for item in m.content %}
54
+ {% if item.type == 'video' or 'video' in item %}
55
+ <|begin_of_video|><|video|><|end_of_video|>{% elif item.type == 'image' or 'image' in item %}
56
+ <|begin_of_image|><|image|><|end_of_image|>{% elif item.type == 'text' %}
57
+ {{ item.text }}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- endif %}
61
+ {{- '/nothink' if (enable_thinking is defined and not enable_thinking and not visible_text(m.content).endswith("/nothink")) else '' -}}
62
+ {%- elif m.role == 'assistant' -%}
63
+ <|assistant|>
64
+ {%- set reasoning_content = '' %}
65
+ {%- set content = visible_text(m.content) %}
66
+ {%- if m.reasoning_content is string %}
67
+ {%- set reasoning_content = m.reasoning_content %}
68
+ {%- else %}
69
+ {%- if '</think>' in content %}
70
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
71
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
72
+ {%- endif %}
73
+ {%- endif %}
74
+ {%- if loop.index0 > ns.last_user_index and reasoning_content -%}
75
+ {{ '\n<think>' + reasoning_content.strip() + '</think>'}}
76
+ {%- else -%}
77
+ {{ '\n<think></think>' }}
78
+ {%- endif -%}
79
+ {%- if content.strip() -%}
80
+ {{ '\n' + content.strip() }}
81
+ {%- endif -%}
82
+ {% if m.tool_calls %}
83
+ {% for tc in m.tool_calls %}
84
+ {%- if tc.function %}
85
+ {%- set tc = tc.function %}
86
+ {%- endif %}
87
+ {{ '\n<tool_call>' + tc.name }}
88
+ {% set _args = tc.arguments %}
89
+ {% for k, v in _args.items() %}
90
+ <arg_key>{{ k }}</arg_key>
91
+ <arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>
92
+ {% endfor %}
93
+ </tool_call>{% endfor %}
94
+ {% endif %}
95
+ {%- elif m.role == 'tool' -%}
96
+ {%- if m.content is string -%}
97
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
98
+ {{- '<|observation|>' }}
99
+ {%- endif %}
100
+ {{- '\n<tool_response>\n' }}
101
+ {{- m.content }}
102
+ {{- '\n</tool_response>' }}
103
+ {% elif m.content is iterable and m.content is not mapping %}
104
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
105
+ {{- '<|observation|>' }}
106
+ {%- endif %}
107
+ {{- '\n<tool_response>\n' }}
108
+ {%- for tr in m.content -%}
109
+ {%- if tr is mapping and tr.type is defined -%}
110
+ {%- set t = tr.type | lower -%}
111
+ {%- if t == 'text' and tr.text is defined -%}
112
+ {{ tr.text }}
113
+ {%- elif t in ['image', 'image_url'] -%}
114
+ <|begin_of_image|><|image|><|end_of_image|>
115
+ {%- elif t in ['video', 'video_url'] -%}
116
+ <|begin_of_video|><|video|><|end_of_video|>
117
+ {%- else -%}
118
+ {{ tr | tojson(ensure_ascii=False) }}
119
+ {%- endif -%}
120
+ {%- else -%}
121
+ {{ tr.output if tr.output is defined else tr }}
122
+ {%- endif -%}
123
+ {%- endfor -%}
124
+ {{- '\n</tool_response>' }}
125
+ {%- else -%}
126
+ <|observation|>{% for tr in m.content %}
127
+
128
+ <tool_response>
129
+ {{ tr.output if tr.output is defined else tr }}
130
+ </tool_response>{% endfor -%}
131
+ {% endif -%}
132
+ {# ====== 逻辑结束 ====== #}
133
+ {%- elif m.role == 'system' -%}
134
+ <|system|>
135
+ {{ visible_text(m.content) }}
136
+ {%- endif -%}
137
+ {%- endfor -%}
138
+ {%- if add_generation_prompt -%}
139
+ <|assistant|>
140
+ {{'<think></think>\n' if (enable_thinking is defined and not enable_thinking) else ''}}
141
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,646 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Glm4vMoeForConditionalGeneration"
4
+ ],
5
+ "model_type": "glm4v_moe",
6
+ "text_config": {
7
+ "attention_bias": true,
8
+ "attention_dropout": 0.0,
9
+ "dtype": "bfloat16",
10
+ "eos_token_id": [
11
+ 151329,
12
+ 151336,
13
+ 151338
14
+ ],
15
+ "first_k_dense_replace": 1,
16
+ "head_dim": 128,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 4096,
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 10944,
21
+ "max_position_embeddings": 131072,
22
+ "model_type": "glm4v_moe_text",
23
+ "moe_intermediate_size": 1408,
24
+ "n_group": 1,
25
+ "n_routed_experts": 128,
26
+ "n_shared_experts": 1,
27
+ "norm_topk_prob": true,
28
+ "num_attention_heads": 96,
29
+ "num_experts_per_tok": 8,
30
+ "num_hidden_layers": 46,
31
+ "num_key_value_heads": 8,
32
+ "num_nextn_predict_layers": 0,
33
+ "pad_token_id": 151329,
34
+ "partial_rotary_factor": 0.5,
35
+ "qk_layernorm": false,
36
+ "rms_norm_eps": 1e-05,
37
+ "rope_parameters": {
38
+ "mrope_section": [
39
+ 8,
40
+ 12,
41
+ 12
42
+ ],
43
+ "partial_rotary_factor": 0.5,
44
+ "rope_theta": 500000,
45
+ "rope_type": "default"
46
+ },
47
+ "routed_scaling_factor": 1.0,
48
+ "topk_group": 1,
49
+ "use_cache": true,
50
+ "use_qk_norm": false,
51
+ "vocab_size": 151552
52
+ },
53
+ "tie_word_embeddings": false,
54
+ "transformers_version": "5.0.0rc0",
55
+ "image_start_token_id": 151339,
56
+ "image_end_token_id": 151340,
57
+ "video_start_token_id": 151341,
58
+ "video_end_token_id": 151342,
59
+ "image_token_id": 151363,
60
+ "video_token_id": 151364,
61
+ "vision_config": {
62
+ "attention_bias": false,
63
+ "attention_dropout": 0.0,
64
+ "depth": 24,
65
+ "hidden_act": "silu",
66
+ "hidden_dropout_prob": 0.0,
67
+ "hidden_size": 1536,
68
+ "image_size": 336,
69
+ "in_channels": 3,
70
+ "initializer_range": 0.02,
71
+ "intermediate_size": 10944,
72
+ "model_type": "glm4v_moe_vision",
73
+ "num_heads": 12,
74
+ "out_hidden_size": 4096,
75
+ "patch_size": 14,
76
+ "rms_norm_eps": 1e-05,
77
+ "spatial_merge_size": 2,
78
+ "temporal_patch_size": 2
79
+ },
80
+ "quantization_config": {
81
+ "config_groups": {
82
+ "group_0": {
83
+ "input_activations": {
84
+ "actorder": null,
85
+ "block_structure": null,
86
+ "dynamic": true,
87
+ "group_size": null,
88
+ "num_bits": 8,
89
+ "observer": null,
90
+ "observer_kwargs": {},
91
+ "strategy": "token",
92
+ "symmetric": true,
93
+ "type": "float"
94
+ },
95
+ "output_activations": null,
96
+ "targets": [
97
+ "Linear"
98
+ ],
99
+ "weights": {
100
+ "actorder": null,
101
+ "block_structure": null,
102
+ "dynamic": false,
103
+ "group_size": null,
104
+ "num_bits": 8,
105
+ "observer": "minmax",
106
+ "observer_kwargs": {},
107
+ "strategy": "channel",
108
+ "symmetric": true,
109
+ "type": "float"
110
+ }
111
+ }
112
+ },
113
+ "format": "float-quantized",
114
+ "ignore": [
115
+ "model.layers.4.input_layernorm",
116
+ "model.layers.3.input_layernorm",
117
+ "model.layers.2.input_layernorm",
118
+ "model.layers.0.input_layernorm",
119
+ "model.layers.1.input_layernorm",
120
+ "model.layers.8.input_layernorm",
121
+ "model.layers.6.input_layernorm",
122
+ "model.layers.7.input_layernorm",
123
+ "model.layers.5.input_layernorm",
124
+ "model.layers.9.input_layernorm",
125
+ "visual.blocks.6.norm1",
126
+ "visual.blocks.7.norm1",
127
+ "visual.blocks.8.norm1",
128
+ "visual.blocks.9.norm1",
129
+ "visual.patch_embed.proj.bias",
130
+ "visual.downsample.bias",
131
+ "model.layers.38.mlp.gate",
132
+ "model.layers.39.mlp.gate",
133
+ "model.layers.40.mlp.gate",
134
+ "model.layers.41.mlp.gate",
135
+ "model.layers.42.mlp.gate",
136
+ "model.layers.28.mlp.gate",
137
+ "model.layers.29.mlp.gate",
138
+ "model.layers.30.mlp.gate",
139
+ "model.layers.31.mlp.gate",
140
+ "model.layers.32.mlp.gate",
141
+ "model.layers.31.self_attn.q_proj.bias",
142
+ "model.layers.32.self_attn.q_proj.bias",
143
+ "model.layers.33.self_attn.q_proj.bias",
144
+ "model.layers.43.self_attn.q_proj.bias",
145
+ "model.layers.44.self_attn.q_proj.bias",
146
+ "model.layers.45.self_attn.q_proj.bias",
147
+ "model.layers.20.self_attn.q_proj.bias",
148
+ "model.layers.22.self_attn.q_proj.bias",
149
+ "model.layers.21.self_attn.q_proj.bias",
150
+ "model.layers.23.self_attn.q_proj.bias",
151
+ "model.layers.10.self_attn.q_proj.bias",
152
+ "model.layers.11.self_attn.q_proj.bias",
153
+ "model.layers.12.self_attn.q_proj.bias",
154
+ "model.layers.14.self_attn.q_proj.bias",
155
+ "model.layers.38.self_attn.q_proj.bias",
156
+ "model.layers.39.self_attn.q_proj.bias",
157
+ "model.layers.37.post_attention_layernorm",
158
+ "model.layers.38.post_attention_layernorm",
159
+ "model.layers.39.post_attention_layernorm",
160
+ "model.layers.20.post_attention_layernorm",
161
+ "model.layers.22.post_attention_layernorm",
162
+ "model.layers.21.post_attention_layernorm",
163
+ "model.layers.23.post_attention_layernorm",
164
+ "model.layers.24.post_attention_layernorm",
165
+ "model.layers.25.post_attention_layernorm",
166
+ "model.layers.26.post_attention_layernorm",
167
+ "model.layers.43.self_attn.k_proj.bias",
168
+ "model.layers.44.self_attn.k_proj.bias",
169
+ "model.layers.45.self_attn.k_proj.bias",
170
+ "model.layers.5.self_attn.v_proj.bias",
171
+ "model.layers.9.self_attn.v_proj.bias",
172
+ "model.layers.33.mlp.gate",
173
+ "model.layers.34.mlp.gate",
174
+ "model.layers.35.mlp.gate",
175
+ "model.layers.36.mlp.gate",
176
+ "model.layers.37.mlp.gate",
177
+ "model.layers.10.mlp.gate",
178
+ "model.layers.11.mlp.gate",
179
+ "model.layers.12.mlp.gate",
180
+ "model.layers.14.mlp.gate",
181
+ "model.layers.13.mlp.gate",
182
+ "model.layers.6.mlp.gate",
183
+ "model.layers.7.mlp.gate",
184
+ "model.layers.5.mlp.gate",
185
+ "model.layers.3.mlp.gate",
186
+ "model.layers.2.mlp.gate",
187
+ "model.layers.4.mlp.gate",
188
+ "model.layers.1.mlp.gate",
189
+ "model.layers.8.mlp.gate",
190
+ "model.layers.9.mlp.gate",
191
+ "visual.blocks.15.mlp.gate_up_proj",
192
+ "visual.blocks.15.mlp.gate_proj",
193
+ "visual.blocks.15.mlp.up_proj",
194
+ "visual.blocks.16.mlp.down_proj",
195
+ "visual.blocks.16.mlp.gate_up_proj",
196
+ "visual.blocks.16.mlp.gate_proj",
197
+ "visual.blocks.16.mlp.up_proj",
198
+ "visual.blocks.17.mlp.down_proj",
199
+ "visual.blocks.17.mlp.gate_up_proj",
200
+ "visual.blocks.17.mlp.gate_proj",
201
+ "visual.blocks.17.mlp.up_proj",
202
+ "visual.blocks.18.mlp.down_proj",
203
+ "visual.blocks.18.mlp.gate_up_proj",
204
+ "visual.blocks.18.mlp.gate_proj",
205
+ "visual.blocks.18.mlp.up_proj",
206
+ "visual.blocks.19.mlp.down_proj",
207
+ "visual.blocks.19.mlp.gate_up_proj",
208
+ "visual.blocks.19.mlp.gate_proj",
209
+ "visual.blocks.19.mlp.up_proj",
210
+ "visual.blocks.20.mlp.down_proj",
211
+ "visual.post_layernorm",
212
+ "model.layers.40.mlp.gate.e_score_correction_bias",
213
+ "model.layers.41.mlp.gate.e_score_correction_bias",
214
+ "model.layers.42.mlp.gate.e_score_correction_bias",
215
+ "model.layers.29.mlp.gate.e_score_correction_bias",
216
+ "model.layers.30.mlp.gate.e_score_correction_bias",
217
+ "model.layers.31.mlp.gate.e_score_correction_bias",
218
+ "model.layers.32.mlp.gate.e_score_correction_bias",
219
+ "model.layers.33.mlp.gate.e_score_correction_bias",
220
+ "model.layers.34.mlp.gate.e_score_correction_bias",
221
+ "model.layers.35.mlp.gate.e_score_correction_bias",
222
+ "visual.blocks.12.norm1",
223
+ "visual.blocks.12.norm2",
224
+ "visual.blocks.13.norm1",
225
+ "visual.blocks.13.norm2",
226
+ "visual.blocks.14.norm1",
227
+ "visual.blocks.14.norm2",
228
+ "visual.blocks.15.norm1",
229
+ "visual.blocks.15.norm2",
230
+ "visual.blocks.16.norm2",
231
+ "visual.blocks.17.norm2",
232
+ "model.layers.45.mlp.gate.e_score_correction_bias",
233
+ "model.layers.17.post_attention_layernorm",
234
+ "model.layers.18.post_attention_layernorm",
235
+ "model.layers.19.post_attention_layernorm",
236
+ "model.layers.43.post_attention_layernorm",
237
+ "model.layers.44.post_attention_layernorm",
238
+ "model.layers.45.post_attention_layernorm",
239
+ "model.layers.20.self_attn.v_proj.bias",
240
+ "model.layers.22.self_attn.v_proj.bias",
241
+ "model.layers.21.self_attn.v_proj.bias",
242
+ "model.layers.23.self_attn.v_proj.bias",
243
+ "model.layers.24.self_attn.v_proj.bias",
244
+ "model.layers.25.self_attn.v_proj.bias",
245
+ "model.layers.26.self_attn.v_proj.bias",
246
+ "model.layers.27.self_attn.v_proj.bias",
247
+ "model.layers.28.self_attn.v_proj.bias",
248
+ "model.layers.29.self_attn.v_proj.bias",
249
+ "visual.blocks.11.mlp.gate_up_proj",
250
+ "visual.blocks.11.mlp.gate_proj",
251
+ "visual.blocks.11.mlp.up_proj",
252
+ "visual.blocks.5.mlp.gate_up_proj",
253
+ "visual.blocks.5.mlp.gate_proj",
254
+ "visual.blocks.5.mlp.up_proj",
255
+ "visual.blocks.5.norm1",
256
+ "visual.blocks.6.mlp.gate_up_proj",
257
+ "visual.blocks.6.mlp.gate_proj",
258
+ "visual.blocks.6.mlp.up_proj",
259
+ "visual.blocks.7.mlp.gate_up_proj",
260
+ "visual.blocks.7.mlp.gate_proj",
261
+ "visual.blocks.7.mlp.up_proj",
262
+ "visual.blocks.8.mlp.gate_up_proj",
263
+ "visual.blocks.8.mlp.gate_proj",
264
+ "visual.blocks.8.mlp.up_proj",
265
+ "visual.blocks.9.mlp.gate_up_proj",
266
+ "visual.blocks.9.mlp.gate_proj",
267
+ "visual.blocks.9.mlp.up_proj",
268
+ "model.layers.22.mlp.gate.e_score_correction_bias",
269
+ "model.layers.10.mlp.gate.e_score_correction_bias",
270
+ "model.layers.11.mlp.gate.e_score_correction_bias",
271
+ "model.layers.12.mlp.gate.e_score_correction_bias",
272
+ "visual.blocks.12.mlp.down_proj",
273
+ "visual.blocks.12.mlp.gate_up_proj",
274
+ "visual.blocks.12.mlp.gate_proj",
275
+ "visual.blocks.12.mlp.up_proj",
276
+ "model.layers.14.mlp.gate.e_score_correction_bias",
277
+ "model.layers.13.mlp.gate.e_score_correction_bias",
278
+ "model.layers.15.mlp.gate.e_score_correction_bias",
279
+ "visual.blocks.13.mlp.down_proj",
280
+ "visual.blocks.13.mlp.gate_up_proj",
281
+ "visual.blocks.13.mlp.gate_proj",
282
+ "visual.blocks.13.mlp.up_proj",
283
+ "visual.blocks.14.mlp.down_proj",
284
+ "visual.blocks.14.mlp.gate_up_proj",
285
+ "visual.blocks.14.mlp.gate_proj",
286
+ "visual.blocks.14.mlp.up_proj",
287
+ "visual.blocks.15.mlp.down_proj",
288
+ "model.embed_tokens",
289
+ "model.layers.10.input_layernorm",
290
+ "model.layers.11.input_layernorm",
291
+ "model.layers.12.input_layernorm",
292
+ "model.layers.14.input_layernorm",
293
+ "model.layers.39.input_layernorm",
294
+ "model.layers.13.input_layernorm",
295
+ "model.layers.15.input_layernorm",
296
+ "model.layers.16.input_layernorm",
297
+ "model.layers.17.input_layernorm",
298
+ "model.layers.18.input_layernorm",
299
+ "model.layers.27.post_attention_layernorm",
300
+ "model.layers.28.post_attention_layernorm",
301
+ "model.layers.29.post_attention_layernorm",
302
+ "model.layers.10.post_attention_layernorm",
303
+ "model.layers.11.post_attention_layernorm",
304
+ "model.layers.12.post_attention_layernorm",
305
+ "model.layers.14.post_attention_layernorm",
306
+ "model.layers.13.post_attention_layernorm",
307
+ "model.layers.15.post_attention_layernorm",
308
+ "model.layers.16.post_attention_layernorm",
309
+ "visual.blocks.19.norm2",
310
+ "visual.blocks.20.norm2",
311
+ "visual.blocks.21.norm2",
312
+ "visual.blocks.22.norm2",
313
+ "visual.blocks.23.norm2",
314
+ "visual.blocks.10.norm2",
315
+ "visual.blocks.11.norm2",
316
+ "model.layers.2.mlp.gate.e_score_correction_bias",
317
+ "model.layers.4.mlp.gate.e_score_correction_bias",
318
+ "model.layers.3.mlp.gate.e_score_correction_bias",
319
+ "model.layers.1.mlp.gate.e_score_correction_bias",
320
+ "model.layers.8.mlp.gate.e_score_correction_bias",
321
+ "model.layers.6.mlp.gate.e_score_correction_bias",
322
+ "model.layers.7.mlp.gate.e_score_correction_bias",
323
+ "model.layers.5.mlp.gate.e_score_correction_bias",
324
+ "model.layers.9.mlp.gate.e_score_correction_bias",
325
+ "model.layers.2.self_attn.k_proj.bias",
326
+ "model.layers.4.self_attn.k_proj.bias",
327
+ "model.layers.3.self_attn.k_proj.bias",
328
+ "model.layers.0.self_attn.k_proj.bias",
329
+ "model.layers.1.self_attn.k_proj.bias",
330
+ "model.layers.8.self_attn.k_proj.bias",
331
+ "model.layers.6.self_attn.k_proj.bias",
332
+ "model.layers.7.self_attn.k_proj.bias",
333
+ "model.layers.5.self_attn.k_proj.bias",
334
+ "model.layers.9.self_attn.k_proj.bias",
335
+ "model.layers.34.self_attn.q_proj.bias",
336
+ "model.layers.35.self_attn.q_proj.bias",
337
+ "model.layers.36.self_attn.q_proj.bias",
338
+ "model.layers.37.self_attn.q_proj.bias",
339
+ "model.layers.13.self_attn.q_proj.bias",
340
+ "model.layers.15.self_attn.q_proj.bias",
341
+ "model.layers.16.self_attn.q_proj.bias",
342
+ "model.layers.17.self_attn.q_proj.bias",
343
+ "model.layers.18.self_attn.q_proj.bias",
344
+ "model.layers.19.self_attn.q_proj.bias",
345
+ "model.layers.40.self_attn.q_proj.bias",
346
+ "model.layers.41.self_attn.q_proj.bias",
347
+ "model.layers.42.self_attn.q_proj.bias",
348
+ "model.layers.24.self_attn.q_proj.bias",
349
+ "model.layers.25.self_attn.q_proj.bias",
350
+ "model.layers.26.self_attn.q_proj.bias",
351
+ "model.layers.27.self_attn.q_proj.bias",
352
+ "model.layers.28.self_attn.q_proj.bias",
353
+ "model.layers.29.self_attn.q_proj.bias",
354
+ "model.layers.30.self_attn.q_proj.bias",
355
+ "model.layers.25.mlp.gate.e_score_correction_bias",
356
+ "model.layers.26.mlp.gate.e_score_correction_bias",
357
+ "model.layers.27.mlp.gate.e_score_correction_bias",
358
+ "model.layers.28.mlp.gate.e_score_correction_bias",
359
+ "model.layers.39.mlp.gate.e_score_correction_bias",
360
+ "model.layers.16.mlp.gate.e_score_correction_bias",
361
+ "model.layers.17.mlp.gate.e_score_correction_bias",
362
+ "model.layers.18.mlp.gate.e_score_correction_bias",
363
+ "model.layers.19.mlp.gate.e_score_correction_bias",
364
+ "model.layers.20.mlp.gate.e_score_correction_bias",
365
+ "model.layers.36.mlp.gate.e_score_correction_bias",
366
+ "model.layers.37.mlp.gate.e_score_correction_bias",
367
+ "model.layers.38.mlp.gate.e_score_correction_bias",
368
+ "model.layers.21.mlp.gate.e_score_correction_bias",
369
+ "model.layers.23.mlp.gate.e_score_correction_bias",
370
+ "model.layers.24.mlp.gate.e_score_correction_bias",
371
+ "model.layers.22.self_attn.k_proj.bias",
372
+ "model.layers.21.self_attn.k_proj.bias",
373
+ "model.layers.23.self_attn.k_proj.bias",
374
+ "model.layers.24.self_attn.k_proj.bias",
375
+ "model.layers.25.self_attn.k_proj.bias",
376
+ "model.layers.26.self_attn.k_proj.bias",
377
+ "model.layers.27.self_attn.k_proj.bias",
378
+ "model.layers.28.self_attn.k_proj.bias",
379
+ "model.layers.38.self_attn.k_proj.bias",
380
+ "model.layers.39.self_attn.k_proj.bias",
381
+ "visual.blocks.0.norm1",
382
+ "visual.blocks.1.norm1",
383
+ "visual.blocks.2.norm1",
384
+ "visual.blocks.0.norm2",
385
+ "visual.blocks.1.norm2",
386
+ "visual.blocks.2.norm2",
387
+ "visual.blocks.3.norm1",
388
+ "visual.blocks.3.norm2",
389
+ "visual.blocks.4.norm1",
390
+ "visual.blocks.19.attn.qkv_proj",
391
+ "visual.blocks.20.attn.qkv_proj",
392
+ "visual.blocks.21.attn.qkv_proj",
393
+ "visual.blocks.22.attn.qkv_proj",
394
+ "visual.blocks.23.attn.qkv_proj",
395
+ "visual.blocks.10.attn.qkv_proj",
396
+ "visual.blocks.11.attn.qkv_proj",
397
+ "visual.blocks.4.norm2",
398
+ "visual.blocks.5.norm2",
399
+ "visual.blocks.6.norm2",
400
+ "visual.blocks.7.norm2",
401
+ "visual.blocks.8.norm2",
402
+ "visual.blocks.9.norm2",
403
+ "visual.blocks.20.mlp.gate_up_proj",
404
+ "visual.blocks.20.mlp.gate_proj",
405
+ "visual.blocks.20.mlp.up_proj",
406
+ "visual.blocks.21.mlp.down_proj",
407
+ "visual.blocks.21.mlp.gate_up_proj",
408
+ "visual.blocks.21.mlp.gate_proj",
409
+ "visual.blocks.21.mlp.up_proj",
410
+ "visual.blocks.22.mlp.down_proj",
411
+ "visual.blocks.22.mlp.gate_up_proj",
412
+ "visual.blocks.22.mlp.gate_proj",
413
+ "visual.blocks.22.mlp.up_proj",
414
+ "visual.blocks.23.mlp.down_proj",
415
+ "visual.blocks.23.mlp.gate_up_proj",
416
+ "visual.blocks.23.mlp.gate_proj",
417
+ "visual.blocks.23.mlp.up_proj",
418
+ "visual.blocks.10.mlp.down_proj",
419
+ "visual.blocks.10.mlp.gate_up_proj",
420
+ "visual.blocks.10.mlp.gate_proj",
421
+ "visual.blocks.10.mlp.up_proj",
422
+ "visual.blocks.11.mlp.down_proj",
423
+ "visual.embeddings.position_embedding",
424
+ "model.layers.15.mlp.gate",
425
+ "model.layers.16.mlp.gate",
426
+ "model.layers.17.mlp.gate",
427
+ "visual.merger.proj",
428
+ "model.layers.43.mlp.gate",
429
+ "model.layers.44.mlp.gate",
430
+ "model.layers.45.mlp.gate",
431
+ "model.layers.32.input_layernorm",
432
+ "model.layers.33.input_layernorm",
433
+ "model.layers.34.input_layernorm",
434
+ "model.layers.35.input_layernorm",
435
+ "model.layers.36.input_layernorm",
436
+ "model.layers.37.input_layernorm",
437
+ "model.layers.38.input_layernorm",
438
+ "model.layers.40.input_layernorm",
439
+ "model.layers.41.input_layernorm",
440
+ "model.layers.42.input_layernorm",
441
+ "model.layers.10.self_attn.k_proj.bias",
442
+ "model.layers.11.self_attn.k_proj.bias",
443
+ "model.layers.12.self_attn.k_proj.bias",
444
+ "model.layers.14.self_attn.k_proj.bias",
445
+ "model.layers.13.self_attn.k_proj.bias",
446
+ "model.layers.15.self_attn.k_proj.bias",
447
+ "model.layers.16.self_attn.k_proj.bias",
448
+ "model.layers.17.self_attn.k_proj.bias",
449
+ "model.layers.18.self_attn.k_proj.bias",
450
+ "model.layers.19.self_attn.k_proj.bias",
451
+ "visual.patch_embed.proj",
452
+ "model.layers.32.self_attn.k_proj.bias",
453
+ "model.layers.33.self_attn.k_proj.bias",
454
+ "model.layers.34.self_attn.k_proj.bias",
455
+ "model.layers.35.self_attn.k_proj.bias",
456
+ "model.layers.36.self_attn.k_proj.bias",
457
+ "model.layers.37.self_attn.k_proj.bias",
458
+ "model.layers.40.self_attn.k_proj.bias",
459
+ "model.layers.41.self_attn.k_proj.bias",
460
+ "model.layers.42.self_attn.k_proj.bias",
461
+ "model.layers.29.self_attn.k_proj.bias",
462
+ "lm_head",
463
+ "model.layers.40.post_attention_layernorm",
464
+ "model.layers.41.post_attention_layernorm",
465
+ "model.layers.42.post_attention_layernorm",
466
+ "model.layers.30.post_attention_layernorm",
467
+ "model.layers.31.post_attention_layernorm",
468
+ "model.layers.32.post_attention_layernorm",
469
+ "model.layers.33.post_attention_layernorm",
470
+ "model.layers.34.post_attention_layernorm",
471
+ "model.layers.35.post_attention_layernorm",
472
+ "model.layers.36.post_attention_layernorm",
473
+ "model.layers.30.self_attn.k_proj.bias",
474
+ "model.layers.31.self_attn.k_proj.bias",
475
+ "model.layers.20.self_attn.k_proj.bias",
476
+ "model.layers.21.input_layernorm",
477
+ "model.layers.23.input_layernorm",
478
+ "model.layers.24.input_layernorm",
479
+ "model.layers.25.input_layernorm",
480
+ "model.layers.26.input_layernorm",
481
+ "model.layers.27.input_layernorm",
482
+ "model.layers.28.input_layernorm",
483
+ "model.layers.29.input_layernorm",
484
+ "model.layers.30.input_layernorm",
485
+ "model.layers.31.input_layernorm",
486
+ "visual.blocks.22.attn.proj",
487
+ "visual.blocks.23.attn.proj",
488
+ "visual.blocks.10.attn.proj",
489
+ "visual.blocks.11.attn.proj",
490
+ "visual.merger.down_proj",
491
+ "visual.merger.gate_up_proj",
492
+ "visual.merger.post_projection_norm.bias",
493
+ "model.norm",
494
+ "visual.blocks.16.norm1",
495
+ "visual.blocks.17.norm1",
496
+ "visual.blocks.18.norm1",
497
+ "visual.blocks.19.norm1",
498
+ "visual.blocks.20.norm1",
499
+ "visual.blocks.21.norm1",
500
+ "visual.blocks.22.norm1",
501
+ "visual.blocks.23.norm1",
502
+ "visual.blocks.10.norm1",
503
+ "visual.blocks.11.norm1",
504
+ "visual.blocks.18.norm2",
505
+ "model.layers.10.self_attn.v_proj.bias",
506
+ "model.layers.11.self_attn.v_proj.bias",
507
+ "model.layers.12.self_attn.v_proj.bias",
508
+ "model.layers.14.self_attn.v_proj.bias",
509
+ "model.layers.13.self_attn.v_proj.bias",
510
+ "model.layers.15.self_attn.v_proj.bias",
511
+ "model.layers.16.self_attn.v_proj.bias",
512
+ "model.layers.17.self_attn.v_proj.bias",
513
+ "model.layers.18.self_attn.v_proj.bias",
514
+ "model.layers.19.self_attn.v_proj.bias",
515
+ "visual.blocks.0.attn.qkv_proj",
516
+ "visual.blocks.1.attn.qkv_proj",
517
+ "visual.blocks.2.attn.qkv_proj",
518
+ "visual.blocks.3.attn.qkv_proj",
519
+ "visual.blocks.4.attn.qkv_proj",
520
+ "visual.blocks.5.attn.qkv_proj",
521
+ "visual.blocks.6.attn.qkv_proj",
522
+ "visual.blocks.7.attn.qkv_proj",
523
+ "visual.blocks.8.attn.qkv_proj",
524
+ "visual.blocks.9.attn.qkv_proj",
525
+ "model.layers.31.self_attn.v_proj.bias",
526
+ "model.layers.32.self_attn.v_proj.bias",
527
+ "model.layers.33.self_attn.v_proj.bias",
528
+ "model.layers.43.self_attn.v_proj.bias",
529
+ "model.layers.44.self_attn.v_proj.bias",
530
+ "model.layers.45.self_attn.v_proj.bias",
531
+ "visual.post_conv_layernorm",
532
+ "visual.blocks.0.mlp.down_proj",
533
+ "visual.blocks.0.mlp.gate_up_proj",
534
+ "visual.blocks.0.mlp.gate_proj",
535
+ "visual.blocks.0.mlp.up_proj",
536
+ "visual.blocks.1.mlp.down_proj",
537
+ "visual.blocks.1.mlp.gate_up_proj",
538
+ "visual.blocks.1.mlp.gate_proj",
539
+ "visual.blocks.1.mlp.up_proj",
540
+ "visual.blocks.2.mlp.down_proj",
541
+ "visual.blocks.2.mlp.gate_up_proj",
542
+ "visual.blocks.2.mlp.gate_proj",
543
+ "visual.blocks.2.mlp.up_proj",
544
+ "visual.blocks.3.mlp.down_proj",
545
+ "visual.blocks.3.mlp.gate_up_proj",
546
+ "visual.blocks.3.mlp.gate_proj",
547
+ "visual.blocks.3.mlp.up_proj",
548
+ "visual.blocks.4.mlp.down_proj",
549
+ "visual.blocks.4.mlp.gate_up_proj",
550
+ "visual.blocks.4.mlp.gate_proj",
551
+ "visual.blocks.4.mlp.up_proj",
552
+ "visual.merger.post_projection_norm",
553
+ "visual.blocks.12.attn.proj",
554
+ "visual.blocks.13.attn.proj",
555
+ "visual.blocks.14.attn.proj",
556
+ "visual.blocks.15.attn.proj",
557
+ "visual.blocks.16.attn.proj",
558
+ "visual.blocks.17.attn.proj",
559
+ "visual.blocks.18.attn.proj",
560
+ "visual.blocks.19.attn.proj",
561
+ "visual.blocks.20.attn.proj",
562
+ "visual.blocks.21.attn.proj",
563
+ "visual.blocks.5.mlp.down_proj",
564
+ "visual.blocks.6.mlp.down_proj",
565
+ "visual.blocks.7.mlp.down_proj",
566
+ "visual.blocks.8.mlp.down_proj",
567
+ "visual.blocks.9.mlp.down_proj",
568
+ "visual.blocks.0.attn.proj",
569
+ "visual.blocks.1.attn.proj",
570
+ "visual.blocks.2.attn.proj",
571
+ "visual.blocks.3.attn.proj",
572
+ "visual.blocks.4.attn.proj",
573
+ "visual.blocks.5.attn.proj",
574
+ "visual.blocks.6.attn.proj",
575
+ "visual.blocks.7.attn.proj",
576
+ "visual.blocks.8.attn.proj",
577
+ "visual.blocks.9.attn.proj",
578
+ "visual.blocks.12.attn.qkv_proj",
579
+ "visual.blocks.13.attn.qkv_proj",
580
+ "visual.blocks.14.attn.qkv_proj",
581
+ "visual.blocks.15.attn.qkv_proj",
582
+ "visual.blocks.16.attn.qkv_proj",
583
+ "visual.blocks.17.attn.qkv_proj",
584
+ "visual.blocks.18.attn.qkv_proj",
585
+ "model.layers.34.self_attn.v_proj.bias",
586
+ "model.layers.35.self_attn.v_proj.bias",
587
+ "model.layers.36.self_attn.v_proj.bias",
588
+ "model.layers.37.self_attn.v_proj.bias",
589
+ "model.layers.38.self_attn.v_proj.bias",
590
+ "model.layers.39.self_attn.v_proj.bias",
591
+ "model.layers.40.self_attn.v_proj.bias",
592
+ "model.layers.41.self_attn.v_proj.bias",
593
+ "model.layers.42.self_attn.v_proj.bias",
594
+ "model.layers.30.self_attn.v_proj.bias",
595
+ "model.layers.2.self_attn.q_proj.bias",
596
+ "model.layers.4.self_attn.q_proj.bias",
597
+ "model.layers.3.self_attn.q_proj.bias",
598
+ "model.layers.0.self_attn.q_proj.bias",
599
+ "model.layers.1.self_attn.q_proj.bias",
600
+ "model.layers.8.self_attn.q_proj.bias",
601
+ "model.layers.6.self_attn.q_proj.bias",
602
+ "model.layers.7.self_attn.q_proj.bias",
603
+ "model.layers.5.self_attn.q_proj.bias",
604
+ "model.layers.9.self_attn.q_proj.bias",
605
+ "model.layers.2.self_attn.v_proj.bias",
606
+ "model.layers.4.self_attn.v_proj.bias",
607
+ "model.layers.3.self_attn.v_proj.bias",
608
+ "model.layers.0.self_attn.v_proj.bias",
609
+ "model.layers.1.self_attn.v_proj.bias",
610
+ "model.layers.8.self_attn.v_proj.bias",
611
+ "model.layers.6.self_attn.v_proj.bias",
612
+ "model.layers.7.self_attn.v_proj.bias",
613
+ "model.layers.18.mlp.gate",
614
+ "model.layers.19.mlp.gate",
615
+ "model.layers.20.mlp.gate",
616
+ "model.layers.22.mlp.gate",
617
+ "model.layers.21.mlp.gate",
618
+ "model.layers.23.mlp.gate",
619
+ "model.layers.24.mlp.gate",
620
+ "model.layers.25.mlp.gate",
621
+ "model.layers.26.mlp.gate",
622
+ "model.layers.27.mlp.gate",
623
+ "model.layers.43.mlp.gate.e_score_correction_bias",
624
+ "model.layers.44.mlp.gate.e_score_correction_bias",
625
+ "model.layers.19.input_layernorm",
626
+ "model.layers.20.input_layernorm",
627
+ "model.layers.22.input_layernorm",
628
+ "model.layers.43.input_layernorm",
629
+ "model.layers.44.input_layernorm",
630
+ "model.layers.45.input_layernorm",
631
+ "model.layers.2.post_attention_layernorm",
632
+ "model.layers.4.post_attention_layernorm",
633
+ "model.layers.3.post_attention_layernorm",
634
+ "model.layers.0.post_attention_layernorm",
635
+ "model.layers.1.post_attention_layernorm",
636
+ "model.layers.8.post_attention_layernorm",
637
+ "model.layers.6.post_attention_layernorm",
638
+ "model.layers.7.post_attention_layernorm",
639
+ "model.layers.5.post_attention_layernorm",
640
+ "model.layers.9.post_attention_layernorm",
641
+ "visual.downsample"
642
+ ],
643
+ "quant_method": "compressed-tensors",
644
+ "quantization_status": "compressed"
645
+ }
646
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151329,
6
+ 151336,
7
+ 151338
8
+ ],
9
+ "pad_token_id": 151329,
10
+ "top_p": 0.6,
11
+ "temperature": 0.8,
12
+ "top_k": 2,
13
+ "transformers_version": "5.0.0rc0"
14
+ }
model-00001-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a735720a1b90aeaca4b33bf1ea7342c1d3f6d23d215d80e6b8f8e02efc25e482
3
+ size 3304424656
model-00002-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f578bfc767ddae89d729baa42a0d5e77641248b2a9f26bf623a3b0d435ba6b51
3
+ size 2687035496
model-00003-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2970b3ae9ceb82cff7afdc288f32651c06f985fd89046580dd3b218b51a04b55
3
+ size 2687052432
model-00004-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c83edf82be40dc7335489c6aaba1bb6a2c8eda48e5384ee4cfcae70ba3d0e96
3
+ size 2686400856
model-00005-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55e071413ad3a162833bc471555e518eb5773b06b6bb4d575d5c6d0c0cdb6e5a
3
+ size 2686400872
model-00006-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:935c7d3d4fef073b79fd9779bde4f75654805f409c4aa3f3e703a994fe59036c
3
+ size 2686400880
model-00007-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a4c5c738ae0bdf0cd4d9f9ac08edf29832d4918d980c4ae7a6ccd1a23e74cb1
3
+ size 2686476248
model-00008-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0abd854f1975ad0635978c269c54c25dc0938c30e1d3694fb71ce1fbb3ec941d
3
+ size 2687035456
model-00009-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b82db6d4d4469cd1b841e0daa6464146d600ebcca164fda961f3f32adf535ac2
3
+ size 2687036136
model-00010-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39027617db086d4e98f9ce926fe23a15ae987c5d716ac36e95c2b1452bece8d5
3
+ size 2686978016
model-00011-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d02e508321b9d91b1730c28b1b1d43cd218c41f6aa5c1337817b9e570ad5b2ab
3
+ size 2686401776
model-00012-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:349a80bc32084ba324bba6a304b1c8ddd2644acdaff8219375551b9193cbcda4
3
+ size 2686401776
model-00013-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:766be835b959e93ca43764a8304b5d2e33b35bbc925600e3471a7d9b8c007cda
3
+ size 2686401800
model-00014-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae49b78b5ea4bea7d8b4c7785b5b3b5cf7bb5ed7f7e5d8c1daf2126ddeef2bd4
3
+ size 2686552424
model-00015-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a5210fc19b9ad17fffafedea389c9c74625f0e99255036d3f7886de5dd7a106
3
+ size 2687036368
model-00016-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ecdc681a9b2b76fcdef074684dc8a6ac6050855c5800db4b71fdbfd9c82114c
3
+ size 2664949784
model-00017-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4386cd6413c3b4d9dea337ffb1c08c0596eed49ca23633a8e59e7e89601caff4
3
+ size 2685897056
model-00018-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a74b849f83908e7372189a51dc1a59fb532228285b0d7d30912a1d285e09bf82
3
+ size 2686401776
model-00019-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6da165c6adde01063adc4d82789e4bab77b698a772decd0f659fd1003cf5422
3
+ size 2686401784
model-00020-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42dae1f28f88216ae20e5a717fa82b5d2b84730edb6cbc928f4caeb460384b86
3
+ size 2686401808
model-00021-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:194b29e243de8319be9474c4efed458c5f7a3720f78d5b7295469faaa8c5fa99
3
+ size 2686584680
model-00022-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27f6dea5e03e0884a091223b212bb6ebe3cca6df38a31be4814854e3a3f7426d
3
+ size 2687036368
model-00023-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e0bd22e39caa2be184c7bc3b904a0933f85801aeffc48bfa10bb0a5cff08fd5
3
+ size 2664936624
model-00024-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4d248cb423d94d45e081ce77d2f1badd667f1bf2e74bd37f386fcd7ea30b2c2
3
+ size 2685877960
model-00025-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:093600ec5c0c7188d38be5e03282fd100d3897a7e12f4c79a8e80570ae9c7e46
3
+ size 2686401784
model-00026-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:856e5e4238d50c5f4be12c8e4b7014f009aecf30a9a2e339d916e5c4f2ce4b88
3
+ size 2686401776
model-00027-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7614db65f32c19b851fbe0b04c64220c5d88d42d909b7eab6da5db751aaeb97
3
+ size 2686401816
model-00028-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8527d3d926edddd1bfe85d8d996c0093840b7ac531bef48bd21f687900b1047
3
+ size 2686616944
model-00029-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e1409f521d390f3c6e5ba199e08e5469ffa3de8dc9db9635eacc14ac84afee3
3
+ size 2687036368
model-00030-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fefc0e54e5fa9b2e1bb0fc32f5575c65740700390a2663b6004867121a3ae6d8
3
+ size 2685319472
model-00031-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ced8a7119c34cbb7365176e0b1212a1dd89f91c1f0982be603c30076902c0c7
3
+ size 2688555128
model-00032-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb61eaa4bebaaf6fd51d09b4cc78e1eac15a45f7753b25b8e3a0d1171965ed5c
3
+ size 2686401776
model-00033-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3db64148c46cb30c81d595b73fad9494f32b0c91ef04213608302a6dd9880cf
3
+ size 2686401784
model-00034-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04e04a703217d50d6a72ee65fe5aa902d8e87ce50e35573b47583de36d6b8879
3
+ size 2686401824
model-00035-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e0c180ddbcb5154926644a2153bd5ea074b26bbc03fd4e57953604d359e94ba
3
+ size 2686692232
model-00036-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4156a4d8121f49c7f5a8e621c0e012994ccfcf0f6fd2870936bd0b957e9ddb64
3
+ size 2687036368
model-00037-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c685268ed6c2d0e2c0adc2dcc11b0524fcaf875311ab4a36d33624edc57cb66
3
+ size 2665868992
model-00038-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1998e39fc474136ad7dbde1df0c8edbc3461097b04fdb319c9e8535a90e7fedb
3
+ size 2684838000
model-00039-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3a7bbdc89eeed68d3a5a44d0dfae7459922c0fa431ac166a1003314dac8c0ec
3
+ size 2686401784
model-00040-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c204ba63bab0740f9215cb6bb632f45b37edab2e662728c4b8d35e3c07da6934
3
+ size 3646968248
model-00041-of-00041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1786b6e7ccba887db5ebfb7b2ebff06eb40f637acc9a33768b0a31a001e694b1
3
+ size 1028463576
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,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size": {"shortest_edge": 12544, "longest_edge": 9633792},
3
+ "do_rescale": true,
4
+ "patch_size": 14,
5
+ "temporal_patch_size": 2,
6
+ "merge_size": 2,
7
+ "image_mean": [0.48145466, 0.4578275, 0.40821073],
8
+ "image_std": [0.26862954, 0.26130258, 0.27577711],
9
+ "image_processor_type": "Glm46VImageProcessor",
10
+ "processor_class": "Glm46VProcessor"
11
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9340665016419c825c4bdabbcc9acc43b7ca2c68ce142724afa829abb1be5efd
3
+ size 19970699
tokenizer_config.json ADDED
@@ -0,0 +1,327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "151329": {
4
+ "content": "<|endoftext|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "151330": {
12
+ "content": "[MASK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "151331": {
20
+ "content": "[gMASK]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "151332": {
28
+ "content": "[sMASK]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "151333": {
36
+ "content": "<sop>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "151334": {
44
+ "content": "<eop>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "151335": {
52
+ "content": "<|system|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "151336": {
60
+ "content": "<|user|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "151337": {
68
+ "content": "<|assistant|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "151338": {
76
+ "content": "<|observation|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "151339": {
84
+ "content": "<|begin_of_image|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "151340": {
92
+ "content": "<|end_of_image|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "151341": {
100
+ "content": "<|begin_of_video|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "151342": {
108
+ "content": "<|end_of_video|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "151343": {
116
+ "content": "<|begin_of_audio|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "151344": {
124
+ "content": "<|end_of_audio|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "151345": {
132
+ "content": "<|begin_of_transcription|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "151346": {
140
+ "content": "<|end_of_transcription|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "151347": {
148
+ "content": "<|code_prefix|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "151348": {
156
+ "content": "<|code_middle|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "151349": {
164
+ "content": "<|code_suffix|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "151350": {
172
+ "content": "<think>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": false
178
+ },
179
+ "151351": {
180
+ "content": "</think>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": false
186
+ },
187
+ "151352": {
188
+ "content": "<tool_call>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": false
194
+ },
195
+ "151353": {
196
+ "content": "</tool_call>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": false
202
+ },
203
+ "151354": {
204
+ "content": "<tool_response>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": false
210
+ },
211
+ "151355": {
212
+ "content": "</tool_response>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": false
218
+ },
219
+ "151356": {
220
+ "content": "<arg_key>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": false
226
+ },
227
+ "151357": {
228
+ "content": "</arg_key>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": false
234
+ },
235
+ "151358": {
236
+ "content": "<arg_value>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": false
242
+ },
243
+ "151359": {
244
+ "content": "</arg_value>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": false
250
+ },
251
+ "151360": {
252
+ "content": "/nothink",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "151361": {
260
+ "content": "<|begin_of_box|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": false
266
+ },
267
+ "151362": {
268
+ "content": "<|end_of_box|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": false
274
+ },
275
+ "151363": {
276
+ "content": "<|image|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": false
282
+ },
283
+ "151364": {
284
+ "content": "<|video|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": false
290
+ }
291
+ },
292
+ "additional_special_tokens": [
293
+ "<|endoftext|>",
294
+ "[MASK]",
295
+ "[gMASK]",
296
+ "[sMASK]",
297
+ "<sop>",
298
+ "<eop>",
299
+ "<|system|>",
300
+ "<|user|>",
301
+ "<|assistant|>",
302
+ "<|observation|>",
303
+ "<|begin_of_image|>",
304
+ "<|end_of_image|>",
305
+ "<|begin_of_video|>",
306
+ "<|end_of_video|>",
307
+ "<|begin_of_audio|>",
308
+ "<|end_of_audio|>",
309
+ "<|image|>",
310
+ "<|video|>",
311
+ "<|begin_of_transcription|>",
312
+ "<|end_of_transcription|>",
313
+ "<|code_prefix|>",
314
+ "<|code_middle|>",
315
+ "<|code_suffix|>",
316
+ "/nothink"
317
+ ],
318
+ "clean_up_tokenization_spaces": false,
319
+ "do_lower_case": false,
320
+ "eos_token": "<|endoftext|>",
321
+ "extra_special_tokens": {},
322
+ "model_max_length": 128000,
323
+ "pad_token": "<|endoftext|>",
324
+ "padding_side": "left",
325
+ "remove_space": false,
326
+ "tokenizer_class": "PreTrainedTokenizer"
327
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size": {"shortest_edge": 12544, "longest_edge": 47040000},
3
+ "do_rescale": true,
4
+ "patch_size": 14,
5
+ "temporal_patch_size": 2,
6
+ "merge_size": 2,
7
+ "image_mean": [0.48145466, 0.4578275, 0.40821073],
8
+ "image_std": [0.26862954, 0.26130258, 0.27577711],
9
+ "video_processor_type": "Glm46VVideoProcessor",
10
+ "processor_class": "Glm46VProcessor"
11
+ }