TOTORONG commited on
Commit
009ce31
·
verified ·
1 Parent(s): 09231ac

Upload folder using huggingface_hub

Browse files
Files changed (46) hide show
  1. .gitattributes +1 -0
  2. chat_template.jinja +86 -0
  3. config.json +135 -0
  4. model.safetensors-00001-of-00039.safetensors +3 -0
  5. model.safetensors-00002-of-00039.safetensors +3 -0
  6. model.safetensors-00003-of-00039.safetensors +3 -0
  7. model.safetensors-00004-of-00039.safetensors +3 -0
  8. model.safetensors-00005-of-00039.safetensors +3 -0
  9. model.safetensors-00006-of-00039.safetensors +3 -0
  10. model.safetensors-00007-of-00039.safetensors +3 -0
  11. model.safetensors-00008-of-00039.safetensors +3 -0
  12. model.safetensors-00009-of-00039.safetensors +3 -0
  13. model.safetensors-00010-of-00039.safetensors +3 -0
  14. model.safetensors-00011-of-00039.safetensors +3 -0
  15. model.safetensors-00012-of-00039.safetensors +3 -0
  16. model.safetensors-00013-of-00039.safetensors +3 -0
  17. model.safetensors-00014-of-00039.safetensors +3 -0
  18. model.safetensors-00015-of-00039.safetensors +3 -0
  19. model.safetensors-00016-of-00039.safetensors +3 -0
  20. model.safetensors-00017-of-00039.safetensors +3 -0
  21. model.safetensors-00018-of-00039.safetensors +3 -0
  22. model.safetensors-00019-of-00039.safetensors +3 -0
  23. model.safetensors-00020-of-00039.safetensors +3 -0
  24. model.safetensors-00021-of-00039.safetensors +3 -0
  25. model.safetensors-00022-of-00039.safetensors +3 -0
  26. model.safetensors-00023-of-00039.safetensors +3 -0
  27. model.safetensors-00024-of-00039.safetensors +3 -0
  28. model.safetensors-00025-of-00039.safetensors +3 -0
  29. model.safetensors-00026-of-00039.safetensors +3 -0
  30. model.safetensors-00027-of-00039.safetensors +3 -0
  31. model.safetensors-00028-of-00039.safetensors +3 -0
  32. model.safetensors-00029-of-00039.safetensors +3 -0
  33. model.safetensors-00030-of-00039.safetensors +3 -0
  34. model.safetensors-00031-of-00039.safetensors +3 -0
  35. model.safetensors-00032-of-00039.safetensors +3 -0
  36. model.safetensors-00033-of-00039.safetensors +3 -0
  37. model.safetensors-00034-of-00039.safetensors +3 -0
  38. model.safetensors-00035-of-00039.safetensors +3 -0
  39. model.safetensors-00036-of-00039.safetensors +3 -0
  40. model.safetensors-00037-of-00039.safetensors +3 -0
  41. model.safetensors-00038-of-00039.safetensors +3 -0
  42. model.safetensors-00039-of-00039.safetensors +3 -0
  43. model.safetensors.index.json +0 -0
  44. processor_config.json +63 -0
  45. tokenizer.json +3 -0
  46. tokenizer_config.json +34 -0
