SorenNumind commited on
Commit
8e85085
·
verified ·
1 Parent(s): d18535d

Upload folder using huggingface_hub

Browse files
.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
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
config.json ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "eos_token_id": 151645,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 2048,
10
+ "image_token_id": 151655,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 11008,
13
+ "max_position_embeddings": 128000,
14
+ "max_window_layers": 70,
15
+ "model_type": "qwen2_5_vl",
16
+ "num_attention_heads": 16,
17
+ "num_hidden_layers": 36,
18
+ "num_key_value_heads": 2,
19
+ "quantization_config": {
20
+ "bits": 4,
21
+ "checkpoint_format": "gptq",
22
+ "desc_act": true,
23
+ "group_size": 128,
24
+ "lm_head": false,
25
+ "meta": {
26
+ "damp_auto_increment": 0.01,
27
+ "damp_percent": 0.05,
28
+ "mse": 0.0,
29
+ "quantizer": [
30
+ "gptqmodel:4.0.0-dev"
31
+ ],
32
+ "static_groups": false,
33
+ "true_sequential": true,
34
+ "uri": "https://github.com/modelcloud/gptqmodel",
35
+ "v2": false,
36
+ "v2_alpha": 0.25
37
+ },
38
+ "pack_dtype": "int32",
39
+ "quant_method": "gptq",
40
+ "sym": true
41
+ },
42
+ "rms_norm_eps": 1e-06,
43
+ "rope_scaling": {
44
+ "mrope_section": [
45
+ 16,
46
+ 24,
47
+ 24
48
+ ],
49
+ "rope_type": "default",
50
+ "type": "default"
51
+ },
52
+ "rope_theta": 1000000.0,
53
+ "sliding_window": 32768,
54
+ "text_config": {
55
+ "architectures": [
56
+ "Qwen2_5_VLForConditionalGeneration"
57
+ ],
58
+ "attention_dropout": 0.0,
59
+ "bos_token_id": 151643,
60
+ "eos_token_id": 151645,
61
+ "hidden_act": "silu",
62
+ "hidden_size": 2048,
63
+ "image_token_id": null,
64
+ "initializer_range": 0.02,
65
+ "intermediate_size": 11008,
66
+ "layer_types": [
67
+ "full_attention",
68
+ "full_attention",
69
+ "full_attention",
70
+ "full_attention",
71
+ "full_attention",
72
+ "full_attention",
73
+ "full_attention",
74
+ "full_attention",
75
+ "full_attention",
76
+ "full_attention",
77
+ "full_attention",
78
+ "full_attention",
79
+ "full_attention",
80
+ "full_attention",
81
+ "full_attention",
82
+ "full_attention",
83
+ "full_attention",
84
+ "full_attention",
85
+ "full_attention",
86
+ "full_attention",
87
+ "full_attention",
88
+ "full_attention",
89
+ "full_attention",
90
+ "full_attention",
91
+ "full_attention",
92
+ "full_attention",
93
+ "full_attention",
94
+ "full_attention",
95
+ "full_attention",
96
+ "full_attention",
97
+ "full_attention",
98
+ "full_attention",
99
+ "full_attention",
100
+ "full_attention",
101
+ "full_attention",
102
+ "full_attention"
103
+ ],
104
+ "max_position_embeddings": 128000,
105
+ "max_window_layers": 70,
106
+ "model_type": "qwen2_5_vl_text",
107
+ "num_attention_heads": 16,
108
+ "num_hidden_layers": 36,
109
+ "num_key_value_heads": 2,
110
+ "rms_norm_eps": 1e-06,
111
+ "rope_scaling": {
112
+ "mrope_section": [
113
+ 16,
114
+ 24,
115
+ 24
116
+ ],
117
+ "rope_type": "default",
118
+ "type": "default"
119
+ },
120
+ "rope_theta": 1000000.0,
121
+ "sliding_window": null,
122
+ "tie_word_embeddings": true,
123
+ "torch_dtype": "bfloat16",
124
+ "use_cache": true,
125
+ "use_sliding_window": false,
126
+ "video_token_id": null,
127
+ "vision_end_token_id": 151653,
128
+ "vision_start_token_id": 151652,
129
+ "vision_token_id": 151654,
130
+ "vocab_size": 151936
131
+ },
132
+ "torch_dtype": "bfloat16",
133
+ "transformers_version": "4.53.2",
134
+ "use_cache": true,
135
+ "use_sliding_window": false,
136
+ "video_token_id": 151656,
137
+ "vision_config": {
138
+ "depth": 32,
139
+ "fullatt_block_indexes": [
140
+ 7,
141
+ 15,
142
+ 23,
143
+ 31
144
+ ],
145
+ "hidden_act": "silu",
146
+ "hidden_size": 1280,
147
+ "in_channels": 3,
148
+ "in_chans": 3,
149
+ "initializer_range": 0.02,
150
+ "intermediate_size": 3420,
151
+ "model_type": "qwen2_5_vl",
152
+ "num_heads": 16,
153
+ "out_hidden_size": 2048,
154
+ "patch_size": 14,
155
+ "spatial_merge_size": 2,
156
+ "spatial_patch_size": 14,
157
+ "temporal_patch_size": 2,
158
+ "tokens_per_second": 2,
159
+ "torch_dtype": "bfloat16",
160
+ "window_size": 112
161
+ },
162
+ "vision_end_token_id": 151653,
163
+ "vision_start_token_id": 151652,
164
+ "vision_token_id": 151654,
165
+ "vocab_size": 151936
166
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.05,
10
+ "temperature": 1e-06,
11
+ "transformers_version": "4.53.2"
12
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a2140c6f3e6bd3a2f6fdf98057db8aa218229a775219edc695c2f6448aa9a66
3
+ size 3405187680
preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": true,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.48145466,
8
+ 0.4578275,
9
+ 0.40821073
10
+ ],
11
+ "image_processor_type": "Qwen2VLImageProcessor",
12
+ "image_std": [
13
+ 0.26862954,
14
+ 0.26130258,
15
+ 0.27577711
16
+ ],
17
+ "max_pixels": 12845056,
18
+ "merge_size": 2,
19
+ "min_pixels": 3136,
20
+ "patch_size": 14,
21
+ "processor_class": "Qwen2_5_VLProcessor",
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 12845056,
26
+ "shortest_edge": 3136
27
+ },
28
+ "temporal_patch_size": 2
29
+ }
quant_log.csv ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.k_proj,0.0000040634,0.05000,0.608
3
+ 0,self_attn.v_proj,0.0000006062,0.05000,0.366
4
+ 0,self_attn.q_proj,0.0000193926,0.05000,0.367
5
+ 0,self_attn.o_proj,0.0000022809,0.05000,0.358
6
+ 0,mlp.up_proj,0.0000099378,0.05000,0.373
7
+ 0,mlp.gate_proj,0.0000124556,0.05000,0.374
8
+ 0,mlp.down_proj,0.0000023232,0.05000,1.931
9
+ 1,self_attn.k_proj,0.0000009198,0.05000,0.368
10
+ 1,self_attn.v_proj,0.0000001869,0.05000,0.351
11
+ 1,self_attn.q_proj,0.0000033967,0.05000,0.344
12
+ 1,self_attn.o_proj,0.0000015133,0.05000,0.369
13
+ 1,mlp.up_proj,0.0022965061,0.05000,0.366
14
+ 1,mlp.gate_proj,0.0031997402,0.05000,0.360
15
+ 1,mlp.down_proj,0.0000001408,0.05000,2.025
16
+ 2,self_attn.k_proj,0.0000010904,0.05000,0.330
17
+ 2,self_attn.v_proj,0.0000002759,0.05000,0.340
18
+ 2,self_attn.q_proj,0.0000049015,0.05000,0.336
19
+ 2,self_attn.o_proj,0.0000011300,0.05000,0.328
20
+ 2,mlp.up_proj,0.0006311594,0.05000,0.325
21
+ 2,mlp.gate_proj,0.0004826943,0.05000,0.342
22
+ 2,mlp.down_proj,0.0004366701,0.05000,2.115
23
+ 3,self_attn.k_proj,0.0000032384,0.05000,0.366
24
+ 3,self_attn.v_proj,0.0000007111,0.05000,0.368
25
+ 3,self_attn.q_proj,0.0000148615,0.05000,0.361
26
+ 3,self_attn.o_proj,0.0000014529,0.05000,0.340
27
+ 3,mlp.up_proj,0.0005290429,0.05000,0.360
28
+ 3,mlp.gate_proj,0.0004906502,0.05000,0.352
29
+ 3,mlp.down_proj,0.0000038434,0.05000,1.924
30
+ 4,self_attn.k_proj,0.0000025431,0.05000,0.368
31
+ 4,self_attn.v_proj,0.0000008757,0.05000,0.362
32
+ 4,self_attn.q_proj,0.0000126745,0.05000,0.379
33
+ 4,self_attn.o_proj,0.0000020869,0.05000,0.355
34
+ 4,mlp.up_proj,0.0003978110,0.05000,0.367
35
+ 4,mlp.gate_proj,0.0004516964,0.05000,0.361
36
+ 4,mlp.down_proj,0.0000016207,0.05000,1.978
37
+ 5,self_attn.k_proj,0.0000033112,0.05000,0.347
38
+ 5,self_attn.v_proj,0.0000014565,0.05000,0.341
39
+ 5,self_attn.q_proj,0.0000184254,0.05000,0.334
40
+ 5,self_attn.o_proj,0.0000023437,0.05000,0.330
41
+ 5,mlp.up_proj,0.0007071495,0.05000,0.334
42
+ 5,mlp.gate_proj,0.0007961280,0.05000,0.340
43
+ 5,mlp.down_proj,0.0000014939,0.05000,1.995
44
+ 6,self_attn.k_proj,0.0000026044,0.05000,0.347
45
+ 6,self_attn.v_proj,0.0000016148,0.05000,0.353
46
+ 6,self_attn.q_proj,0.0000157694,0.05000,0.370
47
+ 6,self_attn.o_proj,0.0000042285,0.05000,0.370
48
+ 6,mlp.up_proj,0.0009018112,0.05000,0.368
49
+ 6,mlp.gate_proj,0.0010366849,0.05000,0.368
50
+ 6,mlp.down_proj,0.0000011726,0.05000,1.930
51
+ 7,self_attn.k_proj,0.0000031160,0.05000,0.357
52
+ 7,self_attn.v_proj,0.0000018465,0.05000,0.354
53
+ 7,self_attn.q_proj,0.0000190155,0.05000,0.367
54
+ 7,self_attn.o_proj,0.0000020445,0.05000,0.357
55
+ 7,mlp.up_proj,0.0005896314,0.05000,0.369
56
+ 7,mlp.gate_proj,0.0006801203,0.05000,0.364
57
+ 7,mlp.down_proj,0.0000021789,0.05000,2.109
58
+ 8,self_attn.k_proj,0.0000029602,0.05000,0.363
59
+ 8,self_attn.v_proj,0.0000020435,0.05000,0.353
60
+ 8,self_attn.q_proj,0.0000188390,0.05000,0.351
61
+ 8,self_attn.o_proj,0.0000013217,0.05000,0.345
62
+ 8,mlp.up_proj,0.0004880707,0.05000,0.341
63
+ 8,mlp.gate_proj,0.0006587554,0.05000,0.345
64
+ 8,mlp.down_proj,0.0000016654,0.05000,2.072
65
+ 9,self_attn.k_proj,0.0000032877,0.05000,0.363
66
+ 9,self_attn.v_proj,0.0000019524,0.05000,0.371
67
+ 9,self_attn.q_proj,0.0000181619,0.05000,0.386
68
+ 9,self_attn.o_proj,0.0000008039,0.05000,0.358
69
+ 9,mlp.up_proj,0.0003569369,0.05000,0.371
70
+ 9,mlp.gate_proj,0.0005121149,0.05000,0.371
71
+ 9,mlp.down_proj,0.0000025109,0.05000,1.953
72
+ 10,self_attn.k_proj,0.0000034298,0.05000,0.372
73
+ 10,self_attn.v_proj,0.0000026901,0.05000,0.362
74
+ 10,self_attn.q_proj,0.0000226561,0.05000,0.372
75
+ 10,self_attn.o_proj,0.0000010749,0.05000,0.351
76
+ 10,mlp.up_proj,0.0002255284,0.05000,0.377
77
+ 10,mlp.gate_proj,0.0003353583,0.05000,0.368
78
+ 10,mlp.down_proj,0.0000035347,0.05000,2.016
79
+ 11,self_attn.k_proj,0.0000026725,0.05000,0.351
80
+ 11,self_attn.v_proj,0.0000021309,0.05000,0.358
81
+ 11,self_attn.q_proj,0.0000166953,0.05000,0.361
82
+ 11,self_attn.o_proj,0.0000017854,0.05000,0.354
83
+ 11,mlp.up_proj,0.0000811131,0.05000,0.349
84
+ 11,mlp.gate_proj,0.0001103679,0.05000,0.350
85
+ 11,mlp.down_proj,0.0000052722,0.05000,2.140
86
+ 12,self_attn.k_proj,0.0000027185,0.05000,0.380
87
+ 12,self_attn.v_proj,0.0000018781,0.05000,0.364
88
+ 12,self_attn.q_proj,0.0000168562,0.05000,0.382
89
+ 12,self_attn.o_proj,0.0000017540,0.05000,0.363
90
+ 12,mlp.up_proj,0.0000913523,0.05000,0.373
91
+ 12,mlp.gate_proj,0.0001290024,0.05000,0.370
92
+ 12,mlp.down_proj,0.0000040652,0.05000,1.977
93
+ 13,self_attn.k_proj,0.0000039847,0.05000,0.370
94
+ 13,self_attn.v_proj,0.0000015442,0.05000,0.364
95
+ 13,self_attn.q_proj,0.0000216264,0.05000,0.374
96
+ 13,self_attn.o_proj,0.0000020568,0.05000,0.358
97
+ 13,mlp.up_proj,0.0000465535,0.05000,0.371
98
+ 13,mlp.gate_proj,0.0000485026,0.05000,0.366
99
+ 13,mlp.down_proj,0.0000035773,0.05000,2.066
100
+ 14,self_attn.k_proj,0.0000027242,0.05000,0.352
101
+ 14,self_attn.v_proj,0.0000015621,0.05000,0.331
102
+ 14,self_attn.q_proj,0.0000163233,0.05000,0.351
103
+ 14,self_attn.o_proj,0.0000034186,0.05000,0.331
104
+ 14,mlp.up_proj,0.0000473507,0.05000,0.340
105
+ 14,mlp.gate_proj,0.0000497855,0.05000,0.337
106
+ 14,mlp.down_proj,0.0000049650,0.05000,2.044
107
+ 15,self_attn.k_proj,0.0000031355,0.05000,0.347
108
+ 15,self_attn.v_proj,0.0000018360,0.05000,0.356
109
+ 15,self_attn.q_proj,0.0000190232,0.05000,0.368
110
+ 15,self_attn.o_proj,0.0000070935,0.05000,0.370
111
+ 15,mlp.up_proj,0.0000492337,0.05000,0.371
112
+ 15,mlp.gate_proj,0.0000472793,0.05000,0.372
113
+ 15,mlp.down_proj,0.0000048209,0.05000,1.958
114
+ 16,self_attn.k_proj,0.0000028816,0.05000,0.363
115
+ 16,self_attn.v_proj,0.0000016655,0.05000,0.365
116
+ 16,self_attn.q_proj,0.0000168683,0.05000,0.378
117
+ 16,self_attn.o_proj,0.0000035855,0.05000,0.352
118
+ 16,mlp.up_proj,0.0000498367,0.05000,0.374
119
+ 16,mlp.gate_proj,0.0000511090,0.05000,0.368
120
+ 16,mlp.down_proj,0.0000046699,0.05000,2.065
121
+ 17,self_attn.k_proj,0.0000050119,0.05000,0.341
122
+ 17,self_attn.v_proj,0.0000026293,0.05000,0.330
123
+ 17,self_attn.q_proj,0.0000287738,0.05000,0.341
124
+ 17,self_attn.o_proj,0.0000093749,0.05000,0.341
125
+ 17,mlp.up_proj,0.0000494367,0.05000,0.343
126
+ 17,mlp.gate_proj,0.0000486890,0.05000,0.341
127
+ 17,mlp.down_proj,0.0000048504,0.05000,2.106
128
+ 18,self_attn.k_proj,0.0000029729,0.05000,0.356
129
+ 18,self_attn.v_proj,0.0000018751,0.05000,0.356
130
+ 18,self_attn.q_proj,0.0000189247,0.05000,0.365
131
+ 18,self_attn.o_proj,0.0000036817,0.05000,0.348
132
+ 18,mlp.up_proj,0.0000509893,0.05000,0.371
133
+ 18,mlp.gate_proj,0.0000527114,0.05000,0.366
134
+ 18,mlp.down_proj,0.0000053501,0.05000,1.976
135
+ 19,self_attn.k_proj,0.0000041355,0.05000,0.371
136
+ 19,self_attn.v_proj,0.0000020078,0.05000,0.367
137
+ 19,self_attn.q_proj,0.0000238353,0.05000,0.378
138
+ 19,self_attn.o_proj,0.0000088396,0.05000,0.366
139
+ 19,mlp.up_proj,0.0000449316,0.05000,0.375
140
+ 19,mlp.gate_proj,0.0000431556,0.05000,0.374
141
+ 19,mlp.down_proj,0.0000043508,0.05000,2.085
142
+ 20,self_attn.k_proj,0.0000041288,0.05000,0.349
143
+ 20,self_attn.v_proj,0.0000038416,0.05000,0.344
144
+ 20,self_attn.q_proj,0.0000344315,0.05000,0.365
145
+ 20,self_attn.o_proj,0.0000147554,0.05000,0.347
146
+ 20,mlp.up_proj,0.0000535635,0.05000,0.349
147
+ 20,mlp.gate_proj,0.0000523148,0.05000,0.363
148
+ 20,mlp.down_proj,0.0000068330,0.05000,2.188
149
+ 21,self_attn.k_proj,0.0000038298,0.05000,0.379
150
+ 21,self_attn.v_proj,0.0000025224,0.05000,0.378
151
+ 21,self_attn.q_proj,0.0000242552,0.05000,0.388
152
+ 21,self_attn.o_proj,0.0000071513,0.05000,0.368
153
+ 21,mlp.up_proj,0.0000517560,0.05000,0.385
154
+ 21,mlp.gate_proj,0.0000548613,0.05000,0.380
155
+ 21,mlp.down_proj,0.0000072140,0.05000,1.973
156
+ 22,self_attn.k_proj,0.0000046511,0.05000,0.383
157
+ 22,self_attn.v_proj,0.0000038298,0.05000,0.372
158
+ 22,self_attn.q_proj,0.0000306858,0.05000,0.376
159
+ 22,self_attn.o_proj,0.0000068249,0.05000,0.386
160
+ 22,mlp.up_proj,0.0000545035,0.05000,0.385
161
+ 22,mlp.gate_proj,0.0000554754,0.05000,0.363
162
+ 22,mlp.down_proj,0.0000060427,0.05000,2.128
163
+ 23,self_attn.k_proj,0.0000045517,0.05000,0.339
164
+ 23,self_attn.v_proj,0.0000022649,0.05000,0.340
165
+ 23,self_attn.q_proj,0.0000303075,0.05000,0.336
166
+ 23,self_attn.o_proj,0.0000062696,0.05000,0.347
167
+ 23,mlp.up_proj,0.0000542692,0.05000,0.367
168
+ 23,mlp.gate_proj,0.0000519028,0.05000,0.380
169
+ 23,mlp.down_proj,0.0000060388,0.05000,2.115
170
+ 24,self_attn.k_proj,0.0000031391,0.05000,0.382
171
+ 24,self_attn.v_proj,0.0000025389,0.05000,0.370
172
+ 24,self_attn.q_proj,0.0000217306,0.05000,0.363
173
+ 24,self_attn.o_proj,0.0000041164,0.05000,0.387
174
+ 24,mlp.up_proj,0.0000561470,0.05000,0.385
175
+ 24,mlp.gate_proj,0.0000542109,0.05000,0.362
176
+ 24,mlp.down_proj,0.0000069144,0.05000,1.967
177
+ 25,self_attn.k_proj,0.0000033413,0.05000,0.355
178
+ 25,self_attn.v_proj,0.0000043154,0.05000,0.361
179
+ 25,self_attn.q_proj,0.0000316823,0.05000,0.376
180
+ 25,self_attn.o_proj,0.0000118628,0.05000,0.374
181
+ 25,mlp.up_proj,0.0000677753,0.05000,0.368
182
+ 25,mlp.gate_proj,0.0000669758,0.05000,0.383
183
+ 25,mlp.down_proj,0.0000110951,0.05000,2.098
184
+ 26,self_attn.k_proj,0.0000030871,0.05000,0.346
185
+ 26,self_attn.v_proj,0.0000038372,0.05000,0.341
186
+ 26,self_attn.q_proj,0.0000233898,0.05000,0.349
187
+ 26,self_attn.o_proj,0.0000063974,0.05000,0.378
188
+ 26,mlp.up_proj,0.0000735646,0.05000,0.403
189
+ 26,mlp.gate_proj,0.0000696784,0.05000,0.387
190
+ 26,mlp.down_proj,0.0000139417,0.05000,2.107
191
+ 27,self_attn.k_proj,0.0000034423,0.05000,0.370
192
+ 27,self_attn.v_proj,0.0000058276,0.05000,0.359
193
+ 27,self_attn.q_proj,0.0000393344,0.05000,0.382
194
+ 27,self_attn.o_proj,0.0000130343,0.05000,0.376
195
+ 27,mlp.up_proj,0.0000744298,0.05000,0.377
196
+ 27,mlp.gate_proj,0.0000736244,0.05000,0.356
197
+ 27,mlp.down_proj,0.0000116098,0.05000,2.036
198
+ 28,self_attn.k_proj,0.0000031231,0.05000,0.364
199
+ 28,self_attn.v_proj,0.0000051522,0.05000,0.366
200
+ 28,self_attn.q_proj,0.0000287182,0.05000,0.376
201
+ 28,self_attn.o_proj,0.0000078141,0.05000,0.362
202
+ 28,mlp.up_proj,0.0000809760,0.05000,0.489
203
+ 28,mlp.gate_proj,0.0000809227,0.05000,0.362
204
+ 28,mlp.down_proj,0.0000107104,0.05000,2.040
205
+ 29,self_attn.k_proj,0.0000032159,0.05000,0.328
206
+ 29,self_attn.v_proj,0.0000043822,0.05000,0.333
207
+ 29,self_attn.q_proj,0.0000270912,0.05000,0.347
208
+ 29,self_attn.o_proj,0.0000069960,0.05000,0.368
209
+ 29,mlp.up_proj,0.0000897726,0.05000,0.388
210
+ 29,mlp.gate_proj,0.0000888188,0.05000,0.408
211
+ 29,mlp.down_proj,0.0000134719,0.05000,2.165
212
+ 30,self_attn.k_proj,0.0000032228,0.05000,0.360
213
+ 30,self_attn.v_proj,0.0000085865,0.05000,0.371
214
+ 30,self_attn.q_proj,0.0000339776,0.05000,0.385
215
+ 30,self_attn.o_proj,0.0000160412,0.05000,0.377
216
+ 30,mlp.up_proj,0.0001201127,0.05000,0.354
217
+ 30,mlp.gate_proj,0.0001130646,0.05000,0.345
218
+ 30,mlp.down_proj,0.0008732517,0.05000,2.056
219
+ 31,self_attn.k_proj,0.0000042993,0.05000,0.370
220
+ 31,self_attn.v_proj,0.0000086031,0.05000,0.367
221
+ 31,self_attn.q_proj,0.0000424028,0.05000,0.374
222
+ 31,self_attn.o_proj,0.0000390922,0.05000,0.385
223
+ 31,mlp.up_proj,0.0001399534,0.05000,0.379
224
+ 31,mlp.gate_proj,0.0001253367,0.05000,0.370
225
+ 31,mlp.down_proj,0.0000341888,0.05000,2.085
226
+ 32,self_attn.k_proj,0.0000050244,0.05000,0.339
227
+ 32,self_attn.v_proj,0.0000184226,0.05000,0.341
228
+ 32,self_attn.q_proj,0.0000524240,0.05000,0.356
229
+ 32,self_attn.o_proj,0.0000505486,0.05000,0.377
230
+ 32,mlp.up_proj,0.0001564809,0.05000,0.380
231
+ 32,mlp.gate_proj,0.0001395116,0.05000,0.347
232
+ 32,mlp.down_proj,0.0000686840,0.05000,2.103
233
+ 33,self_attn.k_proj,0.0000044370,0.05000,0.369
234
+ 33,self_attn.v_proj,0.0000313598,0.05000,0.370
235
+ 33,self_attn.q_proj,0.0000489970,0.05000,0.380
236
+ 33,self_attn.o_proj,0.0000689787,0.05000,0.358
237
+ 33,mlp.up_proj,0.0001696904,0.05000,0.345
238
+ 33,mlp.gate_proj,0.0001370589,0.05000,0.341
239
+ 33,mlp.down_proj,0.0001987096,0.05000,2.084
240
+ 34,self_attn.k_proj,0.0000026818,0.05000,0.372
241
+ 34,self_attn.v_proj,0.0000085758,0.05000,0.352
242
+ 34,self_attn.q_proj,0.0000272798,0.05000,0.370
243
+ 34,self_attn.o_proj,0.0000386386,0.05000,0.382
244
+ 34,mlp.up_proj,0.0002085190,0.05000,0.373
245
+ 34,mlp.gate_proj,0.0001788506,0.05000,0.355
246
+ 34,mlp.down_proj,0.0002425168,0.05000,2.092
247
+ 35,self_attn.k_proj,0.0000028524,0.05000,0.380
248
+ 35,self_attn.v_proj,0.0000081620,0.05000,0.380
249
+ 35,self_attn.q_proj,0.0000271286,0.05000,0.390
250
+ 35,self_attn.o_proj,0.0000118175,0.05000,0.362
251
+ 35,mlp.up_proj,0.0003510200,0.05000,0.383
252
+ 35,mlp.gate_proj,0.0003188154,0.05000,0.374
253
+ 35,mlp.down_proj,0.0010605976,0.05000,2.084
quantize_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "desc_act": true,
5
+ "sym": true,
6
+ "lm_head": false,
7
+ "quant_method": "gptq",
8
+ "checkpoint_format": "gptq",
9
+ "pack_dtype": "int32",
10
+ "meta": {
11
+ "quantizer": [
12
+ "gptqmodel:4.0.0-dev"
13
+ ],
14
+ "uri": "https://github.com/modelcloud/gptqmodel",
15
+ "damp_percent": 0.05,
16
+ "damp_auto_increment": 0.01,
17
+ "static_groups": false,
18
+ "true_sequential": true,
19
+ "mse": 0.0,
20
+ "v2": false,
21
+ "v2_alpha": 0.25
22
+ }
23
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba0c439f7be467bf47d12a7e6f9adc6116201056fc60c67f431c679b7c16afc8
3
+ size 11422064
tokenizer_config.json ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "model_max_length": 131072,
203
+ "pad_token": "<|endoftext|>",
204
+ "processor_class": "Qwen2_5_VLProcessor",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2Tokenizer",
207
+ "unk_token": null
208
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_pad": null,
10
+ "do_rescale": true,
11
+ "do_resize": true,
12
+ "do_sample_frames": false,
13
+ "fps": null,
14
+ "image_mean": [
15
+ 0.48145466,
16
+ 0.4578275,
17
+ 0.40821073
18
+ ],
19
+ "image_std": [
20
+ 0.26862954,
21
+ 0.26130258,
22
+ 0.27577711
23
+ ],
24
+ "input_data_format": null,
25
+ "max_frames": 768,
26
+ "max_pixels": 12845056,
27
+ "merge_size": 2,
28
+ "min_frames": 4,
29
+ "min_pixels": 3136,
30
+ "num_frames": null,
31
+ "patch_size": 14,
32
+ "processor_class": "Qwen2_5_VLProcessor",
33
+ "resample": 3,
34
+ "rescale_factor": 0.00392156862745098,
35
+ "size": {
36
+ "longest_edge": 12845056,
37
+ "shortest_edge": 3136
38
+ },
39
+ "size_divisor": null,
40
+ "temporal_patch_size": 2,
41
+ "video_metadata": null,
42
+ "video_processor_type": "Qwen2VLVideoProcessor"
43
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff