seba commited on
Commit
36cc4ff
·
verified ·
1 Parent(s): 3f8e821

Add files using upload-large-folder tool

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
.ipynb_checkpoints/config-checkpoint.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "max_position_embeddings": 40960,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen3",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 8,
20
+ "quantization_config": {
21
+ "bits": 8,
22
+ "checkpoint_format": "gptq",
23
+ "desc_act": true,
24
+ "group_size": 128,
25
+ "lm_head": false,
26
+ "meta": {
27
+ "damp_auto_increment": 0.0025,
28
+ "damp_percent": 0.01,
29
+ "mse": 0.0,
30
+ "quantizer": [
31
+ "gptqmodel:2.2.0"
32
+ ],
33
+ "static_groups": false,
34
+ "true_sequential": true,
35
+ "uri": "https://github.com/modelcloud/gptqmodel"
36
+ },
37
+ "pack_dtype": "int32",
38
+ "quant_method": "gptq",
39
+ "sym": true
40
+ },
41
+ "rms_norm_eps": 1e-06,
42
+ "rope_scaling": null,
43
+ "rope_theta": 1000000,
44
+ "sliding_window": null,
45
+ "tie_word_embeddings": true,
46
+ "torch_dtype": "bfloat16",
47
+ "transformers_version": "4.52.4",
48
+ "use_cache": true,
49
+ "use_sliding_window": false,
50
+ "vocab_size": 151936
51
+ }
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,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "max_position_embeddings": 40960,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen3",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 8,
20
+ "quantization_config": {
21
+ "bits": 8,
22
+ "checkpoint_format": "gptq",
23
+ "desc_act": true,
24
+ "group_size": 128,
25
+ "lm_head": false,
26
+ "meta": {
27
+ "damp_auto_increment": 0.0025,
28
+ "damp_percent": 0.01,
29
+ "mse": 0.0,
30
+ "quantizer": [
31
+ "gptqmodel:2.2.0"
32
+ ],
33
+ "static_groups": false,
34
+ "true_sequential": true,
35
+ "uri": "https://github.com/modelcloud/gptqmodel"
36
+ },
37
+ "pack_dtype": "int32",
38
+ "quant_method": "gptq",
39
+ "sym": true
40
+ },
41
+ "rms_norm_eps": 1e-06,
42
+ "rope_scaling": null,
43
+ "rope_theta": 1000000,
44
+ "sliding_window": null,
45
+ "tie_word_embeddings": true,
46
+ "torch_dtype": "bfloat16",
47
+ "transformers_version": "4.52.4",
48
+ "use_cache": true,
49
+ "use_sliding_window": false,
50
+ "vocab_size": 151936
51
+ }
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.52.4"
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:7c359552a8af44637605866f106c45636bb1c594d905496740a84d20f64784ec
3
+ size 763265408
quant_log.csv ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.k_proj,0.00032749,0.01000,1.155
3
+ 0,self_attn.v_proj,0.00025369,0.01000,0.567
4
+ 0,self_attn.q_proj,0.00075296,0.01000,0.337
5
+ 0,self_attn.o_proj,0.00020376,0.01000,0.437
6
+ 0,mlp.up_proj,0.00393519,0.01000,0.235
7
+ 0,mlp.gate_proj,0.00783817,0.01000,0.226
8
+ 0,mlp.down_proj,0.00022499,0.01000,0.675
9
+ 1,self_attn.k_proj,0.00013457,0.01000,0.221
10
+ 1,self_attn.v_proj,0.00012638,0.01000,0.222
11
+ 1,self_attn.q_proj,0.00030377,0.01000,0.230
12
+ 1,self_attn.o_proj,0.00003902,0.01000,0.460
13
+ 1,mlp.up_proj,0.01384270,0.01000,0.226
14
+ 1,mlp.gate_proj,0.04714278,0.01000,0.228
15
+ 1,mlp.down_proj,0.00028604,0.01000,0.693
16
+ 2,self_attn.k_proj,0.00024934,0.01000,0.249
17
+ 2,self_attn.v_proj,0.00023722,0.01000,0.228
18
+ 2,self_attn.q_proj,0.00058379,0.01000,0.241
19
+ 2,self_attn.o_proj,0.00006645,0.01000,0.466
20
+ 2,mlp.up_proj,0.01161759,0.01000,0.231
21
+ 2,mlp.gate_proj,0.03230917,0.01000,0.228
22
+ 2,mlp.down_proj,0.01435921,0.01000,0.662
23
+ 3,self_attn.k_proj,0.00219527,0.01000,0.249
24
+ 3,self_attn.v_proj,0.00221791,0.01000,0.227
25
+ 3,self_attn.q_proj,0.00447862,0.01000,0.230
26
+ 3,self_attn.o_proj,0.00011673,0.01000,0.528
27
+ 3,mlp.up_proj,0.01581049,0.01000,0.223
28
+ 3,mlp.gate_proj,0.04093664,0.01000,0.230
29
+ 3,mlp.down_proj,0.00087556,0.01000,0.676
30
+ 4,self_attn.k_proj,0.00198293,0.01000,0.223
31
+ 4,self_attn.v_proj,0.00204655,0.01000,0.227
32
+ 4,self_attn.q_proj,0.00400475,0.01000,0.230
33
+ 4,self_attn.o_proj,0.00029247,0.01000,0.447
34
+ 4,mlp.up_proj,0.01691215,0.01000,0.237
35
+ 4,mlp.gate_proj,0.03856196,0.01000,0.225
36
+ 4,mlp.down_proj,0.00106727,0.01000,0.694
37
+ 5,self_attn.k_proj,0.00298075,0.01000,0.226
38
+ 5,self_attn.v_proj,0.00317915,0.01000,0.235
39
+ 5,self_attn.q_proj,0.00715282,0.01000,0.229
40
+ 5,self_attn.o_proj,0.00035112,0.01000,0.467
41
+ 5,mlp.up_proj,0.01595427,0.01000,0.228
42
+ 5,mlp.gate_proj,0.02668508,0.01000,0.234
43
+ 5,mlp.down_proj,0.00122155,0.01000,0.696
44
+ 6,self_attn.k_proj,0.00238967,0.01000,0.234
45
+ 6,self_attn.v_proj,0.00218185,0.01000,0.228
46
+ 6,self_attn.q_proj,0.00522731,0.01000,0.224
47
+ 6,self_attn.o_proj,0.00030633,0.01000,0.459
48
+ 6,mlp.up_proj,0.02041365,0.01000,0.226
49
+ 6,mlp.gate_proj,0.03246206,0.01000,0.228
50
+ 6,mlp.down_proj,0.00163691,0.01000,0.699
51
+ 7,self_attn.k_proj,0.00412372,0.01000,0.230
52
+ 7,self_attn.v_proj,0.00474808,0.01000,0.223
53
+ 7,self_attn.q_proj,0.01001882,0.01000,0.231
54
+ 7,self_attn.o_proj,0.00043772,0.01000,0.458
55
+ 7,mlp.up_proj,0.02293630,0.01000,0.228
56
+ 7,mlp.gate_proj,0.03716176,0.01000,0.233
57
+ 7,mlp.down_proj,0.00201153,0.01000,0.671
58
+ 8,self_attn.k_proj,0.00558346,0.01000,0.226
59
+ 8,self_attn.v_proj,0.00524217,0.01000,0.221
60
+ 8,self_attn.q_proj,0.01237338,0.01000,0.229
61
+ 8,self_attn.o_proj,0.00047733,0.01000,0.449
62
+ 8,mlp.up_proj,0.02441872,0.01000,0.231
63
+ 8,mlp.gate_proj,0.03798977,0.01000,0.224
64
+ 8,mlp.down_proj,0.00230577,0.01000,0.681
65
+ 9,self_attn.k_proj,0.00985561,0.01000,0.232
66
+ 9,self_attn.v_proj,0.01028515,0.01000,0.232
67
+ 9,self_attn.q_proj,0.02377504,0.01000,0.228
68
+ 9,self_attn.o_proj,0.00079571,0.01000,0.455
69
+ 9,mlp.up_proj,0.02770915,0.01000,0.237
70
+ 9,mlp.gate_proj,0.04415695,0.01000,0.225
71
+ 9,mlp.down_proj,0.00322793,0.01000,0.688
72
+ 10,self_attn.k_proj,0.00867778,0.01000,0.231
73
+ 10,self_attn.v_proj,0.00906802,0.01000,0.229
74
+ 10,self_attn.q_proj,0.02093536,0.01000,0.230
75
+ 10,self_attn.o_proj,0.00077909,0.01000,0.462
76
+ 10,mlp.up_proj,0.02805537,0.01000,0.234
77
+ 10,mlp.gate_proj,0.04457404,0.01000,0.228
78
+ 10,mlp.down_proj,0.00441806,0.01000,0.720
79
+ 11,self_attn.k_proj,0.01635617,0.01000,0.239
80
+ 11,self_attn.v_proj,0.01512074,0.01000,0.239
81
+ 11,self_attn.q_proj,0.04226644,0.01000,0.229
82
+ 11,self_attn.o_proj,0.00186323,0.01000,0.453
83
+ 11,mlp.up_proj,0.02852244,0.01000,0.240
84
+ 11,mlp.gate_proj,0.03734720,0.01000,0.227
85
+ 11,mlp.down_proj,0.00551809,0.01000,0.842
86
+ 12,self_attn.k_proj,0.01477923,0.01000,0.221
87
+ 12,self_attn.v_proj,0.01512225,0.01000,0.220
88
+ 12,self_attn.q_proj,0.03947412,0.01000,0.221
89
+ 12,self_attn.o_proj,0.00079819,0.01000,0.440
90
+ 12,mlp.up_proj,0.02670226,0.01000,0.224
91
+ 12,mlp.gate_proj,0.03251809,0.01000,0.225
92
+ 12,mlp.down_proj,0.00507736,0.01000,0.691
93
+ 13,self_attn.k_proj,0.01408405,0.01000,0.227
94
+ 13,self_attn.v_proj,0.01673461,0.01000,0.227
95
+ 13,self_attn.q_proj,0.04143500,0.01000,0.229
96
+ 13,self_attn.o_proj,0.00111977,0.01000,0.456
97
+ 13,mlp.up_proj,0.02844763,0.01000,0.229
98
+ 13,mlp.gate_proj,0.03526475,0.01000,0.224
99
+ 13,mlp.down_proj,0.00517186,0.01000,0.693
100
+ 14,self_attn.k_proj,0.01899716,0.01000,0.226
101
+ 14,self_attn.v_proj,0.02050037,0.01000,0.224
102
+ 14,self_attn.q_proj,0.05216409,0.01000,0.224
103
+ 14,self_attn.o_proj,0.00115088,0.01000,0.449
104
+ 14,mlp.up_proj,0.03063969,0.01000,0.227
105
+ 14,mlp.gate_proj,0.03756517,0.01000,0.224
106
+ 14,mlp.down_proj,0.00685033,0.01000,0.685
107
+ 15,self_attn.k_proj,0.03317955,0.01000,0.233
108
+ 15,self_attn.v_proj,0.04169153,0.01000,0.236
109
+ 15,self_attn.q_proj,0.10394323,0.01000,0.228
110
+ 15,self_attn.o_proj,0.00170158,0.01000,0.453
111
+ 15,mlp.up_proj,0.03357995,0.01000,0.227
112
+ 15,mlp.gate_proj,0.04005279,0.01000,0.224
113
+ 15,mlp.down_proj,0.00743672,0.01000,0.675
114
+ 16,self_attn.k_proj,0.04960365,0.01000,0.229
115
+ 16,self_attn.v_proj,0.04307975,0.01000,0.222
116
+ 16,self_attn.q_proj,0.13186178,0.01000,0.235
117
+ 16,self_attn.o_proj,0.00197475,0.01000,0.439
118
+ 16,mlp.up_proj,0.03902930,0.01000,0.227
119
+ 16,mlp.gate_proj,0.04318184,0.01000,0.220
120
+ 16,mlp.down_proj,0.01466978,0.01000,0.678
121
+ 17,self_attn.k_proj,0.09771518,0.01000,0.234
122
+ 17,self_attn.v_proj,0.11899535,0.01000,0.222
123
+ 17,self_attn.q_proj,0.29597327,0.01000,0.224
124
+ 17,self_attn.o_proj,0.00466052,0.01000,0.454
125
+ 17,mlp.up_proj,0.05507433,0.01000,0.231
126
+ 17,mlp.gate_proj,0.06240291,0.01000,0.384
127
+ 17,mlp.down_proj,0.01682305,0.01000,0.688
128
+ 18,self_attn.k_proj,0.09110840,0.01000,0.227
129
+ 18,self_attn.v_proj,0.09663712,0.01000,0.221
130
+ 18,self_attn.q_proj,0.28351229,0.01000,0.224
131
+ 18,self_attn.o_proj,0.00348066,0.01000,0.445
132
+ 18,mlp.up_proj,0.06652433,0.01000,0.226
133
+ 18,mlp.gate_proj,0.07645570,0.01000,0.225
134
+ 18,mlp.down_proj,0.02653618,0.01000,0.696
135
+ 19,self_attn.k_proj,0.15623170,0.01000,0.238
136
+ 19,self_attn.v_proj,0.19285503,0.01000,0.234
137
+ 19,self_attn.q_proj,0.50891936,0.01000,0.226
138
+ 19,self_attn.o_proj,0.00646302,0.01000,0.469
139
+ 19,mlp.up_proj,0.08531548,0.01000,0.228
140
+ 19,mlp.gate_proj,0.08032896,0.01000,0.229
141
+ 19,mlp.down_proj,0.05321217,0.01000,0.685
142
+ 20,self_attn.k_proj,0.21878803,0.01000,0.227
143
+ 20,self_attn.v_proj,0.25668895,0.01000,0.230
144
+ 20,self_attn.q_proj,0.63777983,0.01000,0.234
145
+ 20,self_attn.o_proj,0.00854009,0.01000,0.446
146
+ 20,mlp.up_proj,0.09397341,0.01000,0.229
147
+ 20,mlp.gate_proj,0.08438423,0.01000,0.228
148
+ 20,mlp.down_proj,0.06383163,0.01000,0.707
149
+ 21,self_attn.k_proj,0.37938249,0.01000,0.227
150
+ 21,self_attn.v_proj,0.48516726,0.01000,0.224
151
+ 21,self_attn.q_proj,1.05979383,0.01000,0.229
152
+ 21,self_attn.o_proj,0.01645730,0.01000,0.459
153
+ 21,mlp.up_proj,0.11382735,0.01000,0.223
154
+ 21,mlp.gate_proj,0.09215738,0.01000,0.224
155
+ 21,mlp.down_proj,0.08915783,0.01000,0.674
156
+ 22,self_attn.k_proj,0.41520894,0.01000,0.224
157
+ 22,self_attn.v_proj,0.60523629,0.01000,0.225
158
+ 22,self_attn.q_proj,1.09939826,0.01000,0.225
159
+ 22,self_attn.o_proj,0.01306220,0.01000,0.454
160
+ 22,mlp.up_proj,0.12304313,0.01000,0.222
161
+ 22,mlp.gate_proj,0.09746058,0.01000,0.220
162
+ 22,mlp.down_proj,0.09767172,0.01000,0.696
163
+ 23,self_attn.k_proj,0.57462460,0.01000,0.232
164
+ 23,self_attn.v_proj,0.67050380,0.01000,0.223
165
+ 23,self_attn.q_proj,1.28517509,0.01000,0.227
166
+ 23,self_attn.o_proj,0.01710726,0.01000,0.451
167
+ 23,mlp.up_proj,0.13834126,0.01000,0.232
168
+ 23,mlp.gate_proj,0.10650444,0.01000,0.237
169
+ 23,mlp.down_proj,0.10312413,0.01000,0.688
170
+ 24,self_attn.k_proj,0.97647727,0.01000,0.230
171
+ 24,self_attn.v_proj,1.07835913,0.01000,0.232
172
+ 24,self_attn.q_proj,2.48886037,0.01000,0.226
173
+ 24,self_attn.o_proj,0.02438532,0.01000,0.458
174
+ 24,mlp.up_proj,0.13136795,0.01000,0.234
175
+ 24,mlp.gate_proj,0.09722915,0.01000,0.237
176
+ 24,mlp.down_proj,0.10120656,0.01000,0.682
177
+ 25,self_attn.k_proj,1.15275836,0.01000,0.229
178
+ 25,self_attn.v_proj,1.82593989,0.01000,0.228
179
+ 25,self_attn.q_proj,3.06133747,0.01000,0.230
180
+ 25,self_attn.o_proj,0.03647776,0.01000,0.458
181
+ 25,mlp.up_proj,0.12899044,0.01000,0.244
182
+ 25,mlp.gate_proj,0.09075017,0.01000,0.273
183
+ 25,mlp.down_proj,0.12472281,0.01000,0.707
184
+ 26,self_attn.k_proj,1.13845944,0.01000,0.459
185
+ 26,self_attn.v_proj,1.61159337,0.01000,0.220
186
+ 26,self_attn.q_proj,3.23474240,0.01000,0.222
187
+ 26,self_attn.o_proj,0.09233090,0.01000,0.615
188
+ 26,mlp.up_proj,0.13978383,0.01000,0.223
189
+ 26,mlp.gate_proj,0.10016756,0.01000,0.227
190
+ 26,mlp.down_proj,0.19082712,0.01000,0.692
191
+ 27,self_attn.k_proj,0.84913272,0.01000,0.230
192
+ 27,self_attn.v_proj,1.00616837,0.01000,0.231
193
+ 27,self_attn.q_proj,1.82603455,0.01000,0.231
194
+ 27,self_attn.o_proj,0.05350790,0.01000,0.448
195
+ 27,mlp.up_proj,0.26327640,0.01000,0.231
196
+ 27,mlp.gate_proj,0.24581118,0.01000,0.228
197
+ 27,mlp.down_proj,0.22492027,0.01000,0.682
quantize_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 8,
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": "<unk>"
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": "<unk>",
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