weedyweed commited on
Commit
87fcf4c
·
verified ·
1 Parent(s): c99885a

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
chat_template.jinja ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {# model distilled by caseus #}
2
+ {%- set image_count = namespace(value=0) %}
3
+ {%- set video_count = namespace(value=0) %}
4
+ {%- macro render_content(content, do_vision_count, is_system_content=false) %}
5
+ {%- if content is string %}
6
+ {{- content }}
7
+ {%- elif content is iterable and content is not mapping %}
8
+ {%- for item in content %}
9
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
10
+ {%- if is_system_content %}
11
+ {{- raise_exception('System message cannot contain images.') }}
12
+ {%- endif %}
13
+ {%- if do_vision_count %}
14
+ {%- set image_count.value = image_count.value + 1 %}
15
+ {%- endif %}
16
+ {%- if add_vision_id %}
17
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
18
+ {%- endif %}
19
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
20
+ {%- elif 'video' in item or item.type == 'video' %}
21
+ {%- if is_system_content %}
22
+ {{- raise_exception('System message cannot contain videos.') }}
23
+ {%- endif %}
24
+ {%- if do_vision_count %}
25
+ {%- set video_count.value = video_count.value + 1 %}
26
+ {%- endif %}
27
+ {%- if add_vision_id %}
28
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
29
+ {%- endif %}
30
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
31
+ {%- elif 'text' in item %}
32
+ {{- item.text }}
33
+ {%- else %}
34
+ {{- raise_exception('Unexpected item type in content.') }}
35
+ {%- endif %}
36
+ {%- endfor %}
37
+ {%- elif content is none or content is undefined %}
38
+ {{- '' }}
39
+ {%- else %}
40
+ {{- raise_exception('Unexpected content type.') }}
41
+ {%- endif %}
42
+ {%- endmacro %}
43
+ {%- if not messages %}
44
+ {{- raise_exception('No messages provided.') }}
45
+ {%- endif %}
46
+ {%- if tools and tools is iterable and tools is not mapping %}
47
+ {{- '<|im_start|>system\n' }}
48
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
49
+ {%- for tool in tools %}
50
+ {{- "\n" }}
51
+ {{- tool | tojson }}
52
+ {%- endfor %}
53
+ {{- "\n</tools>" }}
54
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
55
+ {%- if messages[0].role == 'system' %}
56
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
57
+ {%- if content %}
58
+ {{- '\n\n' + content }}
59
+ {%- endif %}
60
+ {%- endif %}
61
+ {{- '<|im_end|>\n' }}
62
+ {%- else %}
63
+ {%- if messages[0].role == 'system' %}
64
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
65
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
66
+ {%- endif %}
67
+ {%- endif %}
68
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
69
+ {%- for message in messages[::-1] %}
70
+ {%- set index = (messages|length - 1) - loop.index0 %}
71
+ {%- if ns.multi_step_tool and message.role == "user" %}
72
+ {%- set content = render_content(message.content, false)|trim %}
73
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
74
+ {%- set ns.multi_step_tool = false %}
75
+ {%- set ns.last_query_index = index %}
76
+ {%- endif %}
77
+ {%- endif %}
78
+ {%- endfor %}
79
+ {%- if ns.multi_step_tool %}
80
+ {{- raise_exception('No user query found in messages.') }}
81
+ {%- endif %}
82
+ {%- for message in messages %}
83
+ {%- set content = render_content(message.content, true)|trim %}
84
+ {%- if message.role == "system" %}
85
+ {%- if not loop.first %}
86
+ {{- raise_exception('System message must be at the beginning.') }}
87
+ {%- endif %}
88
+ {%- elif message.role == "user" %}
89
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
90
+ {%- elif message.role == "assistant" %}
91
+ {%- set reasoning_content = '' %}
92
+ {%- if message.reasoning_content is string %}
93
+ {%- set reasoning_content = message.reasoning_content %}
94
+ {%- else %}
95
+ {%- if '</think>' in content %}
96
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
97
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
98
+ {%- endif %}
99
+ {%- endif %}
100
+ {%- set reasoning_content = reasoning_content|trim %}
101
+ {%- if loop.index0 > ns.last_query_index %}
102
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
103
+ {%- else %}
104
+ {{- '<|im_start|>' + message.role + '\n' + content }}
105
+ {%- endif %}
106
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
107
+ {%- for tool_call in message.tool_calls %}
108
+ {%- if tool_call.function is defined %}
109
+ {%- set tool_call = tool_call.function %}
110
+ {%- endif %}
111
+ {%- if loop.first %}
112
+ {%- if content|trim %}
113
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
114
+ {%- else %}
115
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
116
+ {%- endif %}
117
+ {%- else %}
118
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
119
+ {%- endif %}
120
+ {%- if tool_call.arguments is defined %}
121
+ {%- for args_name, args_value in tool_call.arguments|items %}
122
+ {{- '<parameter=' + args_name + '>\n' }}
123
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
124
+ {{- args_value }}
125
+ {{- '\n</parameter>\n' }}
126
+ {%- endfor %}
127
+ {%- endif %}
128
+ {{- '</function>\n</tool_call>' }}
129
+ {%- endfor %}
130
+ {%- endif %}
131
+ {{- '<|im_end|>\n' }}
132
+ {%- elif message.role == "tool" %}
133
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
134
+ {{- '<|im_start|>user' }}
135
+ {%- endif %}
136
+ {{- '\n<tool_response>\n' }}
137
+ {{- content }}
138
+ {{- '\n</tool_response>' }}
139
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
140
+ {{- '<|im_end|>\n' }}
141
+ {%- elif loop.last %}
142
+ {{- '<|im_end|>\n' }}
143
+ {%- endif %}
144
+ {%- else %}
145
+ {{- raise_exception('Unexpected message role.') }}
146
+ {%- endif %}
147
+ {%- endfor %}
148
+ {%- if add_generation_prompt %}
149
+ {{- '<|im_start|>assistant\n' }}
150
+ {%- if enable_thinking is defined and enable_thinking is false %}
151
+ {{- '<think>\n\n</think>\n\n' }}
152
+ {%- else %}
153
+ {{- '<think>\n' }}
154
+ {%- endif %}
155
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attn_output_gate": true,
8
+ "bos_token_id": null,
9
+ "dtype": "bfloat16",
10
+ "eos_token_id": 248046,
11
+ "full_attention_interval": 4,
12
+ "head_dim": 256,
13
+ "hidden_act": "silu",
14
+ "hidden_size": 2560,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 9216,
17
+ "layer_types": [
18
+ "linear_attention",
19
+ "linear_attention",
20
+ "linear_attention",
21
+ "full_attention",
22
+ "linear_attention",
23
+ "linear_attention",
24
+ "linear_attention",
25
+ "full_attention",
26
+ "linear_attention",
27
+ "linear_attention",
28
+ "linear_attention",
29
+ "full_attention",
30
+ "linear_attention",
31
+ "linear_attention",
32
+ "linear_attention",
33
+ "full_attention",
34
+ "linear_attention",
35
+ "linear_attention",
36
+ "linear_attention",
37
+ "full_attention",
38
+ "linear_attention",
39
+ "linear_attention",
40
+ "linear_attention",
41
+ "full_attention",
42
+ "linear_attention",
43
+ "linear_attention",
44
+ "linear_attention",
45
+ "full_attention",
46
+ "linear_attention",
47
+ "linear_attention",
48
+ "linear_attention",
49
+ "full_attention"
50
+ ],
51
+ "linear_conv_kernel_dim": 4,
52
+ "linear_key_head_dim": 128,
53
+ "linear_num_key_heads": 16,
54
+ "linear_num_value_heads": 32,
55
+ "linear_value_head_dim": 128,
56
+ "mamba_ssm_dtype": "float32",
57
+ "max_position_embeddings": 262144,
58
+ "mlp_only_layers": [],
59
+ "model_type": "qwen3_5_text",
60
+ "mtp_num_hidden_layers": 1,
61
+ "mtp_use_dedicated_embeddings": false,
62
+ "num_attention_heads": 16,
63
+ "num_hidden_layers": 32,
64
+ "num_key_value_heads": 4,
65
+ "pad_token_id": 248044,
66
+ "partial_rotary_factor": 0.25,
67
+ "rms_norm_eps": 1e-06,
68
+ "rope_parameters": {
69
+ "mrope_interleaved": true,
70
+ "mrope_section": [
71
+ 11,
72
+ 11,
73
+ 10
74
+ ],
75
+ "partial_rotary_factor": 0.25,
76
+ "rope_theta": 10000000,
77
+ "rope_type": "default"
78
+ },
79
+ "tie_word_embeddings": true,
80
+ "transformers_version": "5.4.0",
81
+ "use_cache": false,
82
+ "vocab_size": 248320
83
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 248046,
5
+ 248044
6
+ ],
7
+ "pad_token_id": 248044,
8
+ "transformers_version": "5.4.0",
9
+ "use_cache": true
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:add2f5ec437643a09fdcd9d16009091b47e3ff5bc2437846c1db776429cb9982
3
+ size 8411558400
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28923a6ea273d3fd774542aaa3bc97b0bb74ad64963d65ec331e80241ba0a5ba
3
+ size 19989441
tokenizer_config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": true,
13
+ "max_length": 640,
14
+ "model_max_length": 262144,
15
+ "model_specific_special_tokens": {
16
+ "audio_bos_token": "<|audio_start|>",
17
+ "audio_eos_token": "<|audio_end|>",
18
+ "audio_token": "<|audio_pad|>",
19
+ "image_token": "<|image_pad|>",
20
+ "video_token": "<|video_pad|>",
21
+ "vision_bos_token": "<|vision_start|>",
22
+ "vision_eos_token": "<|vision_end|>"
23
+ },
24
+ "pad_token": "<|endoftext|>",
25
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
26
+ "split_special_tokens": false,
27
+ "stride": 0,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "truncation_side": "right",
30
+ "truncation_strategy": "longest_first",
31
+ "unk_token": null,
32
+ "video_token": "<|video_pad|>",
33
+ "vision_bos_token": "<|vision_start|>",
34
+ "vision_eos_token": "<|vision_end|>"
35
+ }