seba commited on
Commit
54be53b
·
verified ·
1 Parent(s): e399a8c

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
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,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 2560,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 9728,
14
+ "layer_types": [
15
+ "full_attention",
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
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention"
51
+ ],
52
+ "max_position_embeddings": 262144,
53
+ "max_window_layers": 36,
54
+ "model_type": "qwen3",
55
+ "num_attention_heads": 32,
56
+ "num_hidden_layers": 36,
57
+ "num_key_value_heads": 8,
58
+ "quantization_config": {
59
+ "bits": 4,
60
+ "checkpoint_format": "gptq",
61
+ "desc_act": true,
62
+ "group_size": -1,
63
+ "hyb_act": false,
64
+ "lm_head": false,
65
+ "meta": {
66
+ "damp_auto_increment": 0.01,
67
+ "damp_percent": 0.05,
68
+ "mse": 0.0,
69
+ "quantizer": [
70
+ "gptqmodel:4.0.0"
71
+ ],
72
+ "static_groups": false,
73
+ "true_sequential": true,
74
+ "uri": "https://github.com/modelcloud/gptqmodel",
75
+ "v2": false,
76
+ "v2_alpha": 0.25
77
+ },
78
+ "pack_dtype": "int32",
79
+ "quant_method": "gptq",
80
+ "sym": true
81
+ },
82
+ "rms_norm_eps": 1e-06,
83
+ "rope_scaling": null,
84
+ "rope_theta": 5000000,
85
+ "sliding_window": null,
86
+ "tie_word_embeddings": true,
87
+ "torch_dtype": "bfloat16",
88
+ "transformers_version": "4.55.2",
89
+ "use_cache": true,
90
+ "use_sliding_window": false,
91
+ "vocab_size": 151936
92
+ }
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.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.55.2"
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:c7adc887d07dd795b19230ba2317de9ef301d0dc34e52783143dbfca9134a8cc
3
+ size 2601689728
quant_log.csv ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ layer,module,loss,samples,damp,time
2
+ 0,self_attn.k_proj,0.0000000052,0.10000,2.569
3
+ 0,self_attn.v_proj,0.0000000046,0.10000,0.589
4
+ 0,self_attn.q_proj,0.0000000198,0.10000,0.600
5
+ 0,self_attn.o_proj,0.0000000031,0.05000,2.446
6
+ 0,mlp.gate_proj,0.0000002417,0.05000,1.979
7
+ 0,mlp.up_proj,0.0000002026,0.05000,0.573
8
+ 0,mlp.down_proj,0.0000000225,0.05000,6.729
9
+ 1,self_attn.k_proj,0.0000000026,0.05000,0.713
10
+ 1,self_attn.v_proj,0.0000000025,0.05000,0.639
11
+ 1,self_attn.q_proj,0.0000000101,0.05000,0.567
12
+ 1,self_attn.o_proj,0.0000000035,0.05000,2.564
13
+ 1,mlp.gate_proj,0.0000204145,0.05000,1.993
14
+ 1,mlp.up_proj,0.0000083465,0.05000,0.592
15
+ 1,mlp.down_proj,0.0000000199,0.05000,6.754
16
+ 2,self_attn.k_proj,0.0000000073,0.05000,0.708
17
+ 2,self_attn.v_proj,0.0000000059,0.05000,0.584
18
+ 2,self_attn.q_proj,0.0000000232,0.05000,0.585
19
+ 2,self_attn.o_proj,0.0000000030,0.05000,2.450
20
+ 2,mlp.gate_proj,0.0000298297,0.05000,2.019
21
+ 2,mlp.up_proj,0.0000225695,0.05000,0.590
22
+ 2,mlp.down_proj,0.0000000172,0.05000,6.810
23
+ 3,self_attn.k_proj,0.0000000115,0.05000,0.651
24
+ 3,self_attn.v_proj,0.0000000108,0.05000,0.580
25
+ 3,self_attn.q_proj,0.0000000445,0.05000,0.574
26
+ 3,self_attn.o_proj,0.0000000061,0.05000,2.490
27
+ 3,mlp.gate_proj,0.0000254690,0.05000,2.050
28
+ 3,mlp.up_proj,0.0000126072,0.05000,0.600
29
+ 3,mlp.down_proj,0.0000000618,0.05000,5.633
30
+ 4,self_attn.k_proj,0.0000000277,0.05000,0.744
31
+ 4,self_attn.v_proj,0.0000000199,0.05000,0.583
32
+ 4,self_attn.q_proj,0.0000000853,0.05000,0.688
33
+ 4,self_attn.o_proj,0.0000000086,0.05000,2.519
34
+ 4,mlp.gate_proj,0.0000201851,0.05000,2.025
35
+ 4,mlp.up_proj,0.0000078025,0.05000,0.594
36
+ 4,mlp.down_proj,0.0000001553,0.05000,6.750
37
+ 5,self_attn.k_proj,0.0000000239,0.05000,0.706
38
+ 5,self_attn.v_proj,0.0000000223,0.05000,0.572
39
+ 5,self_attn.q_proj,0.0000000917,0.05000,0.582
40
+ 5,self_attn.o_proj,0.0000000159,0.05000,2.444
41
+ 5,mlp.gate_proj,0.0000072396,0.05000,2.007
42
+ 5,mlp.up_proj,0.0000026097,0.05000,0.618
43
+ 5,mlp.down_proj,0.0000002330,0.05000,5.965
44
+ 6,self_attn.k_proj,0.0000000503,0.05000,1.018
45
+ 6,self_attn.v_proj,0.0000000647,0.05000,0.581
46
+ 6,self_attn.q_proj,0.0000002338,0.05000,0.589
47
+ 6,self_attn.o_proj,0.0000000548,0.05000,2.478
48
+ 6,mlp.gate_proj,0.0000082123,0.05000,1.997
49
+ 6,mlp.up_proj,0.0000046290,0.05000,0.587
50
+ 6,mlp.down_proj,0.0000043809,0.05000,6.783
51
+ 7,self_attn.k_proj,0.0000001253,0.05000,1.126
52
+ 7,self_attn.v_proj,0.0000001167,0.05000,0.604
53
+ 7,self_attn.q_proj,0.0000004640,0.05000,0.683
54
+ 7,self_attn.o_proj,0.0000000416,0.05000,2.487
55
+ 7,mlp.gate_proj,0.0000085307,0.05000,2.023
56
+ 7,mlp.up_proj,0.0000048372,0.05000,0.570
57
+ 7,mlp.down_proj,0.0000004271,0.05000,5.773
58
+ 8,self_attn.k_proj,0.0000001812,0.05000,1.284
59
+ 8,self_attn.v_proj,0.0000001774,0.05000,0.676
60
+ 8,self_attn.q_proj,0.0000007317,0.05000,0.590
61
+ 8,self_attn.o_proj,0.0000000768,0.05000,2.501
62
+ 8,mlp.gate_proj,0.0000050875,0.05000,2.014
63
+ 8,mlp.up_proj,0.0000040421,0.05000,0.581
64
+ 8,mlp.down_proj,0.0000007142,0.05000,5.781
65
+ 9,self_attn.k_proj,0.0000002972,0.05000,1.122
66
+ 9,self_attn.v_proj,0.0000002325,0.05000,0.576
67
+ 9,self_attn.q_proj,0.0000009674,0.05000,0.588
68
+ 9,self_attn.o_proj,0.0000001121,0.05000,2.463
69
+ 9,mlp.gate_proj,0.0000089862,0.05000,2.016
70
+ 9,mlp.up_proj,0.0000056672,0.05000,0.569
71
+ 9,mlp.down_proj,0.0000008800,0.05000,5.834
72
+ 10,self_attn.k_proj,0.0000004588,0.05000,0.672
73
+ 10,self_attn.v_proj,0.0000004572,0.05000,0.582
74
+ 10,self_attn.q_proj,0.0000016905,0.05000,0.588
75
+ 10,self_attn.o_proj,0.0000001480,0.05000,2.489
76
+ 10,mlp.gate_proj,0.0000088899,0.05000,1.990
77
+ 10,mlp.up_proj,0.0000062311,0.05000,0.576
78
+ 10,mlp.down_proj,0.0000010807,0.05000,5.807
79
+ 11,self_attn.k_proj,0.0000002623,0.05000,0.632
80
+ 11,self_attn.v_proj,0.0000002452,0.05000,0.579
81
+ 11,self_attn.q_proj,0.0000009532,0.05000,0.577
82
+ 11,self_attn.o_proj,0.0000001105,0.05000,2.509
83
+ 11,mlp.gate_proj,0.0000082065,0.05000,2.004
84
+ 11,mlp.up_proj,0.0000065980,0.05000,0.650
85
+ 11,mlp.down_proj,0.0000010627,0.05000,5.695
86
+ 12,self_attn.k_proj,0.0000003326,0.05000,0.619
87
+ 12,self_attn.v_proj,0.0000003292,0.05000,0.562
88
+ 12,self_attn.q_proj,0.0000011873,0.05000,0.569
89
+ 12,self_attn.o_proj,0.0000001811,0.05000,2.464
90
+ 12,mlp.gate_proj,0.0000081253,0.05000,2.120
91
+ 12,mlp.up_proj,0.0000071123,0.05000,0.584
92
+ 12,mlp.down_proj,0.0000010901,0.05000,6.638
93
+ 13,self_attn.k_proj,0.0000002658,0.05000,0.614
94
+ 13,self_attn.v_proj,0.0000002328,0.05000,0.669
95
+ 13,self_attn.q_proj,0.0000009706,0.05000,0.556
96
+ 13,self_attn.o_proj,0.0000001006,0.05000,2.462
97
+ 13,mlp.gate_proj,0.0000079116,0.05000,2.025
98
+ 13,mlp.up_proj,0.0000074708,0.05000,0.569
99
+ 13,mlp.down_proj,0.0000013571,0.05000,6.679
100
+ 14,self_attn.k_proj,0.0000004480,0.05000,1.127
101
+ 14,self_attn.v_proj,0.0000004285,0.05000,0.785
102
+ 14,self_attn.q_proj,0.0000016434,0.05000,0.593
103
+ 14,self_attn.o_proj,0.0000002318,0.05000,2.535
104
+ 14,mlp.gate_proj,0.0000080601,0.05000,1.998
105
+ 14,mlp.up_proj,0.0000076162,0.05000,0.569
106
+ 14,mlp.down_proj,0.0000012303,0.05000,6.883
107
+ 15,self_attn.k_proj,0.0000004766,0.05000,0.634
108
+ 15,self_attn.v_proj,0.0000004135,0.05000,0.562
109
+ 15,self_attn.q_proj,0.0000016611,0.05000,0.588
110
+ 15,self_attn.o_proj,0.0000002216,0.05000,2.476
111
+ 15,mlp.gate_proj,0.0000074154,0.05000,1.997
112
+ 15,mlp.up_proj,0.0000072631,0.05000,0.566
113
+ 15,mlp.down_proj,0.0000015084,0.05000,5.804
114
+ 16,self_attn.k_proj,0.0000008190,0.05000,1.174
115
+ 16,self_attn.v_proj,0.0000007936,0.05000,0.581
116
+ 16,self_attn.q_proj,0.0000030977,0.05000,0.574
117
+ 16,self_attn.o_proj,0.0000004373,0.05000,2.432
118
+ 16,mlp.gate_proj,0.0000093650,0.05000,2.006
119
+ 16,mlp.up_proj,0.0000086957,0.05000,0.663
120
+ 16,mlp.down_proj,0.0000048106,0.05000,5.824
121
+ 17,self_attn.k_proj,0.0000007897,0.05000,0.723
122
+ 17,self_attn.v_proj,0.0000008126,0.05000,0.588
123
+ 17,self_attn.q_proj,0.0000032808,0.05000,0.574
124
+ 17,self_attn.o_proj,0.0000004382,0.05000,2.502
125
+ 17,mlp.gate_proj,0.0000097673,0.05000,1.993
126
+ 17,mlp.up_proj,0.0000091414,0.05000,0.693
127
+ 17,mlp.down_proj,0.0000031239,0.05000,5.776
128
+ 18,self_attn.k_proj,0.0000009744,0.05000,1.082
129
+ 18,self_attn.v_proj,0.0000009427,0.05000,0.561
130
+ 18,self_attn.q_proj,0.0000036454,0.05000,0.609
131
+ 18,self_attn.o_proj,0.0000003234,0.05000,2.482
132
+ 18,mlp.gate_proj,0.0000111026,0.05000,2.085
133
+ 18,mlp.up_proj,0.0000106627,0.05000,0.579
134
+ 18,mlp.down_proj,0.0000026123,0.05000,6.637
135
+ 19,self_attn.k_proj,0.0000016737,0.05000,1.189
136
+ 19,self_attn.v_proj,0.0000016986,0.05000,0.576
137
+ 19,self_attn.q_proj,0.0000068700,0.05000,0.644
138
+ 19,self_attn.o_proj,0.0000005304,0.05000,2.511
139
+ 19,mlp.gate_proj,0.0000124837,0.05000,2.036
140
+ 19,mlp.up_proj,0.0000120341,0.05000,0.585
141
+ 19,mlp.down_proj,0.0000027187,0.05000,6.936
142
+ 20,self_attn.k_proj,0.0000013881,0.05000,0.697
143
+ 20,self_attn.v_proj,0.0000015287,0.05000,0.563
144
+ 20,self_attn.q_proj,0.0000060495,0.05000,0.574
145
+ 20,self_attn.o_proj,0.0000004813,0.05000,2.476
146
+ 20,mlp.gate_proj,0.0000129214,0.05000,2.026
147
+ 20,mlp.up_proj,0.0000123504,0.05000,0.566
148
+ 20,mlp.down_proj,0.0000025403,0.05000,6.720
149
+ 21,self_attn.k_proj,0.0000016777,0.05000,0.885
150
+ 21,self_attn.v_proj,0.0000021349,0.05000,0.549
151
+ 21,self_attn.q_proj,0.0000071701,0.05000,0.559
152
+ 21,self_attn.o_proj,0.0000004408,0.05000,2.468
153
+ 21,mlp.gate_proj,0.0000146491,0.05000,2.082
154
+ 21,mlp.up_proj,0.0000133914,0.05000,0.566
155
+ 21,mlp.down_proj,0.0000030068,0.05000,6.911
156
+ 22,self_attn.k_proj,0.0000040227,0.05000,0.743
157
+ 22,self_attn.v_proj,0.0000041190,0.05000,0.562
158
+ 22,self_attn.q_proj,0.0000136834,0.05000,0.642
159
+ 22,self_attn.o_proj,0.0000008221,0.05000,2.463
160
+ 22,mlp.gate_proj,0.0000176970,0.05000,1.997
161
+ 22,mlp.up_proj,0.0000154891,0.05000,0.744
162
+ 22,mlp.down_proj,0.0000048815,0.05000,6.737
163
+ 23,self_attn.k_proj,0.0000032059,0.05000,0.715
164
+ 23,self_attn.v_proj,0.0000041068,0.05000,0.651
165
+ 23,self_attn.q_proj,0.0000136944,0.05000,0.570
166
+ 23,self_attn.o_proj,0.0000014329,0.05000,2.619
167
+ 23,mlp.gate_proj,0.0000205702,0.05000,1.995
168
+ 23,mlp.up_proj,0.0000168317,0.05000,0.573
169
+ 23,mlp.down_proj,0.0000051140,0.05000,5.875
170
+ 24,self_attn.k_proj,0.0000046632,0.05000,0.673
171
+ 24,self_attn.v_proj,0.0000075893,0.05000,0.660
172
+ 24,self_attn.q_proj,0.0000218369,0.05000,0.590
173
+ 24,self_attn.o_proj,0.0000018483,0.05000,2.511
174
+ 24,mlp.gate_proj,0.0000212192,0.05000,2.009
175
+ 24,mlp.up_proj,0.0000175868,0.05000,0.608
176
+ 24,mlp.down_proj,0.0000058074,0.05000,6.818
177
+ 25,self_attn.k_proj,0.0000034644,0.05000,1.018
178
+ 25,self_attn.v_proj,0.0000044403,0.05000,0.547
179
+ 25,self_attn.q_proj,0.0000148839,0.05000,0.559
180
+ 25,self_attn.o_proj,0.0000005176,0.05000,2.505
181
+ 25,mlp.gate_proj,0.0000219734,0.05000,2.014
182
+ 25,mlp.up_proj,0.0000182080,0.05000,0.581
183
+ 25,mlp.down_proj,0.0000070615,0.05000,6.010
184
+ 26,self_attn.k_proj,0.0000050420,0.05000,0.694
185
+ 26,self_attn.v_proj,0.0000062721,0.05000,0.572
186
+ 26,self_attn.q_proj,0.0000221408,0.05000,0.591
187
+ 26,self_attn.o_proj,0.0000006158,0.05000,2.475
188
+ 26,mlp.gate_proj,0.0000228349,0.05000,1.998
189
+ 26,mlp.up_proj,0.0000197118,0.05000,0.569
190
+ 26,mlp.down_proj,0.0000067389,0.05000,5.881
191
+ 27,self_attn.k_proj,0.0000055864,0.05000,1.059
192
+ 27,self_attn.v_proj,0.0000080624,0.05000,0.568
193
+ 27,self_attn.q_proj,0.0000258606,0.05000,0.580
194
+ 27,self_attn.o_proj,0.0000006855,0.05000,2.541
195
+ 27,mlp.gate_proj,0.0000238480,0.05000,2.029
196
+ 27,mlp.up_proj,0.0000212000,0.05000,0.632
197
+ 27,mlp.down_proj,0.0000096932,0.05000,5.833
198
+ 28,self_attn.k_proj,0.0000070025,0.05000,1.292
199
+ 28,self_attn.v_proj,0.0000083161,0.05000,0.564
200
+ 28,self_attn.q_proj,0.0000291054,0.05000,0.632
201
+ 28,self_attn.o_proj,0.0000010427,0.05000,2.526
202
+ 28,mlp.gate_proj,0.0000261231,0.05000,2.026
203
+ 28,mlp.up_proj,0.0000237428,0.05000,0.620
204
+ 28,mlp.down_proj,0.0000143893,0.05000,5.828
205
+ 29,self_attn.k_proj,0.0000148734,0.05000,0.881
206
+ 29,self_attn.v_proj,0.0000208124,0.05000,0.604
207
+ 29,self_attn.q_proj,0.0000642986,0.05000,0.580
208
+ 29,self_attn.o_proj,0.0000019262,0.05000,2.551
209
+ 29,mlp.gate_proj,0.0000268714,0.05000,2.000
210
+ 29,mlp.up_proj,0.0000263124,0.05000,0.576
211
+ 29,mlp.down_proj,0.0000116249,0.05000,6.838
212
+ 30,self_attn.k_proj,0.0000183004,0.05000,1.184
213
+ 30,self_attn.v_proj,0.0000256555,0.05000,0.575
214
+ 30,self_attn.q_proj,0.0000718790,0.05000,0.601
215
+ 30,self_attn.o_proj,0.0000019836,0.05000,2.494
216
+ 30,mlp.gate_proj,0.0000274067,0.05000,2.027
217
+ 30,mlp.up_proj,0.0000274952,0.05000,0.585
218
+ 30,mlp.down_proj,0.0000147949,0.05000,6.797
219
+ 31,self_attn.k_proj,0.0000233856,0.05000,1.060
220
+ 31,self_attn.v_proj,0.0000342197,0.05000,0.591
221
+ 31,self_attn.q_proj,0.0000923425,0.05000,0.574
222
+ 31,self_attn.o_proj,0.0000027375,0.05000,2.491
223
+ 31,mlp.gate_proj,0.0000263819,0.05000,2.039
224
+ 31,mlp.up_proj,0.0000279155,0.05000,0.578
225
+ 31,mlp.down_proj,0.0000168516,0.05000,5.929
226
+ 32,self_attn.k_proj,0.0000320710,0.05000,1.220
227
+ 32,self_attn.v_proj,0.0000520049,0.05000,0.587
228
+ 32,self_attn.q_proj,0.0001338310,0.05000,0.601
229
+ 32,self_attn.o_proj,0.0000030090,0.05000,2.465
230
+ 32,mlp.gate_proj,0.0000276425,0.05000,2.000
231
+ 32,mlp.up_proj,0.0000288343,0.05000,0.571
232
+ 32,mlp.down_proj,0.0000203893,0.05000,6.831
233
+ 33,self_attn.k_proj,0.0000540688,0.05000,1.089
234
+ 33,self_attn.v_proj,0.0001029245,0.05000,0.577
235
+ 33,self_attn.q_proj,0.0002794832,0.05000,0.577
236
+ 33,self_attn.o_proj,0.0000079323,0.05000,2.503
237
+ 33,mlp.gate_proj,0.0000305939,0.05000,2.053
238
+ 33,mlp.up_proj,0.0000316398,0.05000,0.590
239
+ 33,mlp.down_proj,0.0000278307,0.05000,6.866
240
+ 34,self_attn.k_proj,0.0000487300,0.05000,1.086
241
+ 34,self_attn.v_proj,0.0000873853,0.05000,0.571
242
+ 34,self_attn.q_proj,0.0002168585,0.05000,0.592
243
+ 34,self_attn.o_proj,0.0000091280,0.05000,2.487
244
+ 34,mlp.gate_proj,0.0000399611,0.05000,2.078
245
+ 34,mlp.up_proj,0.0000384122,0.05000,0.569
246
+ 34,mlp.down_proj,0.0000471684,0.05000,6.752
247
+ 35,self_attn.k_proj,0.0000280813,0.05000,0.933
248
+ 35,self_attn.v_proj,0.0000362546,0.05000,0.558
249
+ 35,self_attn.q_proj,0.0000994230,0.05000,0.579
250
+ 35,self_attn.o_proj,0.0000064758,0.05000,2.480
251
+ 35,mlp.gate_proj,0.0000665987,0.05000,2.016
252
+ 35,mlp.up_proj,0.0000649722,0.05000,0.628
253
+ 35,mlp.down_proj,0.0001689907,0.05000,6.585
quantize_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": -1,
4
+ "desc_act": true,
5
+ "hyb_act": false,
6
+ "sym": true,
7
+ "lm_head": false,
8
+ "quant_method": "gptq",
9
+ "checkpoint_format": "gptq",
10
+ "pack_dtype": "int32",
11
+ "meta": {
12
+ "quantizer": [
13
+ "gptqmodel:4.0.0"
14
+ ],
15
+ "uri": "https://github.com/modelcloud/gptqmodel",
16
+ "damp_percent": 0.05,
17
+ "damp_auto_increment": 0.01,
18
+ "static_groups": false,
19
+ "true_sequential": true,
20
+ "mse": 0.0,
21
+ "v2": false,
22
+ "v2_alpha": 0.25
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": "<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": 262144,
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