.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,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 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,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5MoeForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": null,
6
+ "torch_dtype": "bfloat16",
7
+ "eos_token_id": 248046,
8
+ "image_token_id": 248056,
9
+ "model_type": "qwen3_5_moe",
10
+ "pad_token_id": 248055,
11
+ "text_config": {
12
+ "attention_bias": false,
13
+ "attention_dropout": 0.0,
14
+ "attn_output_gate": true,
15
+ "bos_token_id": null,
16
+ "torch_dtype": "bfloat16",
17
+ "eos_token_id": 248044,
18
+ "full_attention_interval": 4,
19
+ "head_dim": 256,
20
+ "hidden_act": "silu",
21
+ "hidden_size": 3072,
22
+ "initializer_range": 0.02,
23
+ "layer_types": [
24
+ "linear_attention",
25
+ "linear_attention",
26
+ "linear_attention",
27
+ "full_attention",
28
+ "linear_attention",
29
+ "linear_attention",
30
+ "linear_attention",
31
+ "full_attention",
32
+ "linear_attention",
33
+ "linear_attention",
34
+ "linear_attention",
35
+ "full_attention",
36
+ "linear_attention",
37
+ "linear_attention",
38
+ "linear_attention",
39
+ "full_attention",
40
+ "linear_attention",
41
+ "linear_attention",
42
+ "linear_attention",
43
+ "full_attention",
44
+ "linear_attention",
45
+ "linear_attention",
46
+ "linear_attention",
47
+ "full_attention",
48
+ "linear_attention",
49
+ "linear_attention",
50
+ "linear_attention",
51
+ "full_attention",
52
+ "linear_attention",
53
+ "linear_attention",
54
+ "linear_attention",
55
+ "full_attention",
56
+ "linear_attention",
57
+ "linear_attention",
58
+ "linear_attention",
59
+ "full_attention",
60
+ "linear_attention",
61
+ "linear_attention",
62
+ "linear_attention",
63
+ "full_attention",
64
+ "linear_attention",
65
+ "linear_attention",
66
+ "linear_attention",
67
+ "full_attention",
68
+ "linear_attention",
69
+ "linear_attention",
70
+ "linear_attention",
71
+ "full_attention"
72
+ ],
73
+ "linear_conv_kernel_dim": 4,
74
+ "linear_key_head_dim": 128,
75
+ "linear_num_key_heads": 16,
76
+ "linear_num_value_heads": 64,
77
+ "linear_value_head_dim": 128,
78
+ "mamba_ssm_dtype": "float32",
79
+ "max_position_embeddings": 262144,
80
+ "mlp_only_layers": [],
81
+ "model_type": "qwen3_5_moe_text",
82
+ "moe_intermediate_size": 1024,
83
+ "mtp_num_hidden_layers": 1,
84
+ "mtp_use_dedicated_embeddings": false,
85
+ "num_attention_heads": 32,
86
+ "num_experts": 256,
87
+ "num_experts_per_tok": 8,
88
+ "num_hidden_layers": 48,
89
+ "num_key_value_heads": 2,
90
+ "output_router_logits": false,
91
+ "pad_token_id": null,
92
+ "partial_rotary_factor": 0.25,
93
+ "rms_norm_eps": 1e-06,
94
+ "rope_parameters": {
95
+ "mrope_interleaved": true,
96
+ "mrope_section": [
97
+ 11,
98
+ 11,
99
+ 10
100
+ ],
101
+ "partial_rotary_factor": 0.25,
102
+ "rope_theta": 10000000,
103
+ "rope_type": "default"
104
+ },
105
+ "router_aux_loss_coef": 0.001,
106
+ "shared_expert_intermediate_size": 1024,
107
+ "tie_word_embeddings": false,
108
+ "use_cache": true,
109
+ "vocab_size": 248320
110
+ },
111
+ "tie_word_embeddings": false,
112
+ "unsloth_fixed": true,
113
+ "unsloth_version": "2026.2.1",
114
+ "use_cache": false,
115
+ "video_token_id": 248057,
116
+ "vision_config": {
117
+ "deepstack_visual_indexes": [],
118
+ "depth": 27,
119
+ "torch_dtype": "bfloat16",
120
+ "hidden_act": "gelu_pytorch_tanh",
121
+ "hidden_size": 1152,
122
+ "in_channels": 3,
123
+ "initializer_range": 0.02,
124
+ "intermediate_size": 4304,
125
+ "model_type": "qwen3_5_moe",
126
+ "num_heads": 16,
127
+ "num_position_embeddings": 2304,
128
+ "out_hidden_size": 3072,
129
+ "patch_size": 16,
130
+ "spatial_merge_size": 2,
131
+ "temporal_patch_size": 2
132
+ },
133
+ "vision_end_token_id": 248054,
134
+ "vision_start_token_id": 248053
135
+ }
model.safetensors-00001-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:332c1e4be77d96c0ab70d084b6c199486a04d13858bb0172c49f18530f0862af
3
+ size 6442451224
model.safetensors-00002-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d6aeaa97a1b308c025c8dcf7139cb2d7e60d54b452e03ba686c87bb4b68501b
3
+ size 6442451224
model.safetensors-00003-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bd191f3ffb7850a1b013a1ef83be0866656761092966a8c11c2171a6fb9a385
3
+ size 6442451224
model.safetensors-00004-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dce8e2810f9f112617f02637c8fc16f8aa23cb1c137944f56abe0976623c840
3
+ size 6442451224
model.safetensors-00005-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dc9a48bb7543efeee6c3e9339643aac42457e4b5a32e6069fec270cabaf3e6d
3
+ size 6442451224
model.safetensors-00006-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e8ec895b49d39764eef2382aa0f832a41175b9ea5dc42f054d6186cc94014d1
3
+ size 6442451224
model.safetensors-00007-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5d776a9144f013eb9b113dd3952bb584fe6ebdb1c2b898a5ed5185ee8df975f
3
+ size 6442451224
model.safetensors-00008-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d951d5497b4c9a4792a79ae3adcdef152608c27e37672adb8065f09399215909
3
+ size 6442451224
model.safetensors-00009-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c79315a7788dbd489359223dfa0e553347ca02bd47237a06c6aa727d61901e0
3
+ size 6442451224
model.safetensors-00010-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:531c0dd9fb0a1f661ef9fdc888c1b6dca40ffc1702eff0b892c8d5d4c6841a41
3
+ size 6442451224
model.safetensors-00011-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:facd57a4868a1448822ab103b61e11ba2ad2be65d7dfd3cd3f0fad645c510dc5
3
+ size 6442451224
model.safetensors-00012-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0b23e1c64ee56fea7e0efd818089635d97a4091991b8e13cd104f7a35f75186
3
+ size 6442451224
model.safetensors-00013-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a67ca5410cbfd5d2a6e8ededae933426cf46f213b522f66fe68bbb13ab8af45
3
+ size 6442451224
model.safetensors-00014-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c89d477a6f256436e5f5f721911b38b83ebefe5782d2772ef9e6c2fa4ce22a47
3
+ size 6442451224
model.safetensors-00015-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df62fe489e4e22f93d0b49a36980621cfd75c5f16a6422511f57d161159663c3
3
+ size 6442451224
model.safetensors-00016-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e1de325f3bf4da6ea2edde728b4fc1c9925a10c3b3387fbf17aaeea931ef0db
3
+ size 6442451224
model.safetensors-00017-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2c410f267c41dae857cc2f4249318417be229790a935c427d4f5b768732b858
3
+ size 6442451224
model.safetensors-00018-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e5253bc71f97fd827215558db29f609b86dfea53a28f2e85c4b52ecd56513ce
3
+ size 6442451224
model.safetensors-00019-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:066cd77be73c18c9b90abd2843684b5dc2b808919bbbe1d70294a30f8f767257
3
+ size 6442451224
model.safetensors-00020-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:132011d475dedd08fca6e6e5664b09146c22ca66affee95e563bb405c8cf1e37
3
+ size 6442451224
model.safetensors-00021-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cba977a5e7d49cb4c39f7ea7ba9737e34905a7ecc1660e8b4fe23a9c524f4e62
3
+ size 6442451224
model.safetensors-00022-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd5aa045138ef0e01d5dfb31379f563f9744332c01a21a97d4d1030f34445f0c
3
+ size 6442451224
model.safetensors-00023-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8da9dbf424d1fdd8addaf73623d0fd9e979b8c2a697e791bef1c27a417b255fa
3
+ size 6442451224
model.safetensors-00024-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:340ea9811f3068352367f920e149e565823eaaff18d4fe814d1e09e65983fd1f
3
+ size 6442451224
model.safetensors-00025-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2df4de90a9462a9052864f6f15c783eb462d04ea2418b1ad9d216fa82d567aed
3
+ size 6442451488
model.safetensors-00026-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97e810af049fdf3f50dccf56839883717bc729a4b5aaeb4374468c12acbc2ee0
3
+ size 6442451488
model.safetensors-00027-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:621ab010b3ac22347e047a6181a586371c1a57369288fcff5979d8ddbf0b00ad
3
+ size 6442451488
model.safetensors-00028-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:302f308a1b5ee742b4d30469076106daac156e4ea87f23ebba11da8fff01099e
3
+ size 6442451488
model.safetensors-00029-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ab4ce987152dd16d3beb89bbe459af1fc64f25efda8da16bf66447d08c3ad67
3
+ size 6442451488
model.safetensors-00030-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b26de33976f06bd6eb12881e026409729141c098f75f7054b3c83c3a2fdb1647
3
+ size 6442451488
model.safetensors-00031-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8292a4d4a914ff4289e4fba6460f06847e1234d3814a0d343c9fe9040f28131a
3
+ size 6442451488
model.safetensors-00032-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d52d973cd4e075e8c9eb62e8a2c2445db3c0338ea0a607733b474ad978fedc3f
3
+ size 6442451488
model.safetensors-00033-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cded2f2405e0d1239c70e7eb9f4ac9302fdd2c48fc002c8682170426fd916b70
3
+ size 6442451488
model.safetensors-00034-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:713709f8a41cc1e46c1c6a7cc1bdcb4e63688fe4e89e808e53362160ad52a3ce
3
+ size 6442451488
model.safetensors-00035-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdeb692703df51f6ccfd5b227de692d77550396667dec8b929c1446ffdc14472
3
+ size 6442451488
model.safetensors-00036-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:804066f8fa1837c3d98aa7d6933e23ceaff3a6c749a0d19dce3c806e5134b578
3
+ size 6442451488
model.safetensors-00037-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d9ebd14ab8c0d695a94980d3e11e08f1e6422f6ca510ad6e7f9756bec5424f4
3
+ size 6398416496
model.safetensors-00038-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b83cee948d599c819e3368f62b4c45b9bf2527f6ac6d15dafa9196e6321af7c
3
+ size 6439563496
model.safetensors-00039-of-00039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f295b725d9819bbc166a4548a6562c094ce5947940d9e7806fe5da52fa85a05
3
+ size 5407023640
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "_Unsloth_Patched_Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
13
+ "model_max_length": 262144,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|vision_pad|>",
24
+ "padding_side": "right",
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
+ "processor_class": "_Unsloth_Patched_Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>",
33
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\n {{- \"# 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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- 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>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if message.content is string %}\n {%- set content = message.content %}\n {%- else %}\n {%- set content = '' %}\n {%- endif %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if reasoning_content %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}"
34
+ }