SorenNumind commited on
Commit
ff45035
·
verified ·
1 Parent(s): 67e04e7

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.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
3
+ }
config.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0025,
27
+ "damp_percent": 0.01,
28
+ "mse": 0.0,
29
+ "quantizer": [
30
+ "gptqmodel:2.2.0"
31
+ ],
32
+ "static_groups": false,
33
+ "true_sequential": true,
34
+ "uri": "https://github.com/modelcloud/gptqmodel"
35
+ },
36
+ "pack_dtype": "int32",
37
+ "quant_method": "gptq",
38
+ "sym": true
39
+ },
40
+ "rms_norm_eps": 1e-06,
41
+ "rope_scaling": {
42
+ "mrope_section": [
43
+ 16,
44
+ 24,
45
+ 24
46
+ ],
47
+ "rope_type": "default",
48
+ "type": "default"
49
+ },
50
+ "rope_theta": 1000000.0,
51
+ "sliding_window": 32768,
52
+ "tie_word_embeddings": true,
53
+ "torch_dtype": "bfloat16",
54
+ "transformers_version": "4.51.3",
55
+ "use_cache": true,
56
+ "use_sliding_window": false,
57
+ "video_token_id": 151656,
58
+ "vision_config": {
59
+ "depth": 32,
60
+ "fullatt_block_indexes": [
61
+ 7,
62
+ 15,
63
+ 23,
64
+ 31
65
+ ],
66
+ "hidden_act": "silu",
67
+ "hidden_size": 1280,
68
+ "in_channels": 3,
69
+ "in_chans": 3,
70
+ "intermediate_size": 3420,
71
+ "model_type": "qwen2_5_vl",
72
+ "num_heads": 16,
73
+ "out_hidden_size": 2048,
74
+ "patch_size": 14,
75
+ "spatial_merge_size": 2,
76
+ "spatial_patch_size": 14,
77
+ "temporal_patch_size": 2,
78
+ "tokens_per_second": 2,
79
+ "torch_dtype": "bfloat16",
80
+ "window_size": 112
81
+ },
82
+ "vision_end_token_id": 151653,
83
+ "vision_start_token_id": 151652,
84
+ "vision_token_id": 151654,
85
+ "vocab_size": 151936
86
+ }
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.51.3"
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:1894b51f41c28a63334dc4425bc23b78b256554503c2f60c9dbbc63b6c26a544
3
+ size 3405167488
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.74444008,0.01000,0.885
3
+ 0,self_attn.v_proj,0.10742732,0.01000,0.356
4
+ 0,self_attn.q_proj,3.48395300,0.01000,0.357
5
+ 0,self_attn.o_proj,0.35185614,0.01000,0.356
6
+ 0,mlp.up_proj,2.17084384,0.01000,0.367
7
+ 0,mlp.gate_proj,2.70702529,0.01000,0.356
8
+ 0,mlp.down_proj,20861.74218750,0.01250,2.234
9
+ 1,self_attn.k_proj,0.13084082,0.01000,0.362
10
+ 1,self_attn.v_proj,0.02736288,0.01000,0.362
11
+ 1,self_attn.q_proj,0.49381298,0.01000,0.352
12
+ 1,self_attn.o_proj,0.21891856,0.01000,0.349
13
+ 1,mlp.up_proj,727.67602539,0.01000,0.351
14
+ 1,mlp.gate_proj,1028.54296875,0.01000,0.354
15
+ 1,mlp.down_proj,9785.07421875,0.01250,2.221
16
+ 2,self_attn.k_proj,0.13992883,0.01000,0.370
17
+ 2,self_attn.v_proj,0.03649667,0.01000,0.362
18
+ 2,self_attn.q_proj,0.63483173,0.01000,0.364
19
+ 2,self_attn.o_proj,0.12606674,0.01000,0.372
20
+ 2,mlp.up_proj,193.19320679,0.01000,0.375
21
+ 2,mlp.gate_proj,143.89367676,0.01000,0.366
22
+ 2,mlp.down_proj,4596.45605469,0.01000,2.030
23
+ 3,self_attn.k_proj,0.51369303,0.01000,0.356
24
+ 3,self_attn.v_proj,0.11681624,0.01000,0.355
25
+ 3,self_attn.q_proj,2.41911650,0.01000,0.361
26
+ 3,self_attn.o_proj,0.07069188,0.01000,0.352
27
+ 3,mlp.up_proj,145.86698914,0.01000,0.357
28
+ 3,mlp.gate_proj,137.20137024,0.01000,0.363
29
+ 3,mlp.down_proj,11.82832718,0.01000,2.040
30
+ 4,self_attn.k_proj,0.40270334,0.01000,0.359
31
+ 4,self_attn.v_proj,0.15191284,0.01000,0.360
32
+ 4,self_attn.q_proj,2.17439270,0.01000,0.358
33
+ 4,self_attn.o_proj,0.10469086,0.01000,0.358
34
+ 4,mlp.up_proj,107.06092834,0.01000,0.357
35
+ 4,mlp.gate_proj,126.43922424,0.01000,0.356
36
+ 4,mlp.down_proj,3052.57812500,0.01250,2.163
37
+ 5,self_attn.k_proj,0.63042736,0.01000,0.357
38
+ 5,self_attn.v_proj,0.30033636,0.01000,0.354
39
+ 5,self_attn.q_proj,3.54086185,0.01000,0.358
40
+ 5,self_attn.o_proj,0.09380557,0.01000,0.350
41
+ 5,mlp.up_proj,185.13006592,0.01000,0.361
42
+ 5,mlp.gate_proj,206.14726257,0.01000,0.364
43
+ 5,mlp.down_proj,21478.90234375,0.01250,2.125
44
+ 6,self_attn.k_proj,0.50094360,0.01000,0.353
45
+ 6,self_attn.v_proj,0.26197341,0.01000,0.353
46
+ 6,self_attn.q_proj,3.01855040,0.01000,0.359
47
+ 6,self_attn.o_proj,0.33328652,0.01000,0.356
48
+ 6,mlp.up_proj,192.00917053,0.01000,0.356
49
+ 6,mlp.gate_proj,220.45602417,0.01000,0.354
50
+ 6,mlp.down_proj,23218.81640625,0.01250,2.132
51
+ 7,self_attn.k_proj,0.49787536,0.01000,0.358
52
+ 7,self_attn.v_proj,0.33573246,0.01000,0.351
53
+ 7,self_attn.q_proj,3.41708875,0.01000,0.350
54
+ 7,self_attn.o_proj,0.17219532,0.01000,0.353
55
+ 7,mlp.up_proj,129.18815613,0.01000,0.356
56
+ 7,mlp.gate_proj,146.09684753,0.01000,0.350
57
+ 7,mlp.down_proj,7180.02050781,0.01250,2.146
58
+ 8,self_attn.k_proj,0.58210206,0.01000,0.355
59
+ 8,self_attn.v_proj,0.41059220,0.01000,0.345
60
+ 8,self_attn.q_proj,3.74338007,0.01000,0.346
61
+ 8,self_attn.o_proj,0.26617277,0.01000,0.347
62
+ 8,mlp.up_proj,118.61260986,0.01000,0.346
63
+ 8,mlp.gate_proj,157.80934143,0.01000,0.351
64
+ 8,mlp.down_proj,12263.30273438,0.01250,2.119
65
+ 9,self_attn.k_proj,0.62588191,0.01000,0.353
66
+ 9,self_attn.v_proj,0.37748742,0.01000,0.355
67
+ 9,self_attn.q_proj,3.45860744,0.01000,0.353
68
+ 9,self_attn.o_proj,0.22479211,0.01000,0.352
69
+ 9,mlp.up_proj,93.18229675,0.01000,0.349
70
+ 9,mlp.gate_proj,131.35951233,0.01000,0.346
71
+ 9,mlp.down_proj,8569.00585938,0.01250,2.159
72
+ 10,self_attn.k_proj,0.60444546,0.01000,0.359
73
+ 10,self_attn.v_proj,0.51454628,0.01000,0.365
74
+ 10,self_attn.q_proj,4.18705559,0.01000,0.368
75
+ 10,self_attn.o_proj,0.28868338,0.01000,0.376
76
+ 10,mlp.up_proj,55.67261124,0.01000,0.389
77
+ 10,mlp.gate_proj,81.45370483,0.01000,0.377
78
+ 10,mlp.down_proj,7921.27148438,0.01250,2.115
79
+ 11,self_attn.k_proj,0.51484716,0.01000,0.371
80
+ 11,self_attn.v_proj,0.42126417,0.01000,0.356
81
+ 11,self_attn.q_proj,3.25378394,0.01000,0.355
82
+ 11,self_attn.o_proj,0.38483173,0.01000,0.351
83
+ 11,mlp.up_proj,19.80066681,0.01000,0.351
84
+ 11,mlp.gate_proj,26.65781403,0.01000,0.348
85
+ 11,mlp.down_proj,5129.86328125,0.01250,2.207
86
+ 12,self_attn.k_proj,0.58728415,0.01000,0.379
87
+ 12,self_attn.v_proj,0.41301179,0.01000,0.373
88
+ 12,self_attn.q_proj,3.63880444,0.01000,0.373
89
+ 12,self_attn.o_proj,0.56821018,0.01000,0.371
90
+ 12,mlp.up_proj,22.49377060,0.01000,0.373
91
+ 12,mlp.gate_proj,31.48363304,0.01000,0.373
92
+ 12,mlp.down_proj,7257.49707031,0.01250,2.227
93
+ 13,self_attn.k_proj,0.82758236,0.01000,0.372
94
+ 13,self_attn.v_proj,0.34952715,0.01000,0.383
95
+ 13,self_attn.q_proj,4.68162632,0.01000,0.383
96
+ 13,self_attn.o_proj,0.31500027,0.01000,0.381
97
+ 13,mlp.up_proj,13.15117073,0.01000,0.381
98
+ 13,mlp.gate_proj,13.66710758,0.01000,0.377
99
+ 13,mlp.down_proj,9506.42089844,0.01250,2.143
100
+ 14,self_attn.k_proj,0.63195586,0.01000,0.359
101
+ 14,self_attn.v_proj,0.36958307,0.01000,0.357
102
+ 14,self_attn.q_proj,3.79256201,0.01000,0.359
103
+ 14,self_attn.o_proj,0.45079222,0.01000,0.358
104
+ 14,mlp.up_proj,12.99849415,0.01000,0.348
105
+ 14,mlp.gate_proj,13.64067364,0.01000,0.347
106
+ 14,mlp.down_proj,8234.67382812,0.01250,2.111
107
+ 15,self_attn.k_proj,0.66956985,0.01000,0.352
108
+ 15,self_attn.v_proj,0.39820826,0.01000,0.348
109
+ 15,self_attn.q_proj,4.09530163,0.01000,0.357
110
+ 15,self_attn.o_proj,0.48171890,0.01000,0.360
111
+ 15,mlp.up_proj,12.65697289,0.01000,0.363
112
+ 15,mlp.gate_proj,12.20823669,0.01000,0.353
113
+ 15,mlp.down_proj,9293.73339844,0.01250,2.079
114
+ 16,self_attn.k_proj,0.65244371,0.01000,0.347
115
+ 16,self_attn.v_proj,0.37970379,0.01000,0.352
116
+ 16,self_attn.q_proj,3.80968571,0.01000,0.345
117
+ 16,self_attn.o_proj,0.45385969,0.01000,0.340
118
+ 16,mlp.up_proj,12.97595787,0.01000,0.343
119
+ 16,mlp.gate_proj,13.41720200,0.01000,0.341
120
+ 16,mlp.down_proj,7473.39355469,0.01250,2.136
121
+ 17,self_attn.k_proj,1.04092526,0.01000,0.354
122
+ 17,self_attn.v_proj,0.57335430,0.01000,0.356
123
+ 17,self_attn.q_proj,6.12183523,0.01000,0.347
124
+ 17,self_attn.o_proj,0.51757109,0.01000,0.344
125
+ 17,mlp.up_proj,12.56683350,0.01000,0.345
126
+ 17,mlp.gate_proj,12.42699528,0.01000,0.346
127
+ 17,mlp.down_proj,8867.97656250,0.01250,2.191
128
+ 18,self_attn.k_proj,0.70069391,0.01000,0.353
129
+ 18,self_attn.v_proj,0.43670875,0.01000,0.345
130
+ 18,self_attn.q_proj,4.41953039,0.01000,0.345
131
+ 18,self_attn.o_proj,0.44703659,0.01000,0.342
132
+ 18,mlp.up_proj,12.66960430,0.01000,0.352
133
+ 18,mlp.gate_proj,13.09418678,0.01000,0.351
134
+ 18,mlp.down_proj,9041.26171875,0.01250,2.156
135
+ 19,self_attn.k_proj,0.97574604,0.01000,0.360
136
+ 19,self_attn.v_proj,0.45846105,0.01000,0.353
137
+ 19,self_attn.q_proj,5.56507254,0.01000,0.351
138
+ 19,self_attn.o_proj,0.68781030,0.01000,0.349
139
+ 19,mlp.up_proj,12.41621017,0.01000,0.351
140
+ 19,mlp.gate_proj,12.02220726,0.01000,0.344
141
+ 19,mlp.down_proj,10349.19628906,0.01250,2.095
142
+ 20,self_attn.k_proj,0.91374326,0.01000,0.361
143
+ 20,self_attn.v_proj,0.84225118,0.01000,0.352
144
+ 20,self_attn.q_proj,7.90642452,0.01000,0.353
145
+ 20,self_attn.o_proj,0.65266848,0.01000,0.348
146
+ 20,mlp.up_proj,13.25346375,0.01000,0.350
147
+ 20,mlp.gate_proj,13.00006485,0.01000,0.345
148
+ 20,mlp.down_proj,10541.17480469,0.01250,2.112
149
+ 21,self_attn.k_proj,0.91980761,0.01000,0.348
150
+ 21,self_attn.v_proj,0.60435474,0.01000,0.352
151
+ 21,self_attn.q_proj,5.79789162,0.01000,0.354
152
+ 21,self_attn.o_proj,0.47814932,0.01000,0.349
153
+ 21,mlp.up_proj,12.88965511,0.01000,0.339
154
+ 21,mlp.gate_proj,13.68577003,0.01000,0.349
155
+ 21,mlp.down_proj,9139.45312500,0.01250,2.127
156
+ 22,self_attn.k_proj,1.08109522,0.01000,0.347
157
+ 22,self_attn.v_proj,0.92851174,0.01000,0.339
158
+ 22,self_attn.q_proj,7.33548689,0.01000,0.345
159
+ 22,self_attn.o_proj,0.52778512,0.01000,0.355
160
+ 22,mlp.up_proj,13.11236668,0.01000,0.351
161
+ 22,mlp.gate_proj,13.37494373,0.01000,0.343
162
+ 22,mlp.down_proj,8655.26269531,0.01250,2.088
163
+ 23,self_attn.k_proj,1.04391277,0.01000,0.344
164
+ 23,self_attn.v_proj,0.51679677,0.01000,0.342
165
+ 23,self_attn.q_proj,6.92970991,0.01000,0.344
166
+ 23,self_attn.o_proj,0.67145306,0.01000,0.353
167
+ 23,mlp.up_proj,13.89229584,0.01000,0.353
168
+ 23,mlp.gate_proj,13.28810978,0.01000,0.352
169
+ 23,mlp.down_proj,7284.98974609,0.01250,2.126
170
+ 24,self_attn.k_proj,0.72494310,0.01000,0.341
171
+ 24,self_attn.v_proj,0.60319602,0.01000,0.340
172
+ 24,self_attn.q_proj,5.09278584,0.01000,0.343
173
+ 24,self_attn.o_proj,0.64103162,0.01000,0.352
174
+ 24,mlp.up_proj,14.46055412,0.01000,0.348
175
+ 24,mlp.gate_proj,13.96115685,0.01000,0.349
176
+ 24,mlp.down_proj,5808.32568359,0.01250,2.098
177
+ 25,self_attn.k_proj,0.68927372,0.01000,0.345
178
+ 25,self_attn.v_proj,0.90973526,0.01000,0.347
179
+ 25,self_attn.q_proj,6.57881737,0.01000,0.341
180
+ 25,self_attn.o_proj,0.55416870,0.01000,0.344
181
+ 25,mlp.up_proj,15.76302910,0.01000,0.340
182
+ 25,mlp.gate_proj,15.58094025,0.01000,0.343
183
+ 25,mlp.down_proj,5237.87109375,0.01250,2.123
184
+ 26,self_attn.k_proj,0.67382836,0.01000,0.352
185
+ 26,self_attn.v_proj,0.86641783,0.01000,0.347
186
+ 26,self_attn.q_proj,5.17918015,0.01000,0.349
187
+ 26,self_attn.o_proj,0.62282288,0.01000,0.353
188
+ 26,mlp.up_proj,18.80608368,0.01000,0.358
189
+ 26,mlp.gate_proj,17.79819107,0.01000,0.349
190
+ 26,mlp.down_proj,4985.92187500,0.01250,2.078
191
+ 27,self_attn.k_proj,0.71032202,0.01000,0.352
192
+ 27,self_attn.v_proj,1.20441103,0.01000,0.344
193
+ 27,self_attn.q_proj,7.94571781,0.01000,0.347
194
+ 27,self_attn.o_proj,1.24723363,0.01000,0.353
195
+ 27,mlp.up_proj,19.54417419,0.01000,0.340
196
+ 27,mlp.gate_proj,19.26416397,0.01000,0.337
197
+ 27,mlp.down_proj,3807.88183594,0.01250,2.088
198
+ 28,self_attn.k_proj,0.66512120,0.01000,0.346
199
+ 28,self_attn.v_proj,1.11120594,0.01000,0.341
200
+ 28,self_attn.q_proj,6.27659225,0.01000,0.341
201
+ 28,self_attn.o_proj,1.05752707,0.01000,0.346
202
+ 28,mlp.up_proj,21.45988464,0.01000,0.352
203
+ 28,mlp.gate_proj,21.38830185,0.01000,0.349
204
+ 28,mlp.down_proj,2827.79541016,0.01250,2.116
205
+ 29,self_attn.k_proj,0.74089134,0.01000,0.336
206
+ 29,self_attn.v_proj,1.03641844,0.01000,0.340
207
+ 29,self_attn.q_proj,6.34802437,0.01000,0.338
208
+ 29,self_attn.o_proj,0.88373530,0.01000,0.337
209
+ 29,mlp.up_proj,25.68251038,0.01000,0.341
210
+ 29,mlp.gate_proj,25.25678253,0.01000,0.339
211
+ 29,mlp.down_proj,1534.93933105,0.01250,2.130
212
+ 30,self_attn.k_proj,0.73889565,0.01000,0.344
213
+ 30,self_attn.v_proj,1.66333413,0.01000,0.341
214
+ 30,self_attn.q_proj,8.21355247,0.01000,0.340
215
+ 30,self_attn.o_proj,2.45891666,0.01000,0.343
216
+ 30,mlp.up_proj,44.94103241,0.01000,0.341
217
+ 30,mlp.gate_proj,42.21282959,0.01000,0.343
218
+ 30,mlp.down_proj,2631.11474609,0.01000,1.957
219
+ 31,self_attn.k_proj,0.67966712,0.01000,0.344
220
+ 31,self_attn.v_proj,1.11340189,0.01000,0.341
221
+ 31,self_attn.q_proj,7.13615417,0.01000,0.338
222
+ 31,self_attn.o_proj,4.71965170,0.01000,0.335
223
+ 31,mlp.up_proj,36.13351440,0.01000,0.336
224
+ 31,mlp.gate_proj,32.18393326,0.01000,0.342
225
+ 31,mlp.down_proj,1051.25756836,0.01250,2.055
226
+ 32,self_attn.k_proj,0.79060119,0.01000,0.337
227
+ 32,self_attn.v_proj,1.96972919,0.01000,0.338
228
+ 32,self_attn.q_proj,9.46166706,0.01000,0.344
229
+ 32,self_attn.o_proj,10.08163261,0.01000,0.342
230
+ 32,mlp.up_proj,39.15551376,0.01000,0.340
231
+ 32,mlp.gate_proj,34.83209991,0.01000,0.346
232
+ 32,mlp.down_proj,1009.26580811,0.01250,2.056
233
+ 33,self_attn.k_proj,0.78602415,0.01000,0.336
234
+ 33,self_attn.v_proj,3.98627043,0.01000,0.344
235
+ 33,self_attn.q_proj,9.23457336,0.01000,0.340
236
+ 33,self_attn.o_proj,18.25443840,0.01000,0.342
237
+ 33,mlp.up_proj,41.35702133,0.01000,0.338
238
+ 33,mlp.gate_proj,33.30444717,0.01000,0.348
239
+ 33,mlp.down_proj,502.54034424,0.01250,2.034
240
+ 34,self_attn.k_proj,0.63516819,0.01000,0.348
241
+ 34,self_attn.v_proj,2.11687756,0.01000,0.335
242
+ 34,self_attn.q_proj,6.63668060,0.01000,0.338
243
+ 34,self_attn.o_proj,8.04108810,0.01000,0.336
244
+ 34,mlp.up_proj,52.49430084,0.01000,0.346
245
+ 34,mlp.gate_proj,44.75306702,0.01000,0.337
246
+ 34,mlp.down_proj,385.97592163,0.01250,2.020
247
+ 35,self_attn.k_proj,0.63379931,0.01000,0.336
248
+ 35,self_attn.v_proj,1.89587736,0.01000,0.340
249
+ 35,self_attn.q_proj,6.26210308,0.01000,0.338
250
+ 35,self_attn.o_proj,5.39271402,0.01000,0.346
251
+ 35,mlp.up_proj,91.85729980,0.01000,0.347
252
+ 35,mlp.gate_proj,83.25270081,0.01000,0.338
253
+ 35,mlp.down_proj,2031.59887695,0.01000,1.917
quantize_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:2.2.0"
13
+ ],
14
+ "uri": "https://github.com/modelcloud/gptqmodel",
15
+ "damp_percent": 0.01,
16
+ "damp_auto_increment": 0.0025,
17
+ "static_groups": false,
18
+ "true_sequential": true,
19
+ "mse": 0.0
20
+ }
21
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<|vision_pad|>"
25
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
tokenizer_config.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 131072,
204
+ "pad_token": "<|vision_pad|>",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2TokenizerFast",
207
+ "unk_token": null,
208
+ "_commit_hash": null
209
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff