cucl2 commited on
Commit
85b84c2
·
verified ·
1 Parent(s): f90f7e7

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
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - zh
6
+ library_name: transformers
7
+ base_model: Qwen/Qwen3-Omni-30B-A3B-Captioner
8
+ tags:
9
+ - audio
10
+ - audio-language-model
11
+ - instruction-following
12
+ - rubric-based-evaluation
13
+ - judge-model
14
+ pipeline_tag: audio-text-to-text
15
+ ---
16
+
17
+ # AnyAudio-Judge-30B
18
+
19
+ `AnyAudio-Judge-30B` is the **dynamic rubric-based audio judge** reported in the paper. It is initialized from [Qwen3-Omni-30B-A3B-Captioner](https://huggingface.co/Qwen) and fine-tuned on the AnyAudio-Judge SFT Corpus.
20
+
21
+ For each binary rubric item describing one verifiable aspect of an audio caption, the model predicts yes / no and produces a one-sentence evidence string drawn from what it heard in the audio. Aggregating the per-item soft probabilities yields a fine-grained alignment score that is significantly more sensitive to partial mismatches than a single holistic match/mismatch judgment.
22
+
23
+ > Companion benchmark: [`cucl2/AnyAudio-Judge-Bench`](https://huggingface.co/datasets/cucl2/AnyAudio-Judge-Bench)
24
+ > Companion corpus: [`cucl2/AnyAudio-Judge-Corpus`](https://huggingface.co/datasets/cucl2/AnyAudio-Judge-Corpus)
25
+ > Smaller variant: [`cucl2/AnyAudio-Judge-7B`](https://huggingface.co/cucl2/AnyAudio-Judge-7B)
26
+
27
+ ## Headline numbers (AnyAudio-Judge Bench, accuracy ↑)
28
+
29
+ | Model | Avg (en) | Avg (zh) |
30
+ |---|---:|---:|
31
+ | Qwen3-Omni-30B-A3B-Captioner (dynamic rubric, no fine-tuning) | 76.77 | 76.66 |
32
+ | Gemini-2.5-Pro (holistic) | 77.72 | 80.01 |
33
+ | **AnyAudio-Judge-30B (this checkpoint)** | **84.45** | **85.26** |
34
+
35
+ ## Training
36
+
37
+ - **Base**: Qwen3-Omni-30B-A3B-Captioner
38
+ - **Corpus**: 105K (audio, instruction, rubric, CoT) tuples
39
+ - **Stage 1 — SFT**: full-parameter fine-tuning, 1 epoch, 16 × H20 96GB, lr 1e-5, per-device bs 4
40
+ - **Stage 2 — GRPO** (separate release): LoRA r=16, α=32, 1 epoch on 8,454 hard samples
41
+
42
+ This release contains the **SFT-only** stage (matching the "+SFT" row of the ablation table). The +GRPO improvement reported in the paper can be reproduced by running GRPO on top of this checkpoint.
43
+
44
+ ## Usage
45
+
46
+ ```python
47
+ from anyaudio_judge import AnyAudioJudge, decompose_instruction
48
+
49
+ caption = "A gentle, delicate female voice, with soft and smooth pitch, calm and restrained throughout."
50
+ rubric = decompose_instruction(caption)
51
+
52
+ judge = AnyAudioJudge.from_pretrained("cucl2/AnyAudio-Judge-30B")
53
+ result = judge.judge("./demo.wav", rubric)
54
+ print("alignment_score:", result.score)
55
+ for item in result.items:
56
+ print(item.question, "->", item.answer)
57
+ ```
58
+
59
+ ## License
60
+
61
+ Apache-2.0, inheriting the license of the base Qwen3-Omni-30B-A3B-Captioner model.
62
+
63
+ ## Citation
64
+
65
+ ```bibtex
66
+ @inproceedings{anyaudiojudge2026,
67
+ title = {AnyAudio-Judge: A Dynamic Rubric-Based Benchmark and Evaluator for Audio Instruction Following},
68
+ booktitle = {Proceedings of ACL},
69
+ year = {2026}
70
+ }
71
+ ```
added_tokens.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<tts_pad>": 151671,
9
+ "<tts_text_bos>": 151672,
10
+ "<tts_text_bos_single>": 151674,
11
+ "<tts_text_eod>": 151673,
12
+ "<|audio_end|>": 151670,
13
+ "<|audio_pad|>": 151675,
14
+ "<|audio_start|>": 151669,
15
+ "<|box_end|>": 151649,
16
+ "<|box_start|>": 151648,
17
+ "<|endoftext|>": 151643,
18
+ "<|file_sep|>": 151664,
19
+ "<|fim_middle|>": 151660,
20
+ "<|fim_pad|>": 151662,
21
+ "<|fim_prefix|>": 151659,
22
+ "<|fim_suffix|>": 151661,
23
+ "<|im_end|>": 151645,
24
+ "<|im_start|>": 151644,
25
+ "<|image_pad|>": 151655,
26
+ "<|object_ref_end|>": 151647,
27
+ "<|object_ref_start|>": 151646,
28
+ "<|quad_end|>": 151651,
29
+ "<|quad_start|>": 151650,
30
+ "<|repo_name|>": 151663,
31
+ "<|video_pad|>": 151656,
32
+ "<|vision_end|>": 151653,
33
+ "<|vision_pad|>": 151654,
34
+ "<|vision_start|>": 151652
35
+ }
chat_template.jinja ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}{{- messages[0].content + '\n\n' }}{%- endif %}
4
+ {{- "# 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>" }}
5
+ {%- for tool in tools %}
6
+ {{- "\n" }}
7
+ {{- tool | tojson }}
8
+ {%- endfor %}
9
+ {{- "\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" }}
10
+ {%- else %}
11
+ {%- if messages[0].role == 'system' %}
12
+ {%- if messages[0].content is string %}
13
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
14
+ {%- else %}
15
+ {%- for content in messages[0].content %}
16
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
17
+ {{- '<|im_start|>system\n' +"<|vision_start|><|image_pad|><|vision_end|>"+ '<|im_end|>\n' }}
18
+ {%- elif content.type == 'audio' or 'audio' in content or 'audio_url' in content %}
19
+ {{- '<|im_start|>system\n' +"<|audio_start|><|audio_pad|><|audio_end|>"+ '<|im_end|>\n' }}
20
+ {%- elif content.type == 'video' or 'video' in content %}
21
+ {{- '<|im_start|>system\n' +"<|vision_start|><|video_pad|><|vision_end|>"+ '<|im_end|>\n' }}
22
+ {%- elif content.type == 'text' %}
23
+ {{- '<|im_start|>system\n' +content.text+ '<|im_end|>\n' }}
24
+ {%- endif %}
25
+ {%- endfor %}
26
+ {%- endif %}
27
+ {%- endif %}
28
+ {%- endif %}
29
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
30
+ {%- for message in messages[::-1] %}
31
+ {%- set index = (messages|length - 1) - loop.index0 %}
32
+ {%- 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>')) %}
33
+ {%- set ns.multi_step_tool = false %}
34
+ {%- set ns.last_query_index = index %}
35
+ {%- endif %}
36
+ {%- endfor %}
37
+ {%- for message in messages %}
38
+ {%- if message.content is string %}
39
+ {%- set content = message.content %}
40
+ {%- else %}
41
+ {%- set content = namespace(text="") %}
42
+ {%- for mcontent in message.content %}
43
+ {%- if mcontent.type == 'image' or 'image' in mcontent or 'image_url' in mcontent %}
44
+ {%- set content.text = content.text~"<|vision_start|><|image_pad|><|vision_end|>" %}
45
+ {%- elif mcontent.type == 'audio' or 'audio' in mcontent or 'audio_url' in mcontent %}
46
+ {%- set content.text = content.text~"<|audio_start|><|audio_pad|><|audio_end|>" %}
47
+ {%- elif mcontent.type == 'video' or 'video' in mcontent %}
48
+ {%- set content.text = content.text~"<|vision_start|><|video_pad|><|vision_end|>" %}
49
+ {%- elif mcontent.type == 'text' %}
50
+ {%- set content.text = content.text~mcontent.text %}
51
+ {%- endif %}
52
+ {%- endfor %}
53
+ {%- set content = content.text %}
54
+ {%- endif %}
55
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
56
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
57
+ {%- elif message.role == "assistant" %}
58
+ {%- set reasoning_content = "" %}
59
+ {%- if message.reasoning_content is string %}
60
+ {%- set reasoning_content = message.reasoning_content %}
61
+ {%- else %}
62
+ {%- if '</think>' in content %}
63
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
64
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
65
+ {%- endif %}
66
+ {%- endif %}
67
+ {%- if loop.index0 > ns.last_query_index %}
68
+ {%- if loop.last or (not loop.last and reasoning_content) %}
69
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip("\n") + '\n</think>\n\n' + content.lstrip('\n') }}
70
+ {%- else %}
71
+ {{- '<|im_start|>' + message.role + '\n' + content }}
72
+ {%- endif %}
73
+ {%- else %}
74
+ {{- '<|im_start|>' + message.role + '\n' + content }}
75
+ {%- endif %}
76
+ {%- if message.tool_calls %}
77
+ {%- for tool_call in message.tool_calls %}
78
+ {%- if (loop.first and content) or (not loop.first) %}{{- '\n' }}{%- endif %}
79
+ {%- if tool_call.function %}
80
+ {%- set tool_call = tool_call.function %}
81
+ {%- endif %}
82
+ {{- '<tool_call>\n{"name": "' }}
83
+ {{- tool_call.name }}
84
+ {{- '", "arguments": ' }}
85
+ {%- if tool_call.arguments is string %}
86
+ {{- tool_call.arguments }}
87
+ {%- else %}
88
+ {{- tool_call.arguments | tojson }}
89
+ {%- endif %}
90
+ {{- '}\n</tool_call>' }}
91
+ {%- endfor %}
92
+ {%- endif %}
93
+ {{- '<|im_end|>\n' }}
94
+ {%- elif message.role == "tool" %}
95
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}{{- '<|im_start|>user' }}{%- endif %}
96
+ {{- '\n<tool_response>\n' }}
97
+ {{- content }}
98
+ {{- '\n</tool_response>' }}
99
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}{{- '<|im_end|>\n' }}{%- endif %}
100
+ {%- endif %}
101
+ {%- endfor %}
102
+ {%- if add_generation_prompt %}
103
+ {{- '<|im_start|>assistant\n' }}
104
+ {%- if enable_thinking is defined and enable_thinking is false %}{{- '<think>\n\n</think>\n\n' }}{%- endif %}
105
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,528 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3OmniMoeForConditionalGeneration"
4
+ ],
5
+ "assistant_token_id": 77091,
6
+ "code2wav_config": {
7
+ "attention_bias": false,
8
+ "attention_dropout": 0.0,
9
+ "codebook_size": 2048,
10
+ "decoder_dim": 1536,
11
+ "dtype": "bfloat16",
12
+ "hidden_act": "silu",
13
+ "hidden_size": 1024,
14
+ "intermediate_size": 3072,
15
+ "layer_scale_initial_scale": 0.01,
16
+ "max_position_embeddings": 8000,
17
+ "model_type": "",
18
+ "num_attention_heads": 16,
19
+ "num_hidden_layers": 8,
20
+ "num_key_value_heads": 16,
21
+ "num_quantizers": 16,
22
+ "rms_norm_eps": 1e-05,
23
+ "rope_theta": 10000,
24
+ "sliding_window": 72,
25
+ "upsample_rates": [
26
+ 8,
27
+ 5,
28
+ 4,
29
+ 3
30
+ ],
31
+ "upsampling_ratios": [
32
+ 2,
33
+ 2
34
+ ]
35
+ },
36
+ "dtype": "bfloat16",
37
+ "enable_audio_output": false,
38
+ "eos_token_id": 151645,
39
+ "hidden_size": 1024,
40
+ "im_end_token_id": 151645,
41
+ "im_start_token_id": 151644,
42
+ "keys_to_ignore_at_inference": [
43
+ "past_key_values",
44
+ "hidden_states",
45
+ "attention_mask"
46
+ ],
47
+ "model_type": "qwen3_omni_moe",
48
+ "pad_token_id": 151643,
49
+ "system_token_id": 8948,
50
+ "talker_config": {
51
+ "accept_hidden_layer": 18,
52
+ "audio_start_token_id": 151669,
53
+ "audio_token_id": 151646,
54
+ "code_predictor_config": {
55
+ "_name_or_path": "",
56
+ "add_cross_attention": false,
57
+ "architectures": null,
58
+ "attention_bias": false,
59
+ "attention_dropout": 0,
60
+ "bad_words_ids": null,
61
+ "begin_suppress_tokens": null,
62
+ "bos_token_id": null,
63
+ "chunk_size_feed_forward": 0,
64
+ "cross_attention_hidden_size": null,
65
+ "decoder_start_token_id": null,
66
+ "diversity_penalty": 0.0,
67
+ "do_sample": false,
68
+ "dtype": null,
69
+ "early_stopping": false,
70
+ "encoder_no_repeat_ngram_size": 0,
71
+ "eos_token_id": null,
72
+ "exponential_decay_length_penalty": null,
73
+ "finetuning_task": null,
74
+ "forced_bos_token_id": null,
75
+ "forced_eos_token_id": null,
76
+ "head_dim": 128,
77
+ "hidden_act": "silu",
78
+ "hidden_size": 1024,
79
+ "id2label": {
80
+ "0": "LABEL_0",
81
+ "1": "LABEL_1"
82
+ },
83
+ "initializer_range": 0.02,
84
+ "intermediate_size": 3072,
85
+ "is_decoder": false,
86
+ "is_encoder_decoder": false,
87
+ "label2id": {
88
+ "LABEL_0": 0,
89
+ "LABEL_1": 1
90
+ },
91
+ "layer_types": [
92
+ "full_attention",
93
+ "full_attention",
94
+ "full_attention",
95
+ "full_attention",
96
+ "full_attention"
97
+ ],
98
+ "length_penalty": 1.0,
99
+ "max_length": 20,
100
+ "max_position_embeddings": 32768,
101
+ "min_length": 0,
102
+ "model_type": "qwen3_omni_moe_talker_code_predictor",
103
+ "no_repeat_ngram_size": 0,
104
+ "num_attention_heads": 16,
105
+ "num_beam_groups": 1,
106
+ "num_beams": 1,
107
+ "num_code_groups": 32,
108
+ "num_hidden_layers": 5,
109
+ "num_key_value_heads": 8,
110
+ "num_return_sequences": 1,
111
+ "output_attentions": false,
112
+ "output_hidden_states": false,
113
+ "output_scores": false,
114
+ "pad_token_id": null,
115
+ "prefix": null,
116
+ "problem_type": null,
117
+ "pruned_heads": {},
118
+ "remove_invalid_values": false,
119
+ "repetition_penalty": 1.0,
120
+ "return_dict": true,
121
+ "return_dict_in_generate": false,
122
+ "rms_norm_eps": 1e-06,
123
+ "rope_scaling": null,
124
+ "rope_theta": 10000,
125
+ "sep_token_id": null,
126
+ "sliding_window": null,
127
+ "suppress_tokens": null,
128
+ "task_specific_params": null,
129
+ "temperature": 1.0,
130
+ "tie_encoder_decoder": false,
131
+ "tie_word_embeddings": false,
132
+ "tokenizer_class": null,
133
+ "top_k": 50,
134
+ "top_p": 1.0,
135
+ "torchscript": false,
136
+ "typical_p": 1.0,
137
+ "use_cache": true,
138
+ "vocab_size": 2048
139
+ },
140
+ "codec_bos_id": 4197,
141
+ "codec_eos_token_id": 4198,
142
+ "codec_nothink_id": 4203,
143
+ "codec_pad_id": 4196,
144
+ "codec_think_bos_id": 4204,
145
+ "codec_think_eos_id": 4205,
146
+ "dtype": "bfloat16",
147
+ "image_token_id": 151655,
148
+ "model_type": "",
149
+ "num_code_groups": 32,
150
+ "position_id_per_seconds": 25,
151
+ "speaker_id": null,
152
+ "text_config": {
153
+ "_name_or_path": "",
154
+ "add_cross_attention": false,
155
+ "architectures": null,
156
+ "attention_bias": false,
157
+ "attention_dropout": 0,
158
+ "bad_words_ids": null,
159
+ "begin_suppress_tokens": null,
160
+ "bos_token_id": null,
161
+ "chunk_size_feed_forward": 0,
162
+ "cross_attention_hidden_size": null,
163
+ "decoder_sparse_step": 1,
164
+ "decoder_start_token_id": null,
165
+ "diversity_penalty": 0.0,
166
+ "do_sample": false,
167
+ "dtype": "bfloat16",
168
+ "early_stopping": false,
169
+ "encoder_no_repeat_ngram_size": 0,
170
+ "eos_token_id": null,
171
+ "exponential_decay_length_penalty": null,
172
+ "finetuning_task": null,
173
+ "forced_bos_token_id": null,
174
+ "forced_eos_token_id": null,
175
+ "hidden_act": "silu",
176
+ "hidden_size": 1024,
177
+ "id2label": {
178
+ "0": "LABEL_0",
179
+ "1": "LABEL_1"
180
+ },
181
+ "initializer_range": 0.02,
182
+ "intermediate_size": 2048,
183
+ "is_decoder": false,
184
+ "is_encoder_decoder": false,
185
+ "label2id": {
186
+ "LABEL_0": 0,
187
+ "LABEL_1": 1
188
+ },
189
+ "length_penalty": 1.0,
190
+ "max_length": 20,
191
+ "max_position_embeddings": 32768,
192
+ "min_length": 0,
193
+ "mlp_only_layers": [],
194
+ "model_type": "qwen3_omni_moe_talker_text",
195
+ "moe_intermediate_size": 384,
196
+ "no_repeat_ngram_size": 0,
197
+ "norm_topk_prob": false,
198
+ "num_attention_heads": 16,
199
+ "num_beam_groups": 1,
200
+ "num_beams": 1,
201
+ "num_experts": 128,
202
+ "num_experts_per_tok": 8,
203
+ "num_hidden_layers": 20,
204
+ "num_key_value_heads": 2,
205
+ "num_return_sequences": 1,
206
+ "output_attentions": false,
207
+ "output_hidden_states": false,
208
+ "output_router_logits": false,
209
+ "output_scores": false,
210
+ "pad_token_id": 151643,
211
+ "prefix": null,
212
+ "problem_type": null,
213
+ "pruned_heads": {},
214
+ "remove_invalid_values": false,
215
+ "repetition_penalty": 1.0,
216
+ "return_dict": true,
217
+ "return_dict_in_generate": false,
218
+ "rms_norm_eps": 1e-06,
219
+ "rope_scaling": null,
220
+ "rope_theta": 10000,
221
+ "router_aux_loss_coef": 0.0,
222
+ "sep_token_id": null,
223
+ "sliding_window": null,
224
+ "suppress_tokens": null,
225
+ "task_specific_params": null,
226
+ "temperature": 1.0,
227
+ "tie_encoder_decoder": false,
228
+ "tie_word_embeddings": false,
229
+ "tokenizer_class": null,
230
+ "top_k": 50,
231
+ "top_p": 1.0,
232
+ "torchscript": false,
233
+ "typical_p": 1.0,
234
+ "use_cache": false,
235
+ "vocab_size": 3072
236
+ },
237
+ "thinker_hidden_size": 2048,
238
+ "video_token_id": 151656,
239
+ "vision_start_token_id": 151652
240
+ },
241
+ "thinker_config": {
242
+ "audio_config": {
243
+ "_name_or_path": "",
244
+ "activation_dropout": 0,
245
+ "activation_function": "gelu",
246
+ "add_cross_attention": false,
247
+ "architectures": null,
248
+ "attention_dropout": 0,
249
+ "bad_words_ids": null,
250
+ "begin_suppress_tokens": null,
251
+ "bos_token_id": null,
252
+ "chunk_size_feed_forward": 0,
253
+ "conv_chunksize": 500,
254
+ "cross_attention_hidden_size": null,
255
+ "d_model": 1280,
256
+ "decoder_start_token_id": null,
257
+ "diversity_penalty": 0.0,
258
+ "do_sample": false,
259
+ "downsample_hidden_size": 480,
260
+ "dropout": 0,
261
+ "dtype": "bfloat16",
262
+ "early_stopping": false,
263
+ "encoder_attention_heads": 20,
264
+ "encoder_ffn_dim": 5120,
265
+ "encoder_layers": 32,
266
+ "encoder_no_repeat_ngram_size": 0,
267
+ "eos_token_id": null,
268
+ "exponential_decay_length_penalty": null,
269
+ "finetuning_task": null,
270
+ "forced_bos_token_id": null,
271
+ "forced_eos_token_id": null,
272
+ "id2label": {
273
+ "0": "LABEL_0",
274
+ "1": "LABEL_1"
275
+ },
276
+ "initializer_range": 0.02,
277
+ "is_decoder": false,
278
+ "is_encoder_decoder": false,
279
+ "label2id": {
280
+ "LABEL_0": 0,
281
+ "LABEL_1": 1
282
+ },
283
+ "length_penalty": 1.0,
284
+ "max_length": 20,
285
+ "max_source_positions": 1500,
286
+ "min_length": 0,
287
+ "model_type": "qwen3_omni_moe_audio_encoder",
288
+ "n_window": 50,
289
+ "n_window_infer": 800,
290
+ "no_repeat_ngram_size": 0,
291
+ "num_beam_groups": 1,
292
+ "num_beams": 1,
293
+ "num_hidden_layers": 32,
294
+ "num_mel_bins": 128,
295
+ "num_return_sequences": 1,
296
+ "output_attentions": false,
297
+ "output_dim": 2048,
298
+ "output_hidden_states": false,
299
+ "output_scores": false,
300
+ "pad_token_id": null,
301
+ "prefix": null,
302
+ "problem_type": null,
303
+ "pruned_heads": {},
304
+ "remove_invalid_values": false,
305
+ "repetition_penalty": 1.0,
306
+ "return_dict": true,
307
+ "return_dict_in_generate": false,
308
+ "scale_embedding": false,
309
+ "sep_token_id": null,
310
+ "suppress_tokens": null,
311
+ "task_specific_params": null,
312
+ "temperature": 1.0,
313
+ "tf_legacy_loss": false,
314
+ "tie_encoder_decoder": false,
315
+ "tie_word_embeddings": true,
316
+ "tokenizer_class": null,
317
+ "top_k": 50,
318
+ "top_p": 1.0,
319
+ "torchscript": false,
320
+ "typical_p": 1.0,
321
+ "use_bfloat16": false
322
+ },
323
+ "audio_end_token_id": 151670,
324
+ "audio_start_token_id": 151669,
325
+ "dtype": "bfloat16",
326
+ "initializer_range": 0.02,
327
+ "model_type": "qwen3_omni_moe_thinker",
328
+ "position_id_per_seconds": 13,
329
+ "seconds_per_chunk": 2,
330
+ "text_config": {
331
+ "_name_or_path": "",
332
+ "add_cross_attention": false,
333
+ "architectures": null,
334
+ "attention_bias": false,
335
+ "attention_dropout": 0.0,
336
+ "bad_words_ids": null,
337
+ "begin_suppress_tokens": null,
338
+ "bos_token_id": null,
339
+ "chunk_size_feed_forward": 0,
340
+ "cross_attention_hidden_size": null,
341
+ "decoder_sparse_step": 1,
342
+ "decoder_start_token_id": null,
343
+ "diversity_penalty": 0.0,
344
+ "do_sample": false,
345
+ "dtype": "bfloat16",
346
+ "early_stopping": false,
347
+ "encoder_no_repeat_ngram_size": 0,
348
+ "eos_token_id": null,
349
+ "exponential_decay_length_penalty": null,
350
+ "finetuning_task": null,
351
+ "forced_bos_token_id": null,
352
+ "forced_eos_token_id": null,
353
+ "head_dim": 128,
354
+ "hidden_act": "silu",
355
+ "hidden_size": 2048,
356
+ "id2label": {
357
+ "0": "LABEL_0",
358
+ "1": "LABEL_1"
359
+ },
360
+ "initializer_range": 0.02,
361
+ "intermediate_size": 768,
362
+ "is_decoder": false,
363
+ "is_encoder_decoder": false,
364
+ "label2id": {
365
+ "LABEL_0": 0,
366
+ "LABEL_1": 1
367
+ },
368
+ "length_penalty": 1.0,
369
+ "max_length": 20,
370
+ "max_position_embeddings": 65536,
371
+ "min_length": 0,
372
+ "mlp_only_layers": [],
373
+ "model_type": "qwen3_omni_moe_text",
374
+ "moe_intermediate_size": 768,
375
+ "no_repeat_ngram_size": 0,
376
+ "norm_topk_prob": true,
377
+ "num_attention_heads": 32,
378
+ "num_beam_groups": 1,
379
+ "num_beams": 1,
380
+ "num_experts": 128,
381
+ "num_experts_per_tok": 8,
382
+ "num_hidden_layers": 48,
383
+ "num_key_value_heads": 4,
384
+ "num_return_sequences": 1,
385
+ "output_attentions": false,
386
+ "output_hidden_states": false,
387
+ "output_router_logits": false,
388
+ "output_scores": false,
389
+ "pad_token_id": 151643,
390
+ "prefix": null,
391
+ "problem_type": null,
392
+ "pruned_heads": {},
393
+ "remove_invalid_values": false,
394
+ "repetition_penalty": 1.0,
395
+ "return_dict": true,
396
+ "return_dict_in_generate": false,
397
+ "rms_norm_eps": 1e-06,
398
+ "rope_scaling": {
399
+ "interleaved": true,
400
+ "mrope_interleaved": true,
401
+ "mrope_section": [
402
+ 24,
403
+ 20,
404
+ 20
405
+ ],
406
+ "rope_type": "default",
407
+ "type": "default"
408
+ },
409
+ "rope_theta": 1000000,
410
+ "router_aux_loss_coef": 0.0,
411
+ "sep_token_id": null,
412
+ "shared_expert_intermediate_size": 0,
413
+ "sliding_window": null,
414
+ "suppress_tokens": null,
415
+ "task_specific_params": null,
416
+ "temperature": 1.0,
417
+ "tf_legacy_loss": false,
418
+ "tie_encoder_decoder": false,
419
+ "tie_word_embeddings": false,
420
+ "tokenizer_class": null,
421
+ "top_k": 50,
422
+ "top_p": 1.0,
423
+ "torchscript": false,
424
+ "typical_p": 1.0,
425
+ "use_bfloat16": false,
426
+ "use_cache": false,
427
+ "use_qk_norm": true,
428
+ "use_sliding_window": false,
429
+ "vocab_size": 152064
430
+ },
431
+ "user_token_id": 872,
432
+ "vision_config": {
433
+ "_name_or_path": "",
434
+ "add_cross_attention": false,
435
+ "apply_vit_abs_pos_embed": true,
436
+ "architectures": null,
437
+ "bad_words_ids": null,
438
+ "begin_suppress_tokens": null,
439
+ "bos_token_id": null,
440
+ "chunk_size_feed_forward": 0,
441
+ "cross_attention_hidden_size": null,
442
+ "decoder_start_token_id": null,
443
+ "deepstack_visual_indexes": [
444
+ 8,
445
+ 16,
446
+ 24
447
+ ],
448
+ "depth": 27,
449
+ "diversity_penalty": 0.0,
450
+ "do_sample": false,
451
+ "dtype": "bfloat16",
452
+ "early_stopping": false,
453
+ "encoder_no_repeat_ngram_size": 0,
454
+ "eos_token_id": null,
455
+ "exponential_decay_length_penalty": null,
456
+ "finetuning_task": null,
457
+ "forced_bos_token_id": null,
458
+ "forced_eos_token_id": null,
459
+ "hidden_act": "gelu_pytorch_tanh",
460
+ "hidden_size": 1152,
461
+ "id2label": {
462
+ "0": "LABEL_0",
463
+ "1": "LABEL_1"
464
+ },
465
+ "image_size": 768,
466
+ "in_channels": 3,
467
+ "in_chans": 3,
468
+ "initializer_range": 0.02,
469
+ "intermediate_size": 4304,
470
+ "is_decoder": false,
471
+ "is_encoder_decoder": false,
472
+ "label2id": {
473
+ "LABEL_0": 0,
474
+ "LABEL_1": 1
475
+ },
476
+ "length_penalty": 1.0,
477
+ "max_length": 20,
478
+ "min_length": 0,
479
+ "model_type": "qwen3_omni_moe_vision_encoder",
480
+ "no_repeat_ngram_size": 0,
481
+ "num_beam_groups": 1,
482
+ "num_beams": 1,
483
+ "num_heads": 16,
484
+ "num_position_embeddings": 2304,
485
+ "num_return_sequences": 1,
486
+ "out_hidden_size": 2048,
487
+ "output_attentions": false,
488
+ "output_hidden_states": false,
489
+ "output_scores": false,
490
+ "pad_token_id": null,
491
+ "patch_size": 16,
492
+ "prefix": null,
493
+ "problem_type": null,
494
+ "pruned_heads": {},
495
+ "remove_invalid_values": false,
496
+ "repetition_penalty": 1.0,
497
+ "return_dict": true,
498
+ "return_dict_in_generate": false,
499
+ "sep_token_id": null,
500
+ "spatial_merge_size": 2,
501
+ "spatial_patch_size": 16,
502
+ "suppress_tokens": null,
503
+ "task_specific_params": null,
504
+ "temperature": 1.0,
505
+ "temporal_patch_size": 2,
506
+ "tf_legacy_loss": false,
507
+ "tie_encoder_decoder": false,
508
+ "tie_word_embeddings": true,
509
+ "tokenizer_class": null,
510
+ "tokens_per_second": 2,
511
+ "top_k": 50,
512
+ "top_p": 1.0,
513
+ "torchscript": false,
514
+ "typical_p": 1.0,
515
+ "use_bfloat16": false
516
+ },
517
+ "vision_end_token_id": 151653,
518
+ "vision_start_token_id": 151652,
519
+ "audio_token_id": 151675,
520
+ "image_token_id": 151655,
521
+ "video_token_id": 151656
522
+ },
523
+ "transformers_version": "4.57.0.dev0",
524
+ "tts_bos_token_id": 151672,
525
+ "tts_eos_token_id": 151673,
526
+ "tts_pad_token_id": 151671,
527
+ "user_token_id": 872
528
+ }
generation_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "eos_token_id": [
3
+ 151645,
4
+ 151643
5
+ ],
6
+ "max_new_tokens": 32768,
7
+ "transformers_version": "4.57.0.dev0"
8
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a61f9f9993e4dc253adddc5bab30e091d16697deaff3a8c8c32bfab693530e0
3
+ size 4997899632
model-00002-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16f280659dd5fa6aa5c680d25b8ac8ab2b1f5a34032b139efff58b39b064619a
3
+ size 4997754216
model-00003-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30fe2cf9da3c163a60ab59e7a4645aec952bea5bf77d444999a7af0efa4e381d
3
+ size 4997754216
model-00004-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cdad401f119a96af853ac574cc6c4704a1c38c8355a29729795789f9042783d
3
+ size 4997755648
model-00005-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4ef2f2449a7ac5bcc0e557d9e66387ce81c18a23ba61b9536a3fea57be7d700
3
+ size 4997755792
model-00006-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88df851f05f49bd0245525180e269456b9233d932a0fc197723b0fed96b23f16
3
+ size 4997755792
model-00007-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d3386341ad28f7d7259b0df1937f7c17d02030c4137c5b15fde4fc4b34997e4
3
+ size 4997755792
model-00008-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a4b92f477a380454611d4e1ffe1866b69713bcda78a0da1508bdfd6bf9cde0b
3
+ size 4997755792
model-00009-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a6864550fec0cc51baa1655927f8d4d8680d902a966e3f1eecd3e89964d1447
3
+ size 4997755792
model-00010-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6668a94fab0b2ea9d4fcdc103c118744871e1045fb7122d0bdd0d89bdf955afc
3
+ size 4997755792
model-00011-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e773787f068201b302a79e1259db3bf9944b7674bf89ecb6b09762b47b014603
3
+ size 4997755792
model-00012-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31c3bdfdc7c039fffd0143c51f61a92b057f2767c43dc3eb8ad4fe319f2d18ee
3
+ size 4997755792
model-00013-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61a228dc948d390f9b6679f9e17e05bc5dba70fc03232952bf58b4b3570c0920
3
+ size 3467789632
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
preprocessor_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dither": 0.0,
3
+ "feature_extractor_type": "WhisperFeatureExtractor",
4
+ "feature_size": 128,
5
+ "hop_length": 160,
6
+ "image_mean": [
7
+ 0.5,
8
+ 0.5,
9
+ 0.5
10
+ ],
11
+ "image_processor_type": "Qwen2VLImageProcessor",
12
+ "image_std": [
13
+ 0.5,
14
+ 0.5,
15
+ 0.5
16
+ ],
17
+ "max_pixels": 12845056,
18
+ "merge_size": 2,
19
+ "min_pixels": 3136,
20
+ "n_fft": 400,
21
+ "n_samples": 4800000,
22
+ "nb_max_frames": 30000,
23
+ "padding_side": "right",
24
+ "padding_value": 0.0,
25
+ "patch_size": 16,
26
+ "processor_class": "Qwen3OmniMoeProcessor",
27
+ "return_attention_mask": true,
28
+ "sampling_rate": 16000,
29
+ "temporal_patch_size": 2
30
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|audio_start|>",
17
+ "<|audio_end|>",
18
+ "<tts_pad>",
19
+ "<tts_text_bos>",
20
+ "<tts_text_bos_single>",
21
+ "<|audio_pad|>"
22
+ ],
23
+ "audio_bos_token": "<|audio_start|>",
24
+ "audio_eos_token": "<|audio_end|>",
25
+ "audio_token": "<|audio_pad|>",
26
+ "eos_token": {
27
+ "content": "<|im_end|>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ },
33
+ "image_token": "<|image_pad|>",
34
+ "pad_token": {
35
+ "content": "<|endoftext|>",
36
+ "lstrip": false,
37
+ "normalized": false,
38
+ "rstrip": false,
39
+ "single_word": false
40
+ },
41
+ "video_token": "<|video_pad|>",
42
+ "vision_bos_token": "<|vision_start|>",
43
+ "vision_eos_token": "<|vision_end|>"
44
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09267689b8362020b9763b65dd5be7e086b31e28d72e02837a9e781de9a91bc7
3
+ size 11423986
tokenizer_config.json ADDED
@@ -0,0 +1,317 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "151669": {
214
+ "content": "<|audio_start|>",
215
+ "lstrip": false,
216
+ "normalized": false,
217
+ "rstrip": false,
218
+ "single_word": false,
219
+ "special": true
220
+ },
221
+ "151670": {
222
+ "content": "<|audio_end|>",
223
+ "lstrip": false,
224
+ "normalized": false,
225
+ "rstrip": false,
226
+ "single_word": false,
227
+ "special": true
228
+ },
229
+ "151671": {
230
+ "content": "<tts_pad>",
231
+ "lstrip": false,
232
+ "normalized": false,
233
+ "rstrip": false,
234
+ "single_word": false,
235
+ "special": true
236
+ },
237
+ "151672": {
238
+ "content": "<tts_text_bos>",
239
+ "lstrip": false,
240
+ "normalized": false,
241
+ "rstrip": false,
242
+ "single_word": false,
243
+ "special": true
244
+ },
245
+ "151673": {
246
+ "content": "<tts_text_eod>",
247
+ "lstrip": false,
248
+ "normalized": false,
249
+ "rstrip": false,
250
+ "single_word": false,
251
+ "special": true
252
+ },
253
+ "151674": {
254
+ "content": "<tts_text_bos_single>",
255
+ "lstrip": false,
256
+ "normalized": false,
257
+ "rstrip": false,
258
+ "single_word": false,
259
+ "special": true
260
+ },
261
+ "151675": {
262
+ "content": "<|audio_pad|>",
263
+ "lstrip": false,
264
+ "normalized": false,
265
+ "rstrip": false,
266
+ "single_word": false,
267
+ "special": true
268
+ }
269
+ },
270
+ "additional_special_tokens": [
271
+ "<|im_start|>",
272
+ "<|im_end|>",
273
+ "<|object_ref_start|>",
274
+ "<|object_ref_end|>",
275
+ "<|box_start|>",
276
+ "<|box_end|>",
277
+ "<|quad_start|>",
278
+ "<|quad_end|>",
279
+ "<|vision_start|>",
280
+ "<|vision_end|>",
281
+ "<|vision_pad|>",
282
+ "<|image_pad|>",
283
+ "<|video_pad|>",
284
+ "<|audio_start|>",
285
+ "<|audio_end|>",
286
+ "<tts_pad>",
287
+ "<tts_text_bos>",
288
+ "<tts_text_bos_single>",
289
+ "<|audio_pad|>"
290
+ ],
291
+ "audio_bos_token": "<|audio_start|>",
292
+ "audio_eos_token": "<|audio_end|>",
293
+ "audio_token": "<|audio_pad|>",
294
+ "bos_token": null,
295
+ "clean_up_tokenization_spaces": false,
296
+ "eos_token": "<|im_end|>",
297
+ "errors": "replace",
298
+ "extra_special_tokens": {
299
+ "audio_bos_token": "<|audio_start|>",
300
+ "audio_eos_token": "<|audio_end|>",
301
+ "audio_token": "<|audio_pad|>",
302
+ "image_token": "<|image_pad|>",
303
+ "video_token": "<|video_pad|>",
304
+ "vision_bos_token": "<|vision_start|>",
305
+ "vision_eos_token": "<|vision_end|>"
306
+ },
307
+ "image_token": "<|image_pad|>",
308
+ "model_max_length": 131072,
309
+ "pad_token": "<|endoftext|>",
310
+ "processor_class": "Qwen3OmniMoeProcessor",
311
+ "split_special_tokens": false,
312
+ "tokenizer_class": "Qwen2Tokenizer",
313
+ "unk_token": null,
314
+ "video_token": "<|video_pad|>",
315
+ "vision_bos_token": "<|vision_start|>",
316
+ "vision_eos_token": "<|vision_end|>"
317
+ }
trainer_state.json ADDED
@@ -0,0 +1,1354 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 200.0,
7
+ "global_step": 1641,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.0006093845216331506,
14
+ "grad_norm": 7.29836574807662,
15
+ "learning_rate": 2.0000000000000002e-07,
16
+ "loss": 0.6879574656486511,
17
+ "step": 1,
18
+ "token_acc": 0.8069400259219983
19
+ },
20
+ {
21
+ "epoch": 0.006093845216331505,
22
+ "grad_norm": 3.9069477397555814,
23
+ "learning_rate": 2.0000000000000003e-06,
24
+ "loss": 0.6863329675462511,
25
+ "step": 10,
26
+ "token_acc": 0.8062499341798103
27
+ },
28
+ {
29
+ "epoch": 0.01218769043266301,
30
+ "grad_norm": 1.6499482285217686,
31
+ "learning_rate": 4.000000000000001e-06,
32
+ "loss": 0.5632639408111573,
33
+ "step": 20,
34
+ "token_acc": 0.832315593221387
35
+ },
36
+ {
37
+ "epoch": 0.018281535648994516,
38
+ "grad_norm": 1.3391083762662725,
39
+ "learning_rate": 6e-06,
40
+ "loss": 0.4509421348571777,
41
+ "step": 30,
42
+ "token_acc": 0.859350495238436
43
+ },
44
+ {
45
+ "epoch": 0.02437538086532602,
46
+ "grad_norm": 1.0720631754188148,
47
+ "learning_rate": 8.000000000000001e-06,
48
+ "loss": 0.4215505599975586,
49
+ "step": 40,
50
+ "token_acc": 0.8660933700604836
51
+ },
52
+ {
53
+ "epoch": 0.030469226081657527,
54
+ "grad_norm": 1.300502159057601,
55
+ "learning_rate": 1e-05,
56
+ "loss": 0.3916645526885986,
57
+ "step": 50,
58
+ "token_acc": 0.8749446762027628
59
+ },
60
+ {
61
+ "epoch": 0.03656307129798903,
62
+ "grad_norm": 1.2222066565570464,
63
+ "learning_rate": 9.999025267866269e-06,
64
+ "loss": 0.37738680839538574,
65
+ "step": 60,
66
+ "token_acc": 0.8773714810281518
67
+ },
68
+ {
69
+ "epoch": 0.042656916514320534,
70
+ "grad_norm": 1.1003373829333203,
71
+ "learning_rate": 9.996101451506166e-06,
72
+ "loss": 0.36339468955993653,
73
+ "step": 70,
74
+ "token_acc": 0.8811438359423324
75
+ },
76
+ {
77
+ "epoch": 0.04875076173065204,
78
+ "grad_norm": 0.9139572833064542,
79
+ "learning_rate": 9.991229690894796e-06,
80
+ "loss": 0.35523133277893065,
81
+ "step": 80,
82
+ "token_acc": 0.8833139693331612
83
+ },
84
+ {
85
+ "epoch": 0.054844606946983544,
86
+ "grad_norm": 1.0649357265795398,
87
+ "learning_rate": 9.984411885496807e-06,
88
+ "loss": 0.36147160530090333,
89
+ "step": 90,
90
+ "token_acc": 0.8827829089555647
91
+ },
92
+ {
93
+ "epoch": 0.06093845216331505,
94
+ "grad_norm": 1.0474850371515747,
95
+ "learning_rate": 9.975650693525798e-06,
96
+ "loss": 0.35729637145996096,
97
+ "step": 100,
98
+ "token_acc": 0.8842431348706591
99
+ },
100
+ {
101
+ "epoch": 0.06703229737964655,
102
+ "grad_norm": 1.0275221386997506,
103
+ "learning_rate": 9.964949530907907e-06,
104
+ "loss": 0.3474123477935791,
105
+ "step": 110,
106
+ "token_acc": 0.8856792866706549
107
+ },
108
+ {
109
+ "epoch": 0.07312614259597806,
110
+ "grad_norm": 1.2902357608957626,
111
+ "learning_rate": 9.952312569949963e-06,
112
+ "loss": 0.3479644775390625,
113
+ "step": 120,
114
+ "token_acc": 0.8849104859335039
115
+ },
116
+ {
117
+ "epoch": 0.07921998781230957,
118
+ "grad_norm": 1.3451160019315398,
119
+ "learning_rate": 9.937744737712734e-06,
120
+ "loss": 0.3466474533081055,
121
+ "step": 130,
122
+ "token_acc": 0.8861058585962355
123
+ },
124
+ {
125
+ "epoch": 0.08531383302864107,
126
+ "grad_norm": 1.0790851469433436,
127
+ "learning_rate": 9.921251714089898e-06,
128
+ "loss": 0.34614810943603513,
129
+ "step": 140,
130
+ "token_acc": 0.8854811515034624
131
+ },
132
+ {
133
+ "epoch": 0.09140767824497258,
134
+ "grad_norm": 1.0038008030386316,
135
+ "learning_rate": 9.9028399295935e-06,
136
+ "loss": 0.3384540557861328,
137
+ "step": 150,
138
+ "token_acc": 0.8879619162858826
139
+ },
140
+ {
141
+ "epoch": 0.09750152346130408,
142
+ "grad_norm": 1.027349218243697,
143
+ "learning_rate": 9.882516562846735e-06,
144
+ "loss": 0.33826944828033445,
145
+ "step": 160,
146
+ "token_acc": 0.8878969612617404
147
+ },
148
+ {
149
+ "epoch": 0.1035953686776356,
150
+ "grad_norm": 1.0944757240532788,
151
+ "learning_rate": 9.860289537785058e-06,
152
+ "loss": 0.3368839740753174,
153
+ "step": 170,
154
+ "token_acc": 0.8883107398785887
155
+ },
156
+ {
157
+ "epoch": 0.10968921389396709,
158
+ "grad_norm": 0.9672890666466603,
159
+ "learning_rate": 9.83616752056669e-06,
160
+ "loss": 0.3455761194229126,
161
+ "step": 180,
162
+ "token_acc": 0.8851188684923262
163
+ },
164
+ {
165
+ "epoch": 0.1157830591102986,
166
+ "grad_norm": 0.8886431201198384,
167
+ "learning_rate": 9.810159916193763e-06,
168
+ "loss": 0.32952630519866943,
169
+ "step": 190,
170
+ "token_acc": 0.8905697047489018
171
+ },
172
+ {
173
+ "epoch": 0.1218769043266301,
174
+ "grad_norm": 0.9444272816074001,
175
+ "learning_rate": 9.782276864845351e-06,
176
+ "loss": 0.33125505447387693,
177
+ "step": 200,
178
+ "token_acc": 0.8897695109589824
179
+ },
180
+ {
181
+ "epoch": 0.12797074954296161,
182
+ "grad_norm": 1.0093535144294836,
183
+ "learning_rate": 9.752529237923914e-06,
184
+ "loss": 0.3311288833618164,
185
+ "step": 210,
186
+ "token_acc": 0.8905364268561583
187
+ },
188
+ {
189
+ "epoch": 0.1340645947592931,
190
+ "grad_norm": 1.1532189931201864,
191
+ "learning_rate": 9.720928633816596e-06,
192
+ "loss": 0.3244771003723145,
193
+ "step": 220,
194
+ "token_acc": 0.8915392526998382
195
+ },
196
+ {
197
+ "epoch": 0.14015843997562463,
198
+ "grad_norm": 0.9598378464215558,
199
+ "learning_rate": 9.687487373373103e-06,
200
+ "loss": 0.3279410362243652,
201
+ "step": 230,
202
+ "token_acc": 0.8906910502215741
203
+ },
204
+ {
205
+ "epoch": 0.14625228519195613,
206
+ "grad_norm": 0.9540187948014937,
207
+ "learning_rate": 9.652218495101894e-06,
208
+ "loss": 0.3265339136123657,
209
+ "step": 240,
210
+ "token_acc": 0.8910028614336833
211
+ },
212
+ {
213
+ "epoch": 0.15234613040828762,
214
+ "grad_norm": 1.0470189428654273,
215
+ "learning_rate": 9.61513575008656e-06,
216
+ "loss": 0.33319640159606934,
217
+ "step": 250,
218
+ "token_acc": 0.8888186484938951
219
+ },
220
+ {
221
+ "epoch": 0.15843997562461914,
222
+ "grad_norm": 0.9615038649371879,
223
+ "learning_rate": 9.576253596624367e-06,
224
+ "loss": 0.32928056716918946,
225
+ "step": 260,
226
+ "token_acc": 0.8897860391237342
227
+ },
228
+ {
229
+ "epoch": 0.16453382084095064,
230
+ "grad_norm": 1.09800599181465,
231
+ "learning_rate": 9.53558719458908e-06,
232
+ "loss": 0.32557024955749514,
233
+ "step": 270,
234
+ "token_acc": 0.8914715787293208
235
+ },
236
+ {
237
+ "epoch": 0.17062766605728213,
238
+ "grad_norm": 1.0743262974854428,
239
+ "learning_rate": 9.49315239952023e-06,
240
+ "loss": 0.32053494453430176,
241
+ "step": 280,
242
+ "token_acc": 0.8929576222604401
243
+ },
244
+ {
245
+ "epoch": 0.17672151127361366,
246
+ "grad_norm": 1.060412117175443,
247
+ "learning_rate": 9.448965756441154e-06,
248
+ "loss": 0.3243874073028564,
249
+ "step": 290,
250
+ "token_acc": 0.8921667614562232
251
+ },
252
+ {
253
+ "epoch": 0.18281535648994515,
254
+ "grad_norm": 0.9594753815838422,
255
+ "learning_rate": 9.403044493408205e-06,
256
+ "loss": 0.3233642578125,
257
+ "step": 300,
258
+ "token_acc": 0.891047436596846
259
+ },
260
+ {
261
+ "epoch": 0.18890920170627665,
262
+ "grad_norm": 0.9403281436285019,
263
+ "learning_rate": 9.355406514793667e-06,
264
+ "loss": 0.31829214096069336,
265
+ "step": 310,
266
+ "token_acc": 0.8938932609968795
267
+ },
268
+ {
269
+ "epoch": 0.19500304692260817,
270
+ "grad_norm": 0.9536634938537397,
271
+ "learning_rate": 9.306070394304955e-06,
272
+ "loss": 0.3202193260192871,
273
+ "step": 320,
274
+ "token_acc": 0.8931520198180799
275
+ },
276
+ {
277
+ "epoch": 0.20109689213893966,
278
+ "grad_norm": 1.119379822493263,
279
+ "learning_rate": 9.255055367742868e-06,
280
+ "loss": 0.3239091396331787,
281
+ "step": 330,
282
+ "token_acc": 0.8923521607278241
283
+ },
284
+ {
285
+ "epoch": 0.2071907373552712,
286
+ "grad_norm": 1.0373576096304553,
287
+ "learning_rate": 9.202381325501683e-06,
288
+ "loss": 0.31700589656829836,
289
+ "step": 340,
290
+ "token_acc": 0.8944783352337514
291
+ },
292
+ {
293
+ "epoch": 0.21328458257160268,
294
+ "grad_norm": 1.0632563437214946,
295
+ "learning_rate": 9.148068804814032e-06,
296
+ "loss": 0.31794281005859376,
297
+ "step": 350,
298
+ "token_acc": 0.8930956012903548
299
+ },
300
+ {
301
+ "epoch": 0.21937842778793418,
302
+ "grad_norm": 1.0242050960110551,
303
+ "learning_rate": 9.092138981743588e-06,
304
+ "loss": 0.3202871799468994,
305
+ "step": 360,
306
+ "token_acc": 0.8935469022061816
307
+ },
308
+ {
309
+ "epoch": 0.2254722730042657,
310
+ "grad_norm": 0.8239921572139911,
311
+ "learning_rate": 9.034613662928665e-06,
312
+ "loss": 0.3142183542251587,
313
+ "step": 370,
314
+ "token_acc": 0.8951745718050066
315
+ },
316
+ {
317
+ "epoch": 0.2315661182205972,
318
+ "grad_norm": 0.9147511550012487,
319
+ "learning_rate": 8.975515277079961e-06,
320
+ "loss": 0.3087962865829468,
321
+ "step": 380,
322
+ "token_acc": 0.8958298740422705
323
+ },
324
+ {
325
+ "epoch": 0.2376599634369287,
326
+ "grad_norm": 0.8794833827260621,
327
+ "learning_rate": 8.91486686623577e-06,
328
+ "loss": 0.3132402658462524,
329
+ "step": 390,
330
+ "token_acc": 0.8948639533970186
331
+ },
332
+ {
333
+ "epoch": 0.2437538086532602,
334
+ "grad_norm": 1.0069623307664877,
335
+ "learning_rate": 8.85269207677806e-06,
336
+ "loss": 0.31006736755371095,
337
+ "step": 400,
338
+ "token_acc": 0.8951928192311975
339
+ },
340
+ {
341
+ "epoch": 0.2498476538695917,
342
+ "grad_norm": 0.9808015041824597,
343
+ "learning_rate": 8.789015150212907e-06,
344
+ "loss": 0.30683579444885256,
345
+ "step": 410,
346
+ "token_acc": 0.8967586393232839
347
+ },
348
+ {
349
+ "epoch": 0.25594149908592323,
350
+ "grad_norm": 0.9081237770188716,
351
+ "learning_rate": 8.72386091371891e-06,
352
+ "loss": 0.3061988830566406,
353
+ "step": 420,
354
+ "token_acc": 0.8959391589507399
355
+ },
356
+ {
357
+ "epoch": 0.2620353443022547,
358
+ "grad_norm": 1.04219527083527,
359
+ "learning_rate": 8.657254770467252e-06,
360
+ "loss": 0.3091754674911499,
361
+ "step": 430,
362
+ "token_acc": 0.8954508616603208
363
+ },
364
+ {
365
+ "epoch": 0.2681291895185862,
366
+ "grad_norm": 1.0065133793639498,
367
+ "learning_rate": 8.58922268971719e-06,
368
+ "loss": 0.30993127822875977,
369
+ "step": 440,
370
+ "token_acc": 0.895664191270881
371
+ },
372
+ {
373
+ "epoch": 0.2742230347349177,
374
+ "grad_norm": 0.9080797671925362,
375
+ "learning_rate": 8.51979119669081e-06,
376
+ "loss": 0.31555490493774413,
377
+ "step": 450,
378
+ "token_acc": 0.8941405988077487
379
+ },
380
+ {
381
+ "epoch": 0.28031687995124926,
382
+ "grad_norm": 0.9841139463866474,
383
+ "learning_rate": 8.448987362231054e-06,
384
+ "loss": 0.30534186363220217,
385
+ "step": 460,
386
+ "token_acc": 0.8968707588256722
387
+ },
388
+ {
389
+ "epoch": 0.28641072516758076,
390
+ "grad_norm": 0.9677823622528902,
391
+ "learning_rate": 8.376838792246978e-06,
392
+ "loss": 0.3050978422164917,
393
+ "step": 470,
394
+ "token_acc": 0.8967596979985816
395
+ },
396
+ {
397
+ "epoch": 0.29250457038391225,
398
+ "grad_norm": 0.8117589456035273,
399
+ "learning_rate": 8.303373616950408e-06,
400
+ "loss": 0.3012993335723877,
401
+ "step": 480,
402
+ "token_acc": 0.898916481794861
403
+ },
404
+ {
405
+ "epoch": 0.29859841560024375,
406
+ "grad_norm": 0.8967761049487325,
407
+ "learning_rate": 8.228620479888172e-06,
408
+ "loss": 0.2984607219696045,
409
+ "step": 490,
410
+ "token_acc": 0.8986162002706045
411
+ },
412
+ {
413
+ "epoch": 0.30469226081657524,
414
+ "grad_norm": 0.7934114582439064,
415
+ "learning_rate": 8.152608526774188e-06,
416
+ "loss": 0.3049586057662964,
417
+ "step": 500,
418
+ "token_acc": 0.8968112886022876
419
+ },
420
+ {
421
+ "epoch": 0.31078610603290674,
422
+ "grad_norm": 0.825580955342704,
423
+ "learning_rate": 8.075367394125755e-06,
424
+ "loss": 0.30215206146240237,
425
+ "step": 510,
426
+ "token_acc": 0.8978885397098497
427
+ },
428
+ {
429
+ "epoch": 0.3168799512492383,
430
+ "grad_norm": 0.8296290441677941,
431
+ "learning_rate": 7.996927197708486e-06,
432
+ "loss": 0.3088541507720947,
433
+ "step": 520,
434
+ "token_acc": 0.8963321107035679
435
+ },
436
+ {
437
+ "epoch": 0.3229737964655698,
438
+ "grad_norm": 0.8755135202445912,
439
+ "learning_rate": 7.917318520794395e-06,
440
+ "loss": 0.30083427429199217,
441
+ "step": 530,
442
+ "token_acc": 0.899119480167394
443
+ },
444
+ {
445
+ "epoch": 0.3290676416819013,
446
+ "grad_norm": 0.9101072984644949,
447
+ "learning_rate": 7.836572402237683e-06,
448
+ "loss": 0.3058091878890991,
449
+ "step": 540,
450
+ "token_acc": 0.896643718272106
451
+ },
452
+ {
453
+ "epoch": 0.3351614868982328,
454
+ "grad_norm": 0.9771967807763615,
455
+ "learning_rate": 7.754720324372924e-06,
456
+ "loss": 0.30214991569519045,
457
+ "step": 550,
458
+ "token_acc": 0.8980588639486945
459
+ },
460
+ {
461
+ "epoch": 0.34125533211456427,
462
+ "grad_norm": 1.0026225580388461,
463
+ "learning_rate": 7.67179420074032e-06,
464
+ "loss": 0.3041478395462036,
465
+ "step": 560,
466
+ "token_acc": 0.8965942594865093
467
+ },
468
+ {
469
+ "epoch": 0.3473491773308958,
470
+ "grad_norm": 0.9388665918318329,
471
+ "learning_rate": 7.587826363642845e-06,
472
+ "loss": 0.30187268257141114,
473
+ "step": 570,
474
+ "token_acc": 0.8980740928392202
475
+ },
476
+ {
477
+ "epoch": 0.3534430225472273,
478
+ "grad_norm": 0.9610197211126468,
479
+ "learning_rate": 7.502849551540106e-06,
480
+ "loss": 0.2962314605712891,
481
+ "step": 580,
482
+ "token_acc": 0.8994921135841125
483
+ },
484
+ {
485
+ "epoch": 0.3595368677635588,
486
+ "grad_norm": 0.832216076371822,
487
+ "learning_rate": 7.4168968962838524e-06,
488
+ "loss": 0.2948365926742554,
489
+ "step": 590,
490
+ "token_acc": 0.8995369426034115
491
+ },
492
+ {
493
+ "epoch": 0.3656307129798903,
494
+ "grad_norm": 0.9377431212404606,
495
+ "learning_rate": 7.330001910200111e-06,
496
+ "loss": 0.29007649421691895,
497
+ "step": 600,
498
+ "token_acc": 0.9010131261293394
499
+ },
500
+ {
501
+ "epoch": 0.3717245581962218,
502
+ "grad_norm": 0.8726611852126548,
503
+ "learning_rate": 7.242198473022958e-06,
504
+ "loss": 0.2962885856628418,
505
+ "step": 610,
506
+ "token_acc": 0.9000062303355035
507
+ },
508
+ {
509
+ "epoch": 0.3778184034125533,
510
+ "grad_norm": 0.9153282793617801,
511
+ "learning_rate": 7.15352081868506e-06,
512
+ "loss": 0.30144367218017576,
513
+ "step": 620,
514
+ "token_acc": 0.8989331770222744
515
+ },
516
+ {
517
+ "epoch": 0.38391224862888484,
518
+ "grad_norm": 0.993391313101372,
519
+ "learning_rate": 7.0640035219701085e-06,
520
+ "loss": 0.301465106010437,
521
+ "step": 630,
522
+ "token_acc": 0.8974685325619576
523
+ },
524
+ {
525
+ "epoch": 0.39000609384521634,
526
+ "grad_norm": 1.0046408788594328,
527
+ "learning_rate": 6.973681485032359e-06,
528
+ "loss": 0.2955395460128784,
529
+ "step": 640,
530
+ "token_acc": 0.8996091046695718
531
+ },
532
+ {
533
+ "epoch": 0.39609993906154783,
534
+ "grad_norm": 0.822820271911727,
535
+ "learning_rate": 6.8825899237885215e-06,
536
+ "loss": 0.2931050300598145,
537
+ "step": 650,
538
+ "token_acc": 0.901203589259751
539
+ },
540
+ {
541
+ "epoch": 0.40219378427787933,
542
+ "grad_norm": 0.8482496681393756,
543
+ "learning_rate": 6.7907643541873446e-06,
544
+ "loss": 0.29596996307373047,
545
+ "step": 660,
546
+ "token_acc": 0.8996866207121305
547
+ },
548
+ {
549
+ "epoch": 0.4082876294942108,
550
+ "grad_norm": 0.8775663994372018,
551
+ "learning_rate": 6.698240578362179e-06,
552
+ "loss": 0.29141840934753416,
553
+ "step": 670,
554
+ "token_acc": 0.9003262426482238
555
+ },
556
+ {
557
+ "epoch": 0.4143814747105424,
558
+ "grad_norm": 0.984669646190565,
559
+ "learning_rate": 6.6050546706719984e-06,
560
+ "loss": 0.29290521144866943,
561
+ "step": 680,
562
+ "token_acc": 0.9014104043327218
563
+ },
564
+ {
565
+ "epoch": 0.42047531992687387,
566
+ "grad_norm": 0.8784418931211103,
567
+ "learning_rate": 6.511242963636257e-06,
568
+ "loss": 0.29056534767150877,
569
+ "step": 690,
570
+ "token_acc": 0.9016642094853267
571
+ },
572
+ {
573
+ "epoch": 0.42656916514320536,
574
+ "grad_norm": 1.0470361792821843,
575
+ "learning_rate": 6.416842033769106e-06,
576
+ "loss": 0.2978256940841675,
577
+ "step": 700,
578
+ "token_acc": 0.8997917186822428
579
+ },
580
+ {
581
+ "epoch": 0.43266301035953686,
582
+ "grad_norm": 0.9613791001197699,
583
+ "learning_rate": 6.321888687318457e-06,
584
+ "loss": 0.2870903253555298,
585
+ "step": 710,
586
+ "token_acc": 0.903113691147251
587
+ },
588
+ {
589
+ "epoch": 0.43875685557586835,
590
+ "grad_norm": 0.8405716630112535,
591
+ "learning_rate": 6.2264199459155105e-06,
592
+ "loss": 0.29581589698791505,
593
+ "step": 720,
594
+ "token_acc": 0.9003898532372131
595
+ },
596
+ {
597
+ "epoch": 0.4448507007921999,
598
+ "grad_norm": 0.9817927857442479,
599
+ "learning_rate": 6.130473032140272e-06,
600
+ "loss": 0.29129691123962403,
601
+ "step": 730,
602
+ "token_acc": 0.9009383225625913
603
+ },
604
+ {
605
+ "epoch": 0.4509445460085314,
606
+ "grad_norm": 0.9100915684781385,
607
+ "learning_rate": 6.0340853550087345e-06,
608
+ "loss": 0.29650187492370605,
609
+ "step": 740,
610
+ "token_acc": 0.9002656385758284
611
+ },
612
+ {
613
+ "epoch": 0.4570383912248629,
614
+ "grad_norm": 0.9238619342391209,
615
+ "learning_rate": 5.937294495387377e-06,
616
+ "loss": 0.2921621561050415,
617
+ "step": 750,
618
+ "token_acc": 0.9008455874319925
619
+ },
620
+ {
621
+ "epoch": 0.4631322364411944,
622
+ "grad_norm": 0.8289061064281614,
623
+ "learning_rate": 5.840138191340651e-06,
624
+ "loss": 0.28725643157958985,
625
+ "step": 760,
626
+ "token_acc": 0.9028466795835374
627
+ },
628
+ {
629
+ "epoch": 0.4692260816575259,
630
+ "grad_norm": 0.8901360785145829,
631
+ "learning_rate": 5.7426543234171736e-06,
632
+ "loss": 0.2865636348724365,
633
+ "step": 770,
634
+ "token_acc": 0.90197109501604
635
+ },
636
+ {
637
+ "epoch": 0.4753199268738574,
638
+ "grad_norm": 0.8709058451908881,
639
+ "learning_rate": 5.644880899880382e-06,
640
+ "loss": 0.2886040687561035,
641
+ "step": 780,
642
+ "token_acc": 0.9023270689287564
643
+ },
644
+ {
645
+ "epoch": 0.48141377209018893,
646
+ "grad_norm": 0.9306196525173549,
647
+ "learning_rate": 5.546856041889374e-06,
648
+ "loss": 0.28833470344543455,
649
+ "step": 790,
650
+ "token_acc": 0.9016039529639475
651
+ },
652
+ {
653
+ "epoch": 0.4875076173065204,
654
+ "grad_norm": 0.9401250944884257,
655
+ "learning_rate": 5.448617968635741e-06,
656
+ "loss": 0.28241567611694335,
657
+ "step": 800,
658
+ "token_acc": 0.9046351860634857
659
+ },
660
+ {
661
+ "epoch": 0.4936014625228519,
662
+ "grad_norm": 0.849983180158667,
663
+ "learning_rate": 5.35020498244219e-06,
664
+ "loss": 0.2863471508026123,
665
+ "step": 810,
666
+ "token_acc": 0.9020820443108771
667
+ },
668
+ {
669
+ "epoch": 0.4996953077391834,
670
+ "grad_norm": 0.7275676892245573,
671
+ "learning_rate": 5.251655453828728e-06,
672
+ "loss": 0.28403263092041015,
673
+ "step": 820,
674
+ "token_acc": 0.9032200331101135
675
+ },
676
+ {
677
+ "epoch": 0.505789152955515,
678
+ "grad_norm": 0.8630110541652776,
679
+ "learning_rate": 5.153007806552275e-06,
680
+ "loss": 0.28420357704162597,
681
+ "step": 830,
682
+ "token_acc": 0.9033704118180856
683
+ },
684
+ {
685
+ "epoch": 0.5118829981718465,
686
+ "grad_norm": 0.8835421688612489,
687
+ "learning_rate": 5.054300502625517e-06,
688
+ "loss": 0.2866727352142334,
689
+ "step": 840,
690
+ "token_acc": 0.9032091030720939
691
+ },
692
+ {
693
+ "epoch": 0.517976843388178,
694
+ "grad_norm": 0.8544875287993453,
695
+ "learning_rate": 4.9555720273208475e-06,
696
+ "loss": 0.289061975479126,
697
+ "step": 850,
698
+ "token_acc": 0.9017317721145331
699
+ },
700
+ {
701
+ "epoch": 0.5240706886045094,
702
+ "grad_norm": 0.8549205024097043,
703
+ "learning_rate": 4.856860874165218e-06,
704
+ "loss": 0.2889714241027832,
705
+ "step": 860,
706
+ "token_acc": 0.9025821278082484
707
+ },
708
+ {
709
+ "epoch": 0.5301645338208409,
710
+ "grad_norm": 0.9236105201664164,
711
+ "learning_rate": 4.758205529931808e-06,
712
+ "loss": 0.2887147903442383,
713
+ "step": 870,
714
+ "token_acc": 0.9019780647042623
715
+ },
716
+ {
717
+ "epoch": 0.5362583790371724,
718
+ "grad_norm": 0.8682794949168545,
719
+ "learning_rate": 4.659644459634293e-06,
720
+ "loss": 0.27901973724365237,
721
+ "step": 880,
722
+ "token_acc": 0.9043348147353298
723
+ },
724
+ {
725
+ "epoch": 0.5423522242535039,
726
+ "grad_norm": 0.8729641279912889,
727
+ "learning_rate": 4.56121609152961e-06,
728
+ "loss": 0.2851783275604248,
729
+ "step": 890,
730
+ "token_acc": 0.9031912203833561
731
+ },
732
+ {
733
+ "epoch": 0.5484460694698354,
734
+ "grad_norm": 0.8418875200344721,
735
+ "learning_rate": 4.462958802135069e-06,
736
+ "loss": 0.27748913764953614,
737
+ "step": 900,
738
+ "token_acc": 0.9059390881360567
739
+ },
740
+ {
741
+ "epoch": 0.5545399146861669,
742
+ "grad_norm": 0.8894129853584928,
743
+ "learning_rate": 4.364910901265607e-06,
744
+ "loss": 0.28034243583679197,
745
+ "step": 910,
746
+ "token_acc": 0.9040050510001095
747
+ },
748
+ {
749
+ "epoch": 0.5606337599024985,
750
+ "grad_norm": 0.8334588350840866,
751
+ "learning_rate": 4.2671106170970734e-06,
752
+ "loss": 0.2801810264587402,
753
+ "step": 920,
754
+ "token_acc": 0.9042555097117814
755
+ },
756
+ {
757
+ "epoch": 0.56672760511883,
758
+ "grad_norm": 0.8763484647820953,
759
+ "learning_rate": 4.169596081261332e-06,
760
+ "loss": 0.2837662696838379,
761
+ "step": 930,
762
+ "token_acc": 0.9037383810780553
763
+ },
764
+ {
765
+ "epoch": 0.5728214503351615,
766
+ "grad_norm": 0.8713237221620964,
767
+ "learning_rate": 4.072405313979021e-06,
768
+ "loss": 0.27712116241455076,
769
+ "step": 940,
770
+ "token_acc": 0.9053036654966837
771
+ },
772
+ {
773
+ "epoch": 0.578915295551493,
774
+ "grad_norm": 0.8844118885887313,
775
+ "learning_rate": 3.975576209235726e-06,
776
+ "loss": 0.2806640625,
777
+ "step": 950,
778
+ "token_acc": 0.9047340125759082
779
+ },
780
+ {
781
+ "epoch": 0.5850091407678245,
782
+ "grad_norm": 0.8719900072150049,
783
+ "learning_rate": 3.879146520007399e-06,
784
+ "loss": 0.27962145805358884,
785
+ "step": 960,
786
+ "token_acc": 0.9052189543003484
787
+ },
788
+ {
789
+ "epoch": 0.591102985984156,
790
+ "grad_norm": 0.8621214557871747,
791
+ "learning_rate": 3.7831538435407344e-06,
792
+ "loss": 0.281157398223877,
793
+ "step": 970,
794
+ "token_acc": 0.9040866660422715
795
+ },
796
+ {
797
+ "epoch": 0.5971968312004875,
798
+ "grad_norm": 0.85966956497571,
799
+ "learning_rate": 3.687635606694271e-06,
800
+ "loss": 0.2849492073059082,
801
+ "step": 980,
802
+ "token_acc": 0.9041384613065175
803
+ },
804
+ {
805
+ "epoch": 0.603290676416819,
806
+ "grad_norm": 0.8505152160082087,
807
+ "learning_rate": 3.592629051345936e-06,
808
+ "loss": 0.2792569637298584,
809
+ "step": 990,
810
+ "token_acc": 0.9054755884673447
811
+ },
812
+ {
813
+ "epoch": 0.6093845216331505,
814
+ "grad_norm": 0.9214402604733031,
815
+ "learning_rate": 3.4981712198726956e-06,
816
+ "loss": 0.2757925033569336,
817
+ "step": 1000,
818
+ "token_acc": 0.9061934946027913
819
+ },
820
+ {
821
+ "epoch": 0.615478366849482,
822
+ "grad_norm": 0.8580050185956459,
823
+ "learning_rate": 3.4042989407079986e-06,
824
+ "loss": 0.2790709972381592,
825
+ "step": 1010,
826
+ "token_acc": 0.9051715866568587
827
+ },
828
+ {
829
+ "epoch": 0.6215722120658135,
830
+ "grad_norm": 0.7762593811197912,
831
+ "learning_rate": 3.311048813982627e-06,
832
+ "loss": 0.2719182014465332,
833
+ "step": 1020,
834
+ "token_acc": 0.9072872717021148
835
+ },
836
+ {
837
+ "epoch": 0.6276660572821451,
838
+ "grad_norm": 0.8305900083620258,
839
+ "learning_rate": 3.218457197254583e-06,
840
+ "loss": 0.27586350440979,
841
+ "step": 1030,
842
+ "token_acc": 0.9060086339753238
843
+ },
844
+ {
845
+ "epoch": 0.6337599024984766,
846
+ "grad_norm": 0.8955059982745348,
847
+ "learning_rate": 3.1265601913335196e-06,
848
+ "loss": 0.2731196403503418,
849
+ "step": 1040,
850
+ "token_acc": 0.9076037121001682
851
+ },
852
+ {
853
+ "epoch": 0.6398537477148081,
854
+ "grad_norm": 0.8712242634564721,
855
+ "learning_rate": 3.035393626205306e-06,
856
+ "loss": 0.2795309066772461,
857
+ "step": 1050,
858
+ "token_acc": 0.9047484454494065
859
+ },
860
+ {
861
+ "epoch": 0.6459475929311396,
862
+ "grad_norm": 0.8162886626845998,
863
+ "learning_rate": 2.944993047062161e-06,
864
+ "loss": 0.26994550228118896,
865
+ "step": 1060,
866
+ "token_acc": 0.9082915598041501
867
+ },
868
+ {
869
+ "epoch": 0.6520414381474711,
870
+ "grad_norm": 0.8874044395879559,
871
+ "learning_rate": 2.8553937004438425e-06,
872
+ "loss": 0.2744093418121338,
873
+ "step": 1070,
874
+ "token_acc": 0.9072907727436752
875
+ },
876
+ {
877
+ "epoch": 0.6581352833638026,
878
+ "grad_norm": 0.8288310546310844,
879
+ "learning_rate": 2.766630520495277e-06,
880
+ "loss": 0.2674886226654053,
881
+ "step": 1080,
882
+ "token_acc": 0.9087633615660454
883
+ },
884
+ {
885
+ "epoch": 0.664229128580134,
886
+ "grad_norm": 0.8828846811452266,
887
+ "learning_rate": 2.67873811534598e-06,
888
+ "loss": 0.2735260486602783,
889
+ "step": 1090,
890
+ "token_acc": 0.9060899523658108
891
+ },
892
+ {
893
+ "epoch": 0.6703229737964655,
894
+ "grad_norm": 0.8055682508984224,
895
+ "learning_rate": 2.591750753616596e-06,
896
+ "loss": 0.2687216758728027,
897
+ "step": 1100,
898
+ "token_acc": 0.9077474362897096
899
+ },
900
+ {
901
+ "epoch": 0.676416819012797,
902
+ "grad_norm": 0.8527567804445506,
903
+ "learning_rate": 2.505702351057804e-06,
904
+ "loss": 0.27487955093383787,
905
+ "step": 1110,
906
+ "token_acc": 0.9064443638076686
907
+ },
908
+ {
909
+ "epoch": 0.6825106642291285,
910
+ "grad_norm": 0.8043496565707575,
911
+ "learning_rate": 2.4206264573268174e-06,
912
+ "loss": 0.2709942102432251,
913
+ "step": 1120,
914
+ "token_acc": 0.9082038753361505
915
+ },
916
+ {
917
+ "epoch": 0.68860450944546,
918
+ "grad_norm": 0.8177848047582682,
919
+ "learning_rate": 2.336556242906608e-06,
920
+ "loss": 0.26909465789794923,
921
+ "step": 1130,
922
+ "token_acc": 0.907756650686803
923
+ },
924
+ {
925
+ "epoch": 0.6946983546617916,
926
+ "grad_norm": 0.8281752422683824,
927
+ "learning_rate": 2.2535244861729707e-06,
928
+ "loss": 0.27281508445739744,
929
+ "step": 1140,
930
+ "token_acc": 0.9068872307019957
931
+ },
932
+ {
933
+ "epoch": 0.7007921998781231,
934
+ "grad_norm": 0.7368812719716331,
935
+ "learning_rate": 2.1715635606144653e-06,
936
+ "loss": 0.2704050064086914,
937
+ "step": 1150,
938
+ "token_acc": 0.9086829548350435
939
+ },
940
+ {
941
+ "epoch": 0.7068860450944546,
942
+ "grad_norm": 0.8983810091681733,
943
+ "learning_rate": 2.0907054222102367e-06,
944
+ "loss": 0.2690997362136841,
945
+ "step": 1160,
946
+ "token_acc": 0.9079458353782861
947
+ },
948
+ {
949
+ "epoch": 0.7129798903107861,
950
+ "grad_norm": 0.976946993038541,
951
+ "learning_rate": 2.0109815969705922e-06,
952
+ "loss": 0.2747433423995972,
953
+ "step": 1170,
954
+ "token_acc": 0.9060301301519122
955
+ },
956
+ {
957
+ "epoch": 0.7190737355271176,
958
+ "grad_norm": 0.8007237087596002,
959
+ "learning_rate": 1.9324231686452478e-06,
960
+ "loss": 0.2671233654022217,
961
+ "step": 1180,
962
+ "token_acc": 0.9086050565301521
963
+ },
964
+ {
965
+ "epoch": 0.7251675807434491,
966
+ "grad_norm": 0.8064570085543009,
967
+ "learning_rate": 1.8550607666039877e-06,
968
+ "loss": 0.27011594772338865,
969
+ "step": 1190,
970
+ "token_acc": 0.9079702457204528
971
+ },
972
+ {
973
+ "epoch": 0.7312614259597806,
974
+ "grad_norm": 0.8831329237202693,
975
+ "learning_rate": 1.7789245538944971e-06,
976
+ "loss": 0.2661958456039429,
977
+ "step": 1200,
978
+ "token_acc": 0.909048799129166
979
+ },
980
+ {
981
+ "epoch": 0.7373552711761121,
982
+ "grad_norm": 0.8430483750865159,
983
+ "learning_rate": 1.7040442154820036e-06,
984
+ "loss": 0.2669236183166504,
985
+ "step": 1210,
986
+ "token_acc": 0.9086229167124993
987
+ },
988
+ {
989
+ "epoch": 0.7434491163924436,
990
+ "grad_norm": 0.8347549917161227,
991
+ "learning_rate": 1.6304489466753237e-06,
992
+ "loss": 0.26542019844055176,
993
+ "step": 1220,
994
+ "token_acc": 0.9091426534148126
995
+ },
996
+ {
997
+ "epoch": 0.7495429616087751,
998
+ "grad_norm": 0.830454588444548,
999
+ "learning_rate": 1.5581674417438143e-06,
1000
+ "loss": 0.2647353410720825,
1001
+ "step": 1230,
1002
+ "token_acc": 0.909506020348688
1003
+ },
1004
+ {
1005
+ "epoch": 0.7556368068251066,
1006
+ "grad_norm": 0.8676010280531331,
1007
+ "learning_rate": 1.4872278827296855e-06,
1008
+ "loss": 0.2685891628265381,
1009
+ "step": 1240,
1010
+ "token_acc": 0.9081622979570555
1011
+ },
1012
+ {
1013
+ "epoch": 0.7617306520414382,
1014
+ "grad_norm": 0.707455832514829,
1015
+ "learning_rate": 1.417657928460029e-06,
1016
+ "loss": 0.2678367614746094,
1017
+ "step": 1250,
1018
+ "token_acc": 0.9088005125349524
1019
+ },
1020
+ {
1021
+ "epoch": 0.7678244972577697,
1022
+ "grad_norm": 0.9332592296684585,
1023
+ "learning_rate": 1.349484703762834e-06,
1024
+ "loss": 0.2678724765777588,
1025
+ "step": 1260,
1026
+ "token_acc": 0.9090774872882107
1027
+ },
1028
+ {
1029
+ "epoch": 0.7739183424741012,
1030
+ "grad_norm": 0.9124536066814944,
1031
+ "learning_rate": 1.2827347888912057e-06,
1032
+ "loss": 0.2636892795562744,
1033
+ "step": 1270,
1034
+ "token_acc": 0.9094603622970171
1035
+ },
1036
+ {
1037
+ "epoch": 0.7800121876904327,
1038
+ "grad_norm": 0.8868523419233089,
1039
+ "learning_rate": 1.2174342091599277e-06,
1040
+ "loss": 0.2640355587005615,
1041
+ "step": 1280,
1042
+ "token_acc": 0.9101203136208611
1043
+ },
1044
+ {
1045
+ "epoch": 0.7861060329067642,
1046
+ "grad_norm": 0.8162281839833351,
1047
+ "learning_rate": 1.1536084247983626e-06,
1048
+ "loss": 0.2618927717208862,
1049
+ "step": 1290,
1050
+ "token_acc": 0.9093984578881031
1051
+ },
1052
+ {
1053
+ "epoch": 0.7921998781230957,
1054
+ "grad_norm": 0.8334510756887459,
1055
+ "learning_rate": 1.0912823210237033e-06,
1056
+ "loss": 0.2639930725097656,
1057
+ "step": 1300,
1058
+ "token_acc": 0.9095154304277207
1059
+ },
1060
+ {
1061
+ "epoch": 0.7982937233394272,
1062
+ "grad_norm": 0.9484830756554262,
1063
+ "learning_rate": 1.0304801983383989e-06,
1064
+ "loss": 0.2679661750793457,
1065
+ "step": 1310,
1066
+ "token_acc": 0.9085439305540266
1067
+ },
1068
+ {
1069
+ "epoch": 0.8043875685557587,
1070
+ "grad_norm": 0.7917038864004372,
1071
+ "learning_rate": 9.712257630555589e-07,
1072
+ "loss": 0.263914155960083,
1073
+ "step": 1320,
1074
+ "token_acc": 0.9098282765579997
1075
+ },
1076
+ {
1077
+ "epoch": 0.8104814137720902,
1078
+ "grad_norm": 0.8164310323072432,
1079
+ "learning_rate": 9.135421180560394e-07,
1080
+ "loss": 0.27391440868377687,
1081
+ "step": 1330,
1082
+ "token_acc": 0.9072812991094814
1083
+ },
1084
+ {
1085
+ "epoch": 0.8165752589884216,
1086
+ "grad_norm": 0.7878349824156636,
1087
+ "learning_rate": 8.574517537807897e-07,
1088
+ "loss": 0.2658750057220459,
1089
+ "step": 1340,
1090
+ "token_acc": 0.9089495350890863
1091
+ },
1092
+ {
1093
+ "epoch": 0.8226691042047533,
1094
+ "grad_norm": 0.7620095983862565,
1095
+ "learning_rate": 8.029765394619899e-07,
1096
+ "loss": 0.25719194412231444,
1097
+ "step": 1350,
1098
+ "token_acc": 0.911888654763225
1099
+ },
1100
+ {
1101
+ "epoch": 0.8287629494210847,
1102
+ "grad_norm": 0.8206579913283775,
1103
+ "learning_rate": 7.501377145963939e-07,
1104
+ "loss": 0.2592960834503174,
1105
+ "step": 1360,
1106
+ "token_acc": 0.9114338606023208
1107
+ },
1108
+ {
1109
+ "epoch": 0.8348567946374162,
1110
+ "grad_norm": 0.8789992765077687,
1111
+ "learning_rate": 6.98955880664205e-07,
1112
+ "loss": 0.26435413360595705,
1113
+ "step": 1370,
1114
+ "token_acc": 0.9108234231521902
1115
+ },
1116
+ {
1117
+ "epoch": 0.8409506398537477,
1118
+ "grad_norm": 0.9837537034286392,
1119
+ "learning_rate": 6.494509930967019e-07,
1120
+ "loss": 0.2641714572906494,
1121
+ "step": 1380,
1122
+ "token_acc": 0.9101989856105199
1123
+ },
1124
+ {
1125
+ "epoch": 0.8470444850700792,
1126
+ "grad_norm": 0.8346126227296959,
1127
+ "learning_rate": 6.016423534957616e-07,
1128
+ "loss": 0.26149678230285645,
1129
+ "step": 1390,
1130
+ "token_acc": 0.9105589320112891
1131
+ },
1132
+ {
1133
+ "epoch": 0.8531383302864107,
1134
+ "grad_norm": 0.789773058927434,
1135
+ "learning_rate": 5.555486021082979e-07,
1136
+ "loss": 0.25979223251342776,
1137
+ "step": 1400,
1138
+ "token_acc": 0.9105615762961907
1139
+ },
1140
+ {
1141
+ "epoch": 0.8592321755027422,
1142
+ "grad_norm": 0.7391262213112039,
1143
+ "learning_rate": 5.111877105585672e-07,
1144
+ "loss": 0.2619319915771484,
1145
+ "step": 1410,
1146
+ "token_acc": 0.9112515917773331
1147
+ },
1148
+ {
1149
+ "epoch": 0.8653260207190737,
1150
+ "grad_norm": 0.732756554862386,
1151
+ "learning_rate": 4.6857697484116006e-07,
1152
+ "loss": 0.26052017211914064,
1153
+ "step": 1420,
1154
+ "token_acc": 0.9111355670436785
1155
+ },
1156
+ {
1157
+ "epoch": 0.8714198659354052,
1158
+ "grad_norm": 0.9052605008388693,
1159
+ "learning_rate": 4.277330085774156e-07,
1160
+ "loss": 0.26050865650177,
1161
+ "step": 1430,
1162
+ "token_acc": 0.9113159185335296
1163
+ },
1164
+ {
1165
+ "epoch": 0.8775137111517367,
1166
+ "grad_norm": 0.8239425361941399,
1167
+ "learning_rate": 3.886717365378867e-07,
1168
+ "loss": 0.2652243137359619,
1169
+ "step": 1440,
1170
+ "token_acc": 0.9098248347337728
1171
+ },
1172
+ {
1173
+ "epoch": 0.8836075563680682,
1174
+ "grad_norm": 0.8321718064306127,
1175
+ "learning_rate": 3.5140838843339073e-07,
1176
+ "loss": 0.2614146709442139,
1177
+ "step": 1450,
1178
+ "token_acc": 0.9103242825028786
1179
+ },
1180
+ {
1181
+ "epoch": 0.8897014015843998,
1182
+ "grad_norm": 0.9427110487674982,
1183
+ "learning_rate": 3.159574929770515e-07,
1184
+ "loss": 0.26317219734191893,
1185
+ "step": 1460,
1186
+ "token_acc": 0.9102542106779491
1187
+ },
1188
+ {
1189
+ "epoch": 0.8957952468007313,
1190
+ "grad_norm": 0.8005907233947733,
1191
+ "learning_rate": 2.8233287221965555e-07,
1192
+ "loss": 0.2689415216445923,
1193
+ "step": 1470,
1194
+ "token_acc": 0.9084669140620019
1195
+ },
1196
+ {
1197
+ "epoch": 0.9018890920170628,
1198
+ "grad_norm": 0.8834142513691242,
1199
+ "learning_rate": 2.5054763616053967e-07,
1200
+ "loss": 0.26386346817016604,
1201
+ "step": 1480,
1202
+ "token_acc": 0.9098926633899981
1203
+ },
1204
+ {
1205
+ "epoch": 0.9079829372333943,
1206
+ "grad_norm": 0.8652226986660423,
1207
+ "learning_rate": 2.2061417763608818e-07,
1208
+ "loss": 0.2603492259979248,
1209
+ "step": 1490,
1210
+ "token_acc": 0.9111148919621807
1211
+ },
1212
+ {
1213
+ "epoch": 0.9140767824497258,
1214
+ "grad_norm": 0.7761477175475302,
1215
+ "learning_rate": 1.9254416748786086e-07,
1216
+ "loss": 0.2592171669006348,
1217
+ "step": 1500,
1218
+ "token_acc": 0.9112373322356396
1219
+ },
1220
+ {
1221
+ "epoch": 0.9201706276660573,
1222
+ "grad_norm": 0.7766751712855907,
1223
+ "learning_rate": 1.6634855001221195e-07,
1224
+ "loss": 0.258951997756958,
1225
+ "step": 1510,
1226
+ "token_acc": 0.9106356546794409
1227
+ },
1228
+ {
1229
+ "epoch": 0.9262644728823888,
1230
+ "grad_norm": 0.856909898768609,
1231
+ "learning_rate": 1.4203753869318882e-07,
1232
+ "loss": 0.2605564117431641,
1233
+ "step": 1520,
1234
+ "token_acc": 0.9109015609309732
1235
+ },
1236
+ {
1237
+ "epoch": 0.9323583180987203,
1238
+ "grad_norm": 0.8678261922910359,
1239
+ "learning_rate": 1.196206122203647e-07,
1240
+ "loss": 0.267201566696167,
1241
+ "step": 1530,
1242
+ "token_acc": 0.9091924387660025
1243
+ },
1244
+ {
1245
+ "epoch": 0.9384521633150518,
1246
+ "grad_norm": 0.8245437796092319,
1247
+ "learning_rate": 9.910651079316824e-08,
1248
+ "loss": 0.25865275859832765,
1249
+ "step": 1540,
1250
+ "token_acc": 0.9117370919567883
1251
+ },
1252
+ {
1253
+ "epoch": 0.9445460085313833,
1254
+ "grad_norm": 0.7648349491441419,
1255
+ "learning_rate": 8.050323271314331e-08,
1256
+ "loss": 0.2569366216659546,
1257
+ "step": 1550,
1258
+ "token_acc": 0.9122892575583048
1259
+ },
1260
+ {
1261
+ "epoch": 0.9506398537477148,
1262
+ "grad_norm": 0.844132664732268,
1263
+ "learning_rate": 6.381803126546405e-08,
1264
+ "loss": 0.26746933460235595,
1265
+ "step": 1560,
1266
+ "token_acc": 0.9087516916083089
1267
+ },
1268
+ {
1269
+ "epoch": 0.9567336989640464,
1270
+ "grad_norm": 0.8550282187735159,
1271
+ "learning_rate": 4.9057411890933714e-08,
1272
+ "loss": 0.2634291172027588,
1273
+ "step": 1570,
1274
+ "token_acc": 0.9101502847948816
1275
+ },
1276
+ {
1277
+ "epoch": 0.9628275441803779,
1278
+ "grad_norm": 0.8962920945122091,
1279
+ "learning_rate": 3.622712964956032e-08,
1280
+ "loss": 0.26028733253479003,
1281
+ "step": 1580,
1282
+ "token_acc": 0.9110691577022408
1283
+ },
1284
+ {
1285
+ "epoch": 0.9689213893967094,
1286
+ "grad_norm": 0.8191620838439264,
1287
+ "learning_rate": 2.5332186976697037e-08,
1288
+ "loss": 0.26295406818389894,
1289
+ "step": 1590,
1290
+ "token_acc": 0.9106372558253433
1291
+ },
1292
+ {
1293
+ "epoch": 0.9750152346130408,
1294
+ "grad_norm": 0.803005796954641,
1295
+ "learning_rate": 1.637683173263238e-08,
1296
+ "loss": 0.2601941585540771,
1297
+ "step": 1600,
1298
+ "token_acc": 0.9106438532047947
1299
+ },
1300
+ {
1301
+ "epoch": 0.9811090798293723,
1302
+ "grad_norm": 1.0200184560604955,
1303
+ "learning_rate": 9.364555546375054e-09,
1304
+ "loss": 0.265762186050415,
1305
+ "step": 1610,
1306
+ "token_acc": 0.9099375217270665
1307
+ },
1308
+ {
1309
+ "epoch": 0.9872029250457038,
1310
+ "grad_norm": 0.8217240197064228,
1311
+ "learning_rate": 4.2980924542984634e-09,
1312
+ "loss": 0.261862587928772,
1313
+ "step": 1620,
1314
+ "token_acc": 0.9104295425993519
1315
+ },
1316
+ {
1317
+ "epoch": 0.9932967702620353,
1318
+ "grad_norm": 0.8981159929317022,
1319
+ "learning_rate": 1.179417834153429e-09,
1320
+ "loss": 0.2626341342926025,
1321
+ "step": 1630,
1322
+ "token_acc": 0.9100063135380294
1323
+ },
1324
+ {
1325
+ "epoch": 0.9993906154783668,
1326
+ "grad_norm": 0.8766885423326849,
1327
+ "learning_rate": 9.74763488759134e-12,
1328
+ "loss": 0.2605599880218506,
1329
+ "step": 1640,
1330
+ "token_acc": 0.9109949846594887
1331
+ }
1332
+ ],
1333
+ "logging_steps": 10,
1334
+ "max_steps": 1641,
1335
+ "num_input_tokens_seen": 0,
1336
+ "num_train_epochs": 1,
1337
+ "save_steps": 200,
1338
+ "stateful_callbacks": {
1339
+ "TrainerControl": {
1340
+ "args": {
1341
+ "should_epoch_stop": false,
1342
+ "should_evaluate": false,
1343
+ "should_log": false,
1344
+ "should_save": true,
1345
+ "should_training_stop": true
1346
+ },
1347
+ "attributes": {}
1348
+ }
1349
+ },
1350
+ "total_flos": 1566399809454080.0,
1351
+ "train_batch_size": 4,
1352
+ "trial_name": null,
1353
+ "trial_params": null
1354
+ }
video_preprocessor_config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "dither": 0.0,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_rescale": true,
11
+ "do_resize": true,
12
+ "do_sample_frames": false,
13
+ "feature_extractor_type": "WhisperFeatureExtractor",
14
+ "feature_size": 128,
15
+ "fps": null,
16
+ "hop_length": 160,
17
+ "image_mean": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "image_std": [
23
+ 0.5,
24
+ 0.5,
25
+ 0.5
26
+ ],
27
+ "input_data_format": null,
28
+ "max_frames": 768,
29
+ "max_pixels": 12845056,
30
+ "merge_size": 2,
31
+ "min_frames": 4,
32
+ "min_pixels": 3136,
33
+ "n_fft": 400,
34
+ "n_samples": 4800000,
35
+ "nb_max_frames": 30000,
36
+ "num_frames": null,
37
+ "pad_size": null,
38
+ "padding_side": "right",
39
+ "padding_value": 0.0,
40
+ "patch_size": 16,
41
+ "processor_class": "Qwen3OmniMoeProcessor",
42
+ "resample": 3,
43
+ "rescale_factor": 0.00392156862745098,
44
+ "return_attention_mask": true,
45
+ "return_metadata": false,
46
+ "sampling_rate": 16000,
47
+ "size": {
48
+ "longest_edge": 12845056,
49
+ "shortest_edge": 3136
50
+ },
51
+ "temporal_patch_size": 2,
52
+ "video_metadata": null,
53
+ "video_processor_type": "Qwen2VLVideoProcessor"
54
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff