chieunq commited on
Commit
80a3cd8
·
verified ·
1 Parent(s): ec8aa34

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,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 151645,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 1024,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 3072,
15
+ "layer_types": [
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention"
44
+ ],
45
+ "max_position_embeddings": 40960,
46
+ "max_window_layers": 28,
47
+ "model_type": "qwen3",
48
+ "num_attention_heads": 16,
49
+ "num_hidden_layers": 28,
50
+ "num_key_value_heads": 8,
51
+ "quantization_config": {
52
+ "bits": 4,
53
+ "checkpoint_format": "gptq",
54
+ "desc_act": true,
55
+ "group_size": 128,
56
+ "lm_head": false,
57
+ "meta": {
58
+ "act_group_aware": false,
59
+ "damp_auto_increment": 0.01,
60
+ "damp_percent": 0.05,
61
+ "mse": 0.0,
62
+ "quantizer": [
63
+ "gptqmodel:4.2.5"
64
+ ],
65
+ "static_groups": false,
66
+ "true_sequential": true,
67
+ "uri": "https://github.com/modelcloud/gptqmodel",
68
+ "v2": false,
69
+ "v2_alpha": 0.25
70
+ },
71
+ "pack_dtype": "int32",
72
+ "quant_method": "gptq",
73
+ "sym": true
74
+ },
75
+ "rms_norm_eps": 1e-06,
76
+ "rope_scaling": null,
77
+ "rope_theta": 1000000,
78
+ "sliding_window": null,
79
+ "tie_word_embeddings": true,
80
+ "transformers_version": "4.57.1",
81
+ "use_cache": true,
82
+ "use_sliding_window": false,
83
+ "vocab_size": 151936
84
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "temperature": 0.6,
10
+ "top_k": 20,
11
+ "top_p": 0.95,
12
+ "transformers_version": "4.57.1"
13
+ }
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:d9d3d4dab6d0dba9ed0784031a306e93849ce889ee4439d8e7de8bf511536271
3
+ size 541343840
quant_log.csv ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.k_proj,0.0000000619,0.05000,0.324
3
+ 0,self_attn.q_proj,0.0000001414,0.05000,0.235
4
+ 0,self_attn.v_proj,0.0000000480,0.05000,4.600
5
+ 0,self_attn.o_proj,0.0000000351,0.05000,0.210
6
+ 0,mlp.gate_proj,0.0000014920,0.05000,0.211
7
+ 0,mlp.up_proj,0.0000007514,0.05000,4.697
8
+ 0,mlp.down_proj,0.0000000410,0.05000,0.318
9
+ 1,self_attn.k_proj,0.0000000252,0.05000,0.193
10
+ 1,self_attn.q_proj,0.0000000570,0.05000,0.232
11
+ 1,self_attn.v_proj,0.0000000237,0.05000,4.694
12
+ 1,self_attn.o_proj,0.0000000071,0.05000,0.211
13
+ 1,mlp.gate_proj,0.0000094329,0.05000,0.216
14
+ 1,mlp.up_proj,0.0000027540,0.05000,4.434
15
+ 1,mlp.down_proj,0.0000000543,0.05000,0.318
16
+ 2,self_attn.k_proj,0.0000000463,0.05000,0.200
17
+ 2,self_attn.q_proj,0.0000001084,0.05000,0.236
18
+ 2,self_attn.v_proj,0.0000000441,0.05000,4.707
19
+ 2,self_attn.o_proj,0.0000000123,0.05000,0.210
20
+ 2,mlp.gate_proj,0.0000059575,0.05000,0.188
21
+ 2,mlp.up_proj,0.0000021338,0.05000,4.715
22
+ 2,mlp.down_proj,0.0000048416,0.05000,0.316
23
+ 3,self_attn.k_proj,0.0000003711,0.05000,0.188
24
+ 3,self_attn.q_proj,0.0000007593,0.05000,0.210
25
+ 3,self_attn.v_proj,0.0000003717,0.05000,4.445
26
+ 3,self_attn.o_proj,0.0000000282,0.05000,0.217
27
+ 3,mlp.gate_proj,0.0000072112,0.05000,0.193
28
+ 3,mlp.up_proj,0.0000027581,0.05000,4.710
29
+ 3,mlp.down_proj,0.0000001354,0.05000,0.316
30
+ 4,self_attn.k_proj,0.0000003582,0.05000,0.195
31
+ 4,self_attn.q_proj,0.0000007194,0.05000,0.246
32
+ 4,self_attn.v_proj,0.0000003600,0.05000,4.703
33
+ 4,self_attn.o_proj,0.0000000452,0.05000,0.211
34
+ 4,mlp.gate_proj,0.0000064891,0.05000,0.187
35
+ 4,mlp.up_proj,0.0000028126,0.05000,4.396
36
+ 4,mlp.down_proj,0.0000001754,0.05000,0.317
37
+ 5,self_attn.k_proj,0.0000005325,0.05000,0.200
38
+ 5,self_attn.q_proj,0.0000012647,0.05000,0.217
39
+ 5,self_attn.v_proj,0.0000005517,0.05000,4.526
40
+ 5,self_attn.o_proj,0.0000000614,0.05000,0.212
41
+ 5,mlp.gate_proj,0.0000044469,0.05000,0.196
42
+ 5,mlp.up_proj,0.0000026276,0.05000,4.703
43
+ 5,mlp.down_proj,0.0000001872,0.05000,0.328
44
+ 6,self_attn.k_proj,0.0000004060,0.05000,0.187
45
+ 6,self_attn.q_proj,0.0000008803,0.05000,0.222
46
+ 6,self_attn.v_proj,0.0000003607,0.05000,4.700
47
+ 6,self_attn.o_proj,0.0000000576,0.05000,0.214
48
+ 6,mlp.gate_proj,0.0000052118,0.05000,0.216
49
+ 6,mlp.up_proj,0.0000032233,0.05000,4.426
50
+ 6,mlp.down_proj,0.0000002462,0.05000,0.319
51
+ 7,self_attn.k_proj,0.0000006941,0.05000,0.206
52
+ 7,self_attn.q_proj,0.0000016694,0.05000,0.248
53
+ 7,self_attn.v_proj,0.0000007712,0.05000,4.691
54
+ 7,self_attn.o_proj,0.0000000782,0.05000,0.213
55
+ 7,mlp.gate_proj,0.0000058328,0.05000,0.212
56
+ 7,mlp.up_proj,0.0000035753,0.05000,4.699
57
+ 7,mlp.down_proj,0.0000002797,0.05000,0.319
58
+ 8,self_attn.k_proj,0.0000008852,0.05000,0.190
59
+ 8,self_attn.q_proj,0.0000019922,0.05000,0.209
60
+ 8,self_attn.v_proj,0.0000008340,0.05000,4.702
61
+ 8,self_attn.o_proj,0.0000000938,0.05000,0.214
62
+ 8,mlp.gate_proj,0.0000057705,0.05000,0.210
63
+ 8,mlp.up_proj,0.0000036775,0.05000,4.415
64
+ 8,mlp.down_proj,0.0000003027,0.05000,0.317
65
+ 9,self_attn.k_proj,0.0000015846,0.05000,0.195
66
+ 9,self_attn.q_proj,0.0000037686,0.05000,0.242
67
+ 9,self_attn.v_proj,0.0000015721,0.05000,4.560
68
+ 9,self_attn.o_proj,0.0000001772,0.05000,0.212
69
+ 9,mlp.gate_proj,0.0000065455,0.05000,0.208
70
+ 9,mlp.up_proj,0.0000040704,0.05000,4.698
71
+ 9,mlp.down_proj,0.0000003756,0.05000,0.321
72
+ 10,self_attn.k_proj,0.0000013196,0.05000,0.185
73
+ 10,self_attn.q_proj,0.0000031287,0.05000,0.223
74
+ 10,self_attn.v_proj,0.0000013434,0.05000,4.695
75
+ 10,self_attn.o_proj,0.0000001384,0.05000,0.215
76
+ 10,mlp.gate_proj,0.0000064708,0.05000,0.195
77
+ 10,mlp.up_proj,0.0000040305,0.05000,4.425
78
+ 10,mlp.down_proj,0.0000004867,0.05000,0.322
79
+ 11,self_attn.k_proj,0.0000024805,0.05000,0.207
80
+ 11,self_attn.q_proj,0.0000062607,0.05000,0.252
81
+ 11,self_attn.v_proj,0.0000021832,0.05000,4.542
82
+ 11,self_attn.o_proj,0.0000003623,0.05000,0.214
83
+ 11,mlp.gate_proj,0.0000049145,0.05000,0.211
84
+ 11,mlp.up_proj,0.0000037334,0.05000,4.715
85
+ 11,mlp.down_proj,0.0000005652,0.05000,0.324
86
+ 12,self_attn.k_proj,0.0000020488,0.05000,0.213
87
+ 12,self_attn.q_proj,0.0000054299,0.05000,0.223
88
+ 12,self_attn.v_proj,0.0000020656,0.05000,4.683
89
+ 12,self_attn.o_proj,0.0000001613,0.05000,0.211
90
+ 12,mlp.gate_proj,0.0000042968,0.05000,0.220
91
+ 12,mlp.up_proj,0.0000035116,0.05000,4.422
92
+ 12,mlp.down_proj,0.0000005395,0.05000,0.323
93
+ 13,self_attn.k_proj,0.0000020888,0.05000,0.210
94
+ 13,self_attn.q_proj,0.0000060287,0.05000,0.230
95
+ 13,self_attn.v_proj,0.0000024018,0.05000,4.527
96
+ 13,self_attn.o_proj,0.0000002626,0.05000,0.211
97
+ 13,mlp.gate_proj,0.0000047777,0.05000,0.207
98
+ 13,mlp.up_proj,0.0000038152,0.05000,4.711
99
+ 13,mlp.down_proj,0.0000005897,0.05000,0.324
100
+ 14,self_attn.k_proj,0.0000028149,0.05000,0.195
101
+ 14,self_attn.q_proj,0.0000076591,0.05000,0.226
102
+ 14,self_attn.v_proj,0.0000029750,0.05000,4.699
103
+ 14,self_attn.o_proj,0.0000002583,0.05000,0.213
104
+ 14,mlp.gate_proj,0.0000050455,0.05000,0.198
105
+ 14,mlp.up_proj,0.0000040825,0.05000,4.434
106
+ 14,mlp.down_proj,0.0000007601,0.05000,0.321
107
+ 15,self_attn.k_proj,0.0000049360,0.05000,0.206
108
+ 15,self_attn.q_proj,0.0000154080,0.05000,0.255
109
+ 15,self_attn.v_proj,0.0000061024,0.05000,4.552
110
+ 15,self_attn.o_proj,0.0000004080,0.05000,0.213
111
+ 15,mlp.gate_proj,0.0000057643,0.05000,0.194
112
+ 15,mlp.up_proj,0.0000047453,0.05000,4.710
113
+ 15,mlp.down_proj,0.0000009602,0.05000,0.327
114
+ 16,self_attn.k_proj,0.0000073926,0.05000,0.210
115
+ 16,self_attn.q_proj,0.0000208705,0.05000,0.217
116
+ 16,self_attn.v_proj,0.0000067287,0.05000,4.690
117
+ 16,self_attn.o_proj,0.0000006337,0.05000,0.215
118
+ 16,mlp.gate_proj,0.0000064598,0.05000,0.191
119
+ 16,mlp.up_proj,0.0000058343,0.05000,4.418
120
+ 16,mlp.down_proj,0.0000023008,0.05000,0.318
121
+ 17,self_attn.k_proj,0.0000164988,0.05000,0.196
122
+ 17,self_attn.q_proj,0.0000489618,0.05000,0.221
123
+ 17,self_attn.v_proj,0.0000196004,0.05000,4.574
124
+ 17,self_attn.o_proj,0.0000013944,0.05000,0.211
125
+ 17,mlp.gate_proj,0.0000100008,0.05000,0.197
126
+ 17,mlp.up_proj,0.0000089220,0.05000,4.701
127
+ 17,mlp.down_proj,0.0000029013,0.05000,0.320
128
+ 18,self_attn.k_proj,0.0000162210,0.05000,0.186
129
+ 18,self_attn.q_proj,0.0000502416,0.05000,0.223
130
+ 18,self_attn.v_proj,0.0000173466,0.05000,4.697
131
+ 18,self_attn.o_proj,0.0000012269,0.05000,0.210
132
+ 18,mlp.gate_proj,0.0000127044,0.05000,0.202
133
+ 18,mlp.up_proj,0.0000111264,0.05000,4.414
134
+ 18,mlp.down_proj,0.0000046448,0.05000,0.321
135
+ 19,self_attn.k_proj,0.0000283213,0.05000,0.185
136
+ 19,self_attn.q_proj,0.0000931693,0.05000,0.218
137
+ 19,self_attn.v_proj,0.0000351368,0.05000,4.533
138
+ 19,self_attn.o_proj,0.0000023226,0.05000,0.212
139
+ 19,mlp.gate_proj,0.0000136336,0.05000,0.201
140
+ 19,mlp.up_proj,0.0000144060,0.05000,4.698
141
+ 19,mlp.down_proj,0.0000093190,0.05000,0.326
142
+ 20,self_attn.k_proj,0.0000425745,0.05000,0.201
143
+ 20,self_attn.q_proj,0.0001250810,0.05000,0.213
144
+ 20,self_attn.v_proj,0.0000496852,0.05000,4.701
145
+ 20,self_attn.o_proj,0.0000028708,0.05000,0.211
146
+ 20,mlp.gate_proj,0.0000152806,0.05000,0.197
147
+ 20,mlp.up_proj,0.0000170718,0.05000,4.415
148
+ 20,mlp.down_proj,0.0000120130,0.05000,0.320
149
+ 21,self_attn.k_proj,0.0000695129,0.05000,0.188
150
+ 21,self_attn.q_proj,0.0002044366,0.05000,0.218
151
+ 21,self_attn.v_proj,0.0000888278,0.05000,4.465
152
+ 21,self_attn.o_proj,0.0000046076,0.05000,0.214
153
+ 21,mlp.gate_proj,0.0000173106,0.05000,0.189
154
+ 21,mlp.up_proj,0.0000212800,0.05000,4.710
155
+ 21,mlp.down_proj,0.0000172408,0.05000,0.339
156
+ 22,self_attn.k_proj,0.0000825879,0.05000,0.186
157
+ 22,self_attn.q_proj,0.0002252116,0.05000,0.217
158
+ 22,self_attn.v_proj,0.0001156249,0.05000,4.694
159
+ 22,self_attn.o_proj,0.0000040343,0.05000,0.212
160
+ 22,mlp.gate_proj,0.0000190417,0.05000,0.197
161
+ 22,mlp.up_proj,0.0000240520,0.05000,4.418
162
+ 22,mlp.down_proj,0.0000184142,0.05000,0.319
163
+ 23,self_attn.k_proj,0.0001118109,0.05000,0.201
164
+ 23,self_attn.q_proj,0.0002576126,0.05000,0.246
165
+ 23,self_attn.v_proj,0.0001269675,0.05000,4.491
166
+ 23,self_attn.o_proj,0.0000074915,0.05000,0.213
167
+ 23,mlp.gate_proj,0.0000216157,0.05000,0.188
168
+ 23,mlp.up_proj,0.0000279243,0.05000,4.703
169
+ 23,mlp.down_proj,0.0000196216,0.05000,0.320
170
+ 24,self_attn.k_proj,0.0001829605,0.05000,0.187
171
+ 24,self_attn.q_proj,0.0004908578,0.05000,0.223
172
+ 24,self_attn.v_proj,0.0002018380,0.05000,4.702
173
+ 24,self_attn.o_proj,0.0000075014,0.05000,0.211
174
+ 24,mlp.gate_proj,0.0000193317,0.05000,0.197
175
+ 24,mlp.up_proj,0.0000261126,0.05000,4.421
176
+ 24,mlp.down_proj,0.0000212287,0.05000,0.318
177
+ 25,self_attn.k_proj,0.0002141496,0.05000,0.199
178
+ 25,self_attn.q_proj,0.0006023706,0.05000,0.222
179
+ 25,self_attn.v_proj,0.0003276477,0.05000,4.499
180
+ 25,self_attn.o_proj,0.0000093182,0.05000,0.213
181
+ 25,mlp.gate_proj,0.0000183218,0.05000,0.188
182
+ 25,mlp.up_proj,0.0000260900,0.05000,4.713
183
+ 25,mlp.down_proj,0.0000263417,0.05000,0.319
184
+ 26,self_attn.k_proj,0.0002078083,0.05000,0.196
185
+ 26,self_attn.q_proj,0.0006479847,0.05000,0.213
186
+ 26,self_attn.v_proj,0.0002959354,0.05000,4.696
187
+ 26,self_attn.o_proj,0.0000182488,0.05000,0.211
188
+ 26,mlp.gate_proj,0.0000197083,0.05000,0.208
189
+ 26,mlp.up_proj,0.0000272724,0.05000,4.422
190
+ 26,mlp.down_proj,0.0000338909,0.05000,0.323
191
+ 27,self_attn.k_proj,0.0001674517,0.05000,0.186
192
+ 27,self_attn.q_proj,0.0003676061,0.05000,0.221
193
+ 27,self_attn.v_proj,0.0002032586,0.05000,4.486
194
+ 27,self_attn.o_proj,0.0000128879,0.05000,0.213
195
+ 27,mlp.gate_proj,0.0000427675,0.05000,0.193
196
+ 27,mlp.up_proj,0.0000466646,0.05000,4.720
197
+ 27,mlp.down_proj,0.0000554040,0.05000,0.321
quantize_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.2.5"
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
+ "act_group_aware": false
23
+ }
24
+ }
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": "<|endoftext|>"
25
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2TokenizerFast",
238
+ "unk_token": null,
239
+ "_commit_hash": null
240
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff