jq commited on
Commit
612e533
·
verified ·
1 Parent(s): 138d39d

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- macro format_parameters(properties, required, filter_keys=false) -%}
2
+ {%- set standard_keys = ['description', 'type', 'properties', 'required', 'nullable'] -%}
3
+ {%- set ns = namespace(found_first=false) -%}
4
+ {%- for key, value in properties | dictsort -%}
5
+ {%- set add_comma = false -%}
6
+ {%- if not filter_keys or key not in standard_keys -%}
7
+ {%- if ns.found_first %},{% endif -%}
8
+ {%- set ns.found_first = true -%}
9
+ {{ key }}:{
10
+ {%- if value['description'] -%}
11
+ description:<|"|>{{ value['description'] }}<|"|>
12
+ {%- set add_comma = true -%}
13
+ {%- endif -%}
14
+ {%- if value['type'] | upper == 'STRING' -%}
15
+ {%- if value['enum'] -%}
16
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
17
+ enum:{{ format_argument(value['enum']) }}
18
+ {%- endif -%}
19
+ {%- elif value['type'] | upper == 'ARRAY' -%}
20
+ {%- if value['items'] is mapping and value['items'] -%}
21
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
22
+ items:{
23
+ {%- set ns_items = namespace(found_first=false) -%}
24
+ {%- for item_key, item_value in value['items'] | dictsort -%}
25
+ {%- if item_value is not none -%}
26
+ {%- if ns_items.found_first %},{% endif -%}
27
+ {%- set ns_items.found_first = true -%}
28
+ {%- if item_key == 'properties' -%}
29
+ properties:{
30
+ {%- if item_value is mapping -%}
31
+ {{- format_parameters(item_value, value['items']['required'] | default([])) -}}
32
+ {%- endif -%}
33
+ }
34
+ {%- elif item_key == 'required' -%}
35
+ required:[
36
+ {%- for req_item in item_value -%}
37
+ <|"|>{{- req_item -}}<|"|>
38
+ {%- if not loop.last %},{% endif -%}
39
+ {%- endfor -%}
40
+ ]
41
+ {%- elif item_key == 'type' -%}
42
+ {%- if item_value is string -%}
43
+ type:{{ format_argument(item_value | upper) }}
44
+ {%- else -%}
45
+ type:{{ format_argument(item_value | map('upper') | list) }}
46
+ {%- endif -%}
47
+ {%- else -%}
48
+ {{ item_key }}:{{ format_argument(item_value) }}
49
+ {%- endif -%}
50
+ {%- endif -%}
51
+ {%- endfor -%}
52
+ }
53
+ {%- endif -%}
54
+ {%- endif -%}
55
+ {%- if value['nullable'] %}
56
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
57
+ nullable:true
58
+ {%- endif -%}
59
+ {%- if value['type'] | upper == 'OBJECT' -%}
60
+ {%- if value['properties'] is defined and value['properties'] is mapping -%}
61
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
62
+ properties:{
63
+ {{- format_parameters(value['properties'], value['required'] | default([])) -}}
64
+ }
65
+ {%- elif value is mapping -%}
66
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
67
+ properties:{
68
+ {{- format_parameters(value, value['required'] | default([]), filter_keys=true) -}}
69
+ }
70
+ {%- endif -%}
71
+ {%- if value['required'] -%}
72
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
73
+ required:[
74
+ {%- for item in value['required'] | default([]) -%}
75
+ <|"|>{{- item -}}<|"|>
76
+ {%- if not loop.last %},{% endif -%}
77
+ {%- endfor -%}
78
+ ]
79
+ {%- endif -%}
80
+ {%- endif -%}
81
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
82
+ type:<|"|>{{ value['type'] | upper }}<|"|>}
83
+ {%- endif -%}
84
+ {%- endfor -%}
85
+ {%- endmacro -%}
86
+ {%- macro format_function_declaration(tool_data) -%}
87
+ declaration:{{- tool_data['function']['name'] -}}{description:<|"|>{{- tool_data['function']['description'] -}}<|"|>
88
+ {%- set params = tool_data['function']['parameters'] -%}
89
+ {%- if params -%}
90
+ ,parameters:{
91
+ {%- if params['properties'] -%}
92
+ properties:{ {{- format_parameters(params['properties'], params['required']) -}} },
93
+ {%- endif -%}
94
+ {%- if params['required'] -%}
95
+ required:[
96
+ {%- for item in params['required'] -%}
97
+ <|"|>{{- item -}}<|"|>
98
+ {{- ',' if not loop.last -}}
99
+ {%- endfor -%}
100
+ ],
101
+ {%- endif -%}
102
+ {%- if params['type'] -%}
103
+ type:<|"|>{{- params['type'] | upper -}}<|"|>}
104
+ {%- endif -%}
105
+ {%- endif -%}
106
+ {%- if 'response' in tool_data['function'] -%}
107
+ {%- set response_declaration = tool_data['function']['response'] -%}
108
+ ,response:{
109
+ {%- if response_declaration['description'] -%}
110
+ description:<|"|>{{- response_declaration['description'] -}}<|"|>,
111
+ {%- endif -%}
112
+ {%- if response_declaration['type'] | upper == 'OBJECT' -%}
113
+ type:<|"|>{{- response_declaration['type'] | upper -}}<|"|>}
114
+ {%- endif -%}
115
+ {%- endif -%}
116
+ }
117
+ {%- endmacro -%}
118
+ {%- macro format_argument(argument, escape_keys=True) -%}
119
+ {%- if argument is string -%}
120
+ {{- '<|"|>' + argument + '<|"|>' -}}
121
+ {%- elif argument is boolean -%}
122
+ {{- 'true' if argument else 'false' -}}
123
+ {%- elif argument is mapping -%}
124
+ {{- '{' -}}
125
+ {%- set ns = namespace(found_first=false) -%}
126
+ {%- for key, value in argument | dictsort -%}
127
+ {%- if ns.found_first %},{% endif -%}
128
+ {%- set ns.found_first = true -%}
129
+ {%- if escape_keys -%}
130
+ {{- '<|"|>' + key + '<|"|>' -}}
131
+ {%- else -%}
132
+ {{- key -}}
133
+ {%- endif -%}
134
+ :{{- format_argument(value, escape_keys=escape_keys) -}}
135
+ {%- endfor -%}
136
+ {{- '}' -}}
137
+ {%- elif argument is sequence -%}
138
+ {{- '[' -}}
139
+ {%- for item in argument -%}
140
+ {{- format_argument(item, escape_keys=escape_keys) -}}
141
+ {%- if not loop.last %},{% endif -%}
142
+ {%- endfor -%}
143
+ {{- ']' -}}
144
+ {%- else -%}
145
+ {{- argument -}}
146
+ {%- endif -%}
147
+ {%- endmacro -%}
148
+ {%- macro strip_thinking(text) -%}
149
+ {%- set ns = namespace(result='') -%}
150
+ {%- for part in text.split('<channel|>') -%}
151
+ {%- if '<|channel>' in part -%}
152
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
153
+ {%- else -%}
154
+ {%- set ns.result = ns.result + part -%}
155
+ {%- endif -%}
156
+ {%- endfor -%}
157
+ {{- ns.result | trim -}}
158
+ {%- endmacro -%}
159
+
160
+ {%- macro format_tool_response_block(tool_name, response) -%}
161
+ {{- '<|tool_response>' -}}
162
+ {%- if response is mapping -%}
163
+ {{- 'response:' + tool_name + '{' -}}
164
+ {%- for key, value in response | dictsort -%}
165
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
166
+ {%- if not loop.last %},{% endif -%}
167
+ {%- endfor -%}
168
+ {{- '}' -}}
169
+ {%- else -%}
170
+ {{- 'response:' + tool_name + '{value:' + format_argument(response, escape_keys=False) + '}' -}}
171
+ {%- endif -%}
172
+ {{- '<tool_response|>' -}}
173
+ {%- endmacro -%}
174
+
175
+ {%- set ns = namespace(prev_message_type=None) -%}
176
+ {%- set loop_messages = messages -%}
177
+ {{- bos_token -}}
178
+ {#- Handle System/Tool Definitions Block -#}
179
+ {%- if (enable_thinking is defined and enable_thinking) or tools or messages[0]['role'] in ['system', 'developer'] -%}
180
+ {{- '<|turn>system\n' -}}
181
+ {#- Inject Thinking token at the very top of the FIRST system turn -#}
182
+ {%- if enable_thinking is defined and enable_thinking -%}
183
+ {{- '<|think|>\n' -}}
184
+ {%- set ns.prev_message_type = 'think' -%}
185
+ {%- endif -%}
186
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
187
+ {%- if messages[0]['content'] is string -%}
188
+ {{- messages[0]['content'] | trim -}}
189
+ {%- elif messages[0]['content'] is sequence -%}
190
+ {%- for item in messages[0]['content'] -%}
191
+ {{- item['text'] | trim + ' '-}}
192
+ {%- endfor -%}
193
+ {%- endif -%}
194
+ {%- set loop_messages = messages[1:] -%}
195
+ {%- endif -%}
196
+ {%- if tools -%}
197
+ {%- for tool in tools %}
198
+ {{- '<|tool>' -}}
199
+ {{- format_function_declaration(tool) | trim -}}
200
+ {{- '<tool|>' -}}
201
+ {%- endfor %}
202
+ {%- set ns.prev_message_type = 'tool' -%}
203
+ {%- endif -%}
204
+ {{- '<turn|>\n' -}}
205
+ {%- endif %}
206
+
207
+ {#- Pre-scan: find last user message index for reasoning guard -#}
208
+ {%- set ns_turn = namespace(last_user_idx=-1) -%}
209
+ {%- for i in range(loop_messages | length) -%}
210
+ {%- if loop_messages[i]['role'] == 'user' -%}
211
+ {%- set ns_turn.last_user_idx = i -%}
212
+ {%- endif -%}
213
+ {%- endfor -%}
214
+
215
+ {#- Loop through messages -#}
216
+ {%- for message in loop_messages -%}
217
+ {%- if message['role'] != 'tool' -%}
218
+ {%- set ns.prev_message_type = None -%}
219
+ {%- set role = 'model' if message['role'] == 'assistant' else message['role'] -%}
220
+ {#- Detect continuation: suppress duplicate <|turn>model when previous non-tool message was also assistant -#}
221
+ {%- set prev_nt = namespace(role=None, found=false) -%}
222
+ {%- if loop.index0 > 0 -%}
223
+ {%- for j in range(loop.index0 - 1, -1, -1) -%}
224
+ {%- if not prev_nt.found -%}
225
+ {%- if loop_messages[j]['role'] != 'tool' -%}
226
+ {%- set prev_nt.role = loop_messages[j]['role'] -%}
227
+ {%- set prev_nt.found = true -%}
228
+ {%- endif -%}
229
+ {%- endif -%}
230
+ {%- endfor -%}
231
+ {%- endif -%}
232
+ {%- set continue_same_model_turn = (role == 'model' and prev_nt.role == 'assistant') -%}
233
+ {%- if not continue_same_model_turn -%}
234
+ {{- '<|turn>' + role + '\n' }}
235
+ {%- endif -%}
236
+
237
+ {#- Render reasoning/reasoning_content as thinking channel -#}
238
+ {%- set thinking_text = message.get('reasoning') or message.get('reasoning_content') -%}
239
+ {%- if thinking_text and loop.index0 > ns_turn.last_user_idx and message.get('tool_calls') -%}
240
+ {{- '<|channel>thought\n' + thinking_text + '\n<channel|>' -}}
241
+ {%- endif -%}
242
+
243
+ {%- if message['tool_calls'] -%}
244
+ {%- for tool_call in message['tool_calls'] -%}
245
+ {%- set function = tool_call['function'] -%}
246
+ {{- '<|tool_call>call:' + function['name'] + '{' -}}
247
+ {%- if function['arguments'] is mapping -%}
248
+ {%- set ns_args = namespace(found_first=false) -%}
249
+ {%- for key, value in function['arguments'] | dictsort -%}
250
+ {%- if ns_args.found_first %},{% endif -%}
251
+ {%- set ns_args.found_first = true -%}
252
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
253
+ {%- endfor -%}
254
+ {%- elif function['arguments'] is string -%}
255
+ {{- function['arguments'] -}}
256
+ {%- endif -%}
257
+ {{- '}<tool_call|>' -}}
258
+ {%- endfor -%}
259
+ {%- set ns.prev_message_type = 'tool_call' -%}
260
+ {%- endif -%}
261
+
262
+ {%- set ns_tr_out = namespace(flag=false) -%}
263
+ {%- if message.get('tool_responses') -%}
264
+ {#- Legacy: tool_responses embedded on the assistant message (Google/Gemma native) -#}
265
+ {%- for tool_response in message['tool_responses'] -%}
266
+ {{- format_tool_response_block(tool_response['name'] | default('unknown'), tool_response['response']) -}}
267
+ {%- set ns_tr_out.flag = true -%}
268
+ {%- set ns.prev_message_type = 'tool_response' -%}
269
+ {%- endfor -%}
270
+ {%- elif message.get('tool_calls') -%}
271
+ {#- OpenAI Chat Completions: forward-scan consecutive role:tool messages -#}
272
+ {%- set ns_tool_scan = namespace(stopped=false) -%}
273
+ {%- for k in range(loop.index0 + 1, loop_messages | length) -%}
274
+ {%- if ns_tool_scan.stopped -%}
275
+ {%- elif loop_messages[k]['role'] != 'tool' -%}
276
+ {%- set ns_tool_scan.stopped = true -%}
277
+ {%- else -%}
278
+ {%- set follow = loop_messages[k] -%}
279
+ {#- Resolve tool_call_id to function name -#}
280
+ {%- set ns_tname = namespace(name=follow.get('name') | default('unknown')) -%}
281
+ {%- for tc in message['tool_calls'] -%}
282
+ {%- if tc.get('id') == follow.get('tool_call_id') -%}
283
+ {%- set ns_tname.name = tc['function']['name'] -%}
284
+ {%- endif -%}
285
+ {%- endfor -%}
286
+ {#- Handle content as string or content-parts array -#}
287
+ {%- set tool_body = follow.get('content') -%}
288
+ {%- if tool_body is string -%}
289
+ {{- format_tool_response_block(ns_tname.name, tool_body) -}}
290
+ {%- elif tool_body is sequence and tool_body is not string -%}
291
+ {%- set ns_txt = namespace(s='') -%}
292
+ {%- for part in tool_body -%}
293
+ {%- if part.get('type') == 'text' -%}
294
+ {%- set ns_txt.s = ns_txt.s + (part.get('text') | default('')) -%}
295
+ {%- endif -%}
296
+ {%- endfor -%}
297
+ {{- format_tool_response_block(ns_tname.name, ns_txt.s) -}}
298
+ {%- else -%}
299
+ {{- format_tool_response_block(ns_tname.name, tool_body) -}}
300
+ {%- endif -%}
301
+ {%- set ns_tr_out.flag = true -%}
302
+ {%- set ns.prev_message_type = 'tool_response' -%}
303
+ {%- endif -%}
304
+ {%- endfor -%}
305
+ {%- endif -%}
306
+
307
+ {%- set captured_content -%}
308
+ {%- if message['content'] is string -%}
309
+ {%- if role == 'model' -%}
310
+ {{- strip_thinking(message['content']) -}}
311
+ {%- else -%}
312
+ {{- message['content'] | trim -}}
313
+ {%- endif -%}
314
+ {%- elif message['content'] is sequence -%}
315
+ {%- for item in message['content'] -%}
316
+ {%- if item['type'] == 'text' -%}
317
+ {%- if role == 'model' -%}
318
+ {{- strip_thinking(item['text']) -}}
319
+ {%- else -%}
320
+ {{- item['text'] | trim -}}
321
+ {%- endif -%}
322
+ {%- elif item['type'] == 'image' -%}
323
+ {{- '<|image|>' -}}
324
+ {%- set ns.prev_message_type = 'image' -%}
325
+ {%- elif item['type'] == 'audio' -%}
326
+ {{- '<|audio|>' -}}
327
+ {%- set ns.prev_message_type = 'audio' -%}
328
+ {%- elif item['type'] == 'video' -%}
329
+ {{- '<|video|>' -}}
330
+ {%- set ns.prev_message_type = 'video' -%}
331
+ {%- endif -%}
332
+ {%- endfor -%}
333
+ {%- endif -%}
334
+ {%- endset -%}
335
+
336
+ {{- captured_content -}}
337
+ {%- set has_content = captured_content | trim | length > 0 -%}
338
+
339
+ {%- if ns.prev_message_type == 'tool_call' and not ns_tr_out.flag -%}
340
+ {{- '<|tool_response>' -}}
341
+ {%- elif not (ns_tr_out.flag and not has_content) -%}
342
+ {{- '<turn|>\n' -}}
343
+ {%- endif -%}
344
+ {%- endif -%}
345
+ {%- endfor -%}
346
+
347
+ {%- if add_generation_prompt -%}
348
+ {%- if ns.prev_message_type != 'tool_response' and ns.prev_message_type != 'tool_call' -%}
349
+ {{- '<|turn>model\n' -}}
350
+ {%- endif -%}
351
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Gemma4ForConditionalGeneration"
4
+ ],
5
+ "audio_config": {
6
+ "_name_or_path": "",
7
+ "architectures": null,
8
+ "attention_chunk_size": 12,
9
+ "attention_context_left": 13,
10
+ "attention_context_right": 0,
11
+ "attention_invalid_logits_value": -1000000000.0,
12
+ "attention_logit_cap": 50.0,
13
+ "chunk_size_feed_forward": 0,
14
+ "conv_kernel_size": 5,
15
+ "dtype": "bfloat16",
16
+ "gradient_clipping": 10000000000.0,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 1024,
19
+ "id2label": {
20
+ "0": "LABEL_0",
21
+ "1": "LABEL_1"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "is_encoder_decoder": false,
25
+ "label2id": {
26
+ "LABEL_0": 0,
27
+ "LABEL_1": 1
28
+ },
29
+ "model_type": "gemma4_audio",
30
+ "num_attention_heads": 8,
31
+ "num_hidden_layers": 12,
32
+ "output_attentions": false,
33
+ "output_hidden_states": false,
34
+ "output_proj_dims": 1536,
35
+ "problem_type": null,
36
+ "residual_weight": 0.5,
37
+ "return_dict": true,
38
+ "rms_norm_eps": 1e-06,
39
+ "subsampling_conv_channels": [
40
+ 128,
41
+ 32
42
+ ],
43
+ "use_clipped_linears": true
44
+ },
45
+ "audio_token_id": 258881,
46
+ "boa_token_id": 256000,
47
+ "boi_token_id": 255999,
48
+ "bos_token_id": 2,
49
+ "dtype": "bfloat16",
50
+ "eoa_token_id": 258883,
51
+ "eoa_token_index": 258883,
52
+ "eoi_token_id": 258882,
53
+ "eos_token_id": 1,
54
+ "image_token_id": 258880,
55
+ "initializer_range": 0.02,
56
+ "model_name": "jq/gemma4-e2b-fft-asr-uga",
57
+ "model_type": "gemma4",
58
+ "pad_token_id": 0,
59
+ "text_config": {
60
+ "attention_bias": false,
61
+ "attention_dropout": 0.0,
62
+ "attention_k_eq_v": false,
63
+ "bos_token_id": 2,
64
+ "dtype": "bfloat16",
65
+ "enable_moe_block": false,
66
+ "eos_token_id": 1,
67
+ "expert_intermediate_size": null,
68
+ "final_logit_softcapping": 30.0,
69
+ "global_head_dim": 512,
70
+ "head_dim": 256,
71
+ "hidden_activation": "gelu_pytorch_tanh",
72
+ "hidden_size": 1536,
73
+ "hidden_size_per_layer_input": 256,
74
+ "initializer_range": 0.02,
75
+ "intermediate_size": 6144,
76
+ "layer_types": [
77
+ "sliding_attention",
78
+ "sliding_attention",
79
+ "sliding_attention",
80
+ "sliding_attention",
81
+ "full_attention",
82
+ "sliding_attention",
83
+ "sliding_attention",
84
+ "sliding_attention",
85
+ "sliding_attention",
86
+ "full_attention",
87
+ "sliding_attention",
88
+ "sliding_attention",
89
+ "sliding_attention",
90
+ "sliding_attention",
91
+ "full_attention",
92
+ "sliding_attention",
93
+ "sliding_attention",
94
+ "sliding_attention",
95
+ "sliding_attention",
96
+ "full_attention",
97
+ "sliding_attention",
98
+ "sliding_attention",
99
+ "sliding_attention",
100
+ "sliding_attention",
101
+ "full_attention",
102
+ "sliding_attention",
103
+ "sliding_attention",
104
+ "sliding_attention",
105
+ "sliding_attention",
106
+ "full_attention",
107
+ "sliding_attention",
108
+ "sliding_attention",
109
+ "sliding_attention",
110
+ "sliding_attention",
111
+ "full_attention"
112
+ ],
113
+ "max_position_embeddings": 131072,
114
+ "model_type": "gemma4_text",
115
+ "moe_intermediate_size": null,
116
+ "num_attention_heads": 8,
117
+ "num_experts": null,
118
+ "num_global_key_value_heads": null,
119
+ "num_hidden_layers": 35,
120
+ "num_key_value_heads": 1,
121
+ "num_kv_shared_layers": 20,
122
+ "pad_token_id": 0,
123
+ "rms_norm_eps": 1e-06,
124
+ "rope_parameters": {
125
+ "full_attention": {
126
+ "partial_rotary_factor": 0.25,
127
+ "rope_theta": 1000000.0,
128
+ "rope_type": "proportional"
129
+ },
130
+ "sliding_attention": {
131
+ "rope_theta": 10000.0,
132
+ "rope_type": "default"
133
+ }
134
+ },
135
+ "sliding_window": 512,
136
+ "tie_word_embeddings": true,
137
+ "top_k_experts": null,
138
+ "use_bidirectional_attention": null,
139
+ "use_cache": true,
140
+ "use_double_wide_mlp": true,
141
+ "vocab_size": 262144,
142
+ "vocab_size_per_layer_input": 262144
143
+ },
144
+ "tie_word_embeddings": true,
145
+ "transformers_version": "5.8.0",
146
+ "unsloth_version": "2026.5.2",
147
+ "use_cache": false,
148
+ "video_token_id": 258884,
149
+ "vision_config": {
150
+ "_name_or_path": "",
151
+ "architectures": null,
152
+ "attention_bias": false,
153
+ "attention_dropout": 0.0,
154
+ "chunk_size_feed_forward": 0,
155
+ "default_output_length": 280,
156
+ "dtype": "bfloat16",
157
+ "global_head_dim": 64,
158
+ "head_dim": 64,
159
+ "hidden_activation": "gelu_pytorch_tanh",
160
+ "hidden_size": 768,
161
+ "id2label": {
162
+ "0": "LABEL_0",
163
+ "1": "LABEL_1"
164
+ },
165
+ "initializer_range": 0.02,
166
+ "intermediate_size": 3072,
167
+ "is_encoder_decoder": false,
168
+ "label2id": {
169
+ "LABEL_0": 0,
170
+ "LABEL_1": 1
171
+ },
172
+ "max_position_embeddings": 131072,
173
+ "model_type": "gemma4_vision",
174
+ "num_attention_heads": 12,
175
+ "num_hidden_layers": 16,
176
+ "num_key_value_heads": 12,
177
+ "output_attentions": false,
178
+ "output_hidden_states": false,
179
+ "patch_size": 16,
180
+ "pooling_kernel_size": 3,
181
+ "position_embedding_size": 10240,
182
+ "problem_type": null,
183
+ "return_dict": true,
184
+ "rms_norm_eps": 1e-06,
185
+ "rope_parameters": {
186
+ "rope_theta": 100.0,
187
+ "rope_type": "default"
188
+ },
189
+ "standardize": false,
190
+ "use_clipped_linears": true
191
+ },
192
+ "vision_soft_tokens_per_image": 280
193
+ }
generation_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 1,
6
+ 1,
7
+ 106,
8
+ 50
9
+ ],
10
+ "pad_token_id": 0,
11
+ "temperature": 1.0,
12
+ "top_k": 64,
13
+ "top_p": 0.95,
14
+ "transformers_version": "5.8.0"
15
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7be21e063d3e5d24f86d47f552cb5cdb4103527ab04df1900738205dd866d863
3
+ size 10208852910
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87ee2f2ae8de49581bfeb04ce113841200a5b6fdd727c9383b4d28dadbf204e2
3
+ size 14645
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73f5c7141f58e850dfe7bff58a726c04f15c33b6b0cb030aec4e9b1cdc5b34ec
3
+ size 1465
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1d8bced9d66859cd2c3f4dcd8ab427197d4d46af3d9598b72af9fcf80b8392e
3
+ size 32169781
tokenizer_config.json ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<eos>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "max_length": null,
24
+ "model_max_length": 1000000000000000019884624838656,
25
+ "model_specific_special_tokens": {
26
+ "audio_token": "<|audio|>",
27
+ "boa_token": "<|audio>",
28
+ "boi_token": "<|image>",
29
+ "eoa_token": "<audio|>",
30
+ "eoc_token": "<channel|>",
31
+ "eoi_token": "<image|>",
32
+ "eot_token": "<turn|>",
33
+ "escape_token": "<|\"|>",
34
+ "etc_token": "<tool_call|>",
35
+ "etd_token": "<tool|>",
36
+ "etr_token": "<tool_response|>",
37
+ "image_token": "<|image|>",
38
+ "soc_token": "<|channel>",
39
+ "sot_token": "<|turn>",
40
+ "stc_token": "<|tool_call>",
41
+ "std_token": "<|tool>",
42
+ "str_token": "<|tool_response>",
43
+ "think_token": "<|think|>"
44
+ },
45
+ "pad_to_multiple_of": null,
46
+ "pad_token": "<pad>",
47
+ "pad_token_type_id": 0,
48
+ "padding_side": "right",
49
+ "processor_class": "Gemma4Processor",
50
+ "response_schema": {
51
+ "properties": {
52
+ "content": {
53
+ "type": "string"
54
+ },
55
+ "role": {
56
+ "const": "assistant"
57
+ },
58
+ "thinking": {
59
+ "type": "string"
60
+ },
61
+ "tool_calls": {
62
+ "items": {
63
+ "properties": {
64
+ "function": {
65
+ "properties": {
66
+ "arguments": {
67
+ "additionalProperties": {},
68
+ "type": "object",
69
+ "x-parser": "gemma4-tool-call"
70
+ },
71
+ "name": {
72
+ "type": "string"
73
+ }
74
+ },
75
+ "type": "object",
76
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
77
+ },
78
+ "type": {
79
+ "const": "function"
80
+ }
81
+ },
82
+ "type": "object"
83
+ },
84
+ "type": "array",
85
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
86
+ }
87
+ },
88
+ "type": "object",
89
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
90
+ },
91
+ "soc_token": "<|channel>",
92
+ "sot_token": "<|turn>",
93
+ "stc_token": "<|tool_call>",
94
+ "std_token": "<|tool>",
95
+ "str_token": "<|tool_response>",
96
+ "think_token": "<|think|>",
97
+ "tokenizer_class": "GemmaTokenizer",
98
+ "unk_token": "<unk>",
99
+ "added_tokens_decoder": {
100
+ "0": {
101
+ "content": "<pad>",
102
+ "single_word": false,
103
+ "lstrip": false,
104
+ "rstrip": false,
105
+ "normalized": false,
106
+ "special": true
107
+ },
108
+ "1": {
109
+ "content": "<eos>",
110
+ "single_word": false,
111
+ "lstrip": false,
112
+ "rstrip": false,
113
+ "normalized": false,
114
+ "special": true
115
+ },
116
+ "2": {
117
+ "content": "<bos>",
118
+ "single_word": false,
119
+ "lstrip": false,
120
+ "rstrip": false,
121
+ "normalized": false,
122
+ "special": true
123
+ },
124
+ "3": {
125
+ "content": "<unk>",
126
+ "single_word": false,
127
+ "lstrip": false,
128
+ "rstrip": false,
129
+ "normalized": false,
130
+ "special": true
131
+ },
132
+ "4": {
133
+ "content": "<mask>",
134
+ "single_word": false,
135
+ "lstrip": false,
136
+ "rstrip": false,
137
+ "normalized": false,
138
+ "special": true
139
+ },
140
+ "46": {
141
+ "content": "<|tool>",
142
+ "single_word": false,
143
+ "lstrip": false,
144
+ "rstrip": false,
145
+ "normalized": false,
146
+ "special": true
147
+ },
148
+ "47": {
149
+ "content": "<tool|>",
150
+ "single_word": false,
151
+ "lstrip": false,
152
+ "rstrip": false,
153
+ "normalized": false,
154
+ "special": true
155
+ },
156
+ "48": {
157
+ "content": "<|tool_call>",
158
+ "single_word": false,
159
+ "lstrip": false,
160
+ "rstrip": false,
161
+ "normalized": false,
162
+ "special": true
163
+ },
164
+ "49": {
165
+ "content": "<tool_call|>",
166
+ "single_word": false,
167
+ "lstrip": false,
168
+ "rstrip": false,
169
+ "normalized": false,
170
+ "special": true
171
+ },
172
+ "50": {
173
+ "content": "<|tool_response>",
174
+ "single_word": false,
175
+ "lstrip": false,
176
+ "rstrip": false,
177
+ "normalized": false,
178
+ "special": true
179
+ },
180
+ "51": {
181
+ "content": "<tool_response|>",
182
+ "single_word": false,
183
+ "lstrip": false,
184
+ "rstrip": false,
185
+ "normalized": false,
186
+ "special": true
187
+ },
188
+ "52": {
189
+ "content": "<|\"|>",
190
+ "single_word": false,
191
+ "lstrip": false,
192
+ "rstrip": false,
193
+ "normalized": false,
194
+ "special": true
195
+ },
196
+ "98": {
197
+ "content": "<|think|>",
198
+ "single_word": false,
199
+ "lstrip": false,
200
+ "rstrip": false,
201
+ "normalized": false,
202
+ "special": true
203
+ },
204
+ "100": {
205
+ "content": "<|channel>",
206
+ "single_word": false,
207
+ "lstrip": false,
208
+ "rstrip": false,
209
+ "normalized": false,
210
+ "special": true
211
+ },
212
+ "101": {
213
+ "content": "<channel|>",
214
+ "single_word": false,
215
+ "lstrip": false,
216
+ "rstrip": false,
217
+ "normalized": false,
218
+ "special": true
219
+ },
220
+ "105": {
221
+ "content": "<|turn>",
222
+ "single_word": false,
223
+ "lstrip": false,
224
+ "rstrip": false,
225
+ "normalized": false,
226
+ "special": true
227
+ },
228
+ "106": {
229
+ "content": "<turn|>",
230
+ "single_word": false,
231
+ "lstrip": false,
232
+ "rstrip": false,
233
+ "normalized": false,
234
+ "special": true
235
+ },
236
+ "255999": {
237
+ "content": "<|image>",
238
+ "single_word": false,
239
+ "lstrip": false,
240
+ "rstrip": false,
241
+ "normalized": false,
242
+ "special": true
243
+ },
244
+ "256000": {
245
+ "content": "<|audio>",
246
+ "single_word": false,
247
+ "lstrip": false,
248
+ "rstrip": false,
249
+ "normalized": false,
250
+ "special": true
251
+ },
252
+ "258880": {
253
+ "content": "<|image|>",
254
+ "single_word": false,
255
+ "lstrip": false,
256
+ "rstrip": false,
257
+ "normalized": false,
258
+ "special": true
259
+ },
260
+ "258881": {
261
+ "content": "<|audio|>",
262
+ "single_word": false,
263
+ "lstrip": false,
264
+ "rstrip": false,
265
+ "normalized": false,
266
+ "special": true
267
+ },
268
+ "258882": {
269
+ "content": "<image|>",
270
+ "single_word": false,
271
+ "lstrip": false,
272
+ "rstrip": false,
273
+ "normalized": false,
274
+ "special": true
275
+ },
276
+ "258883": {
277
+ "content": "<audio|>",
278
+ "single_word": false,
279
+ "lstrip": false,
280
+ "rstrip": false,
281
+ "normalized": false,
282
+ "special": true
283
+ },
284
+ "258884": {
285
+ "content": "<|video|>",
286
+ "single_word": false,
287
+ "lstrip": false,
288
+ "rstrip": false,
289
+ "normalized": false,
290
+ "special": true
291
+ }
292
+ }
293
+ }
trainer_state.json ADDED
@@ -0,0 +1,1716 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 578,
7
+ "global_step": 2309,
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.0043308791684712,
14
+ "grad_norm": 0.9375,
15
+ "learning_rate": 4.5e-06,
16
+ "loss": 0.44086565971374514,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.0086617583369424,
21
+ "grad_norm": 1.7265625,
22
+ "learning_rate": 9.5e-06,
23
+ "loss": 0.38978335857391355,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.0129926375054136,
28
+ "grad_norm": 1.1171875,
29
+ "learning_rate": 1.45e-05,
30
+ "loss": 0.3998324632644653,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.0173235166738848,
35
+ "grad_norm": 0.8359375,
36
+ "learning_rate": 1.9500000000000003e-05,
37
+ "loss": 0.36765055656433104,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.021654395842355997,
42
+ "grad_norm": 0.9140625,
43
+ "learning_rate": 2.45e-05,
44
+ "loss": 0.38308374881744384,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.0259852750108272,
49
+ "grad_norm": 1.3125,
50
+ "learning_rate": 2.95e-05,
51
+ "loss": 0.37063548564910886,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.030316154179298397,
56
+ "grad_norm": 0.921875,
57
+ "learning_rate": 3.45e-05,
58
+ "loss": 0.3595526456832886,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.0346470333477696,
63
+ "grad_norm": 1.25,
64
+ "learning_rate": 3.9500000000000005e-05,
65
+ "loss": 0.3661433935165405,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.0389779125162408,
70
+ "grad_norm": 0.8671875,
71
+ "learning_rate": 4.4500000000000004e-05,
72
+ "loss": 0.37132949829101564,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.043308791684711995,
77
+ "grad_norm": 1.1015625,
78
+ "learning_rate": 4.9500000000000004e-05,
79
+ "loss": 0.3292886257171631,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.04763967085318319,
84
+ "grad_norm": 1.03125,
85
+ "learning_rate": 4.999795215342401e-05,
86
+ "loss": 0.3398285865783691,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.0519705500216544,
91
+ "grad_norm": 0.94921875,
92
+ "learning_rate": 4.999087360832838e-05,
93
+ "loss": 0.3274256229400635,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.056301429190125596,
98
+ "grad_norm": 1.0078125,
99
+ "learning_rate": 4.9978740513992555e-05,
100
+ "loss": 0.32653069496154785,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.060632308358596794,
105
+ "grad_norm": 0.92578125,
106
+ "learning_rate": 4.996155532440529e-05,
107
+ "loss": 0.34501988887786866,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.06496318752706799,
112
+ "grad_norm": 0.58984375,
113
+ "learning_rate": 4.9939321515370904e-05,
114
+ "loss": 0.33666629791259767,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.0692940666955392,
119
+ "grad_norm": 0.875,
120
+ "learning_rate": 4.991204358380634e-05,
121
+ "loss": 0.34445130825042725,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.07362494586401039,
126
+ "grad_norm": 0.7109375,
127
+ "learning_rate": 4.9879727046831594e-05,
128
+ "loss": 0.31984710693359375,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.0779558250324816,
133
+ "grad_norm": 0.65625,
134
+ "learning_rate": 4.984237844065383e-05,
135
+ "loss": 0.2977360486984253,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.0822867042009528,
140
+ "grad_norm": 1.0234375,
141
+ "learning_rate": 4.980000531924542e-05,
142
+ "loss": 0.33499305248260497,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.08661758336942399,
147
+ "grad_norm": 1.1953125,
148
+ "learning_rate": 4.975261625281614e-05,
149
+ "loss": 0.3221716403961182,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.0909484625378952,
154
+ "grad_norm": 0.8828125,
155
+ "learning_rate": 4.97002208260797e-05,
156
+ "loss": 0.3402083396911621,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.09527934170636639,
161
+ "grad_norm": 0.875,
162
+ "learning_rate": 4.964282963631529e-05,
163
+ "loss": 0.32864036560058596,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.09961022087483759,
168
+ "grad_norm": 0.8046875,
169
+ "learning_rate": 4.9580454291224156e-05,
170
+ "loss": 0.319922137260437,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.1039411000433088,
175
+ "grad_norm": 0.88671875,
176
+ "learning_rate": 4.951310740658187e-05,
177
+ "loss": 0.34775371551513673,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.10827197921177999,
182
+ "grad_norm": 0.703125,
183
+ "learning_rate": 4.944080260368675e-05,
184
+ "loss": 0.3269499778747559,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.11260285838025119,
189
+ "grad_norm": 1.0078125,
190
+ "learning_rate": 4.936355450660487e-05,
191
+ "loss": 0.3431516170501709,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.1169337375487224,
196
+ "grad_norm": 0.86328125,
197
+ "learning_rate": 4.9281378739212225e-05,
198
+ "loss": 0.33036587238311765,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.12126461671719359,
203
+ "grad_norm": 0.87109375,
204
+ "learning_rate": 4.919429192203473e-05,
205
+ "loss": 0.31238555908203125,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.1255954958856648,
210
+ "grad_norm": 0.828125,
211
+ "learning_rate": 4.9102311668886634e-05,
212
+ "loss": 0.34010791778564453,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.12992637505413598,
217
+ "grad_norm": 1.0390625,
218
+ "learning_rate": 4.9005456583308016e-05,
219
+ "loss": 0.37534093856811523,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.1342572542226072,
224
+ "grad_norm": 0.90625,
225
+ "learning_rate": 4.8903746254802096e-05,
226
+ "loss": 0.33760197162628175,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.1385881333910784,
231
+ "grad_norm": 1.1328125,
232
+ "learning_rate": 4.879720125487317e-05,
233
+ "loss": 0.3542941093444824,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.14291901255954959,
238
+ "grad_norm": 0.875,
239
+ "learning_rate": 4.868584313286589e-05,
240
+ "loss": 0.3184266805648804,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.14724989172802078,
245
+ "grad_norm": 1.0625,
246
+ "learning_rate": 4.8569694411606784e-05,
247
+ "loss": 0.3295663595199585,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.151580770896492,
252
+ "grad_norm": 0.9609375,
253
+ "learning_rate": 4.844877858284886e-05,
254
+ "loss": 0.3455744504928589,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.1559116500649632,
259
+ "grad_norm": 0.8203125,
260
+ "learning_rate": 4.8323120102520334e-05,
261
+ "loss": 0.32991776466369627,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.16024252923343438,
266
+ "grad_norm": 0.6953125,
267
+ "learning_rate": 4.8192744385778185e-05,
268
+ "loss": 0.33624818325042727,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.1645734084019056,
273
+ "grad_norm": 0.75390625,
274
+ "learning_rate": 4.805767780186786e-05,
275
+ "loss": 0.29813156127929685,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.1689042875703768,
280
+ "grad_norm": 39.5,
281
+ "learning_rate": 4.7917947668789926e-05,
282
+ "loss": 0.3126053810119629,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.17323516673884798,
287
+ "grad_norm": 0.94921875,
288
+ "learning_rate": 4.7773582247774806e-05,
289
+ "loss": 0.30437936782836916,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.1775660459073192,
294
+ "grad_norm": 0.609375,
295
+ "learning_rate": 4.7624610737566846e-05,
296
+ "loss": 0.313838791847229,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.1818969250757904,
301
+ "grad_norm": 1.015625,
302
+ "learning_rate": 4.747106326851864e-05,
303
+ "loss": 0.3429024457931519,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.18622780424426158,
308
+ "grad_norm": 0.76953125,
309
+ "learning_rate": 4.731297089649703e-05,
310
+ "loss": 0.3326719284057617,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.19055868341273277,
315
+ "grad_norm": 0.65234375,
316
+ "learning_rate": 4.7150365596601876e-05,
317
+ "loss": 0.3007481336593628,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.194889562581204,
322
+ "grad_norm": 0.86328125,
323
+ "learning_rate": 4.6983280256698864e-05,
324
+ "loss": 0.3022452354431152,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.19922044174967518,
329
+ "grad_norm": 0.8046875,
330
+ "learning_rate": 4.68117486707678e-05,
331
+ "loss": 0.31449906826019286,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.20355132091814637,
336
+ "grad_norm": 1.015625,
337
+ "learning_rate": 4.663580553206755e-05,
338
+ "loss": 0.316056227684021,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.2078822000866176,
343
+ "grad_norm": 0.8671875,
344
+ "learning_rate": 4.645548642611913e-05,
345
+ "loss": 0.31620476245880125,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.21221307925508878,
350
+ "grad_norm": 0.765625,
351
+ "learning_rate": 4.627082782350833e-05,
352
+ "loss": 0.3331968069076538,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.21654395842355997,
357
+ "grad_norm": 0.67578125,
358
+ "learning_rate": 4.6081867072509334e-05,
359
+ "loss": 0.32191483974456786,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.2208748375920312,
364
+ "grad_norm": 0.91015625,
365
+ "learning_rate": 4.58886423915308e-05,
366
+ "loss": 0.3320103406906128,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.22520571676050238,
371
+ "grad_norm": 0.91015625,
372
+ "learning_rate": 4.569119286138598e-05,
373
+ "loss": 0.3349184036254883,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.22953659592897357,
378
+ "grad_norm": 1.0703125,
379
+ "learning_rate": 4.548955841738839e-05,
380
+ "loss": 0.3133854389190674,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.2338674750974448,
385
+ "grad_norm": 1.1328125,
386
+ "learning_rate": 4.528377984127466e-05,
387
+ "loss": 0.31101830005645753,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 0.23819835426591598,
392
+ "grad_norm": 0.87890625,
393
+ "learning_rate": 4.50738987529562e-05,
394
+ "loss": 0.32517337799072266,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 0.24252923343438718,
399
+ "grad_norm": 0.6328125,
400
+ "learning_rate": 4.485995760210132e-05,
401
+ "loss": 0.31145153045654295,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 0.24686011260285837,
406
+ "grad_norm": 0.9609375,
407
+ "learning_rate": 4.464199965954954e-05,
408
+ "loss": 0.33439595699310304,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 0.25032481593763534,
413
+ "eval_text_loss": 1.6730986833572388,
414
+ "eval_text_model_preparation_time": 0.0199,
415
+ "eval_text_runtime": 23.6907,
416
+ "eval_text_samples_per_second": 13.93,
417
+ "eval_text_steps_per_second": 13.93,
418
+ "step": 578
419
+ },
420
+ {
421
+ "epoch": 0.25032481593763534,
422
+ "eval_audio_loss": 0.8745406866073608,
423
+ "eval_audio_model_preparation_time": 0.0199,
424
+ "eval_audio_runtime": 45.6232,
425
+ "eval_audio_samples_per_second": 5.611,
426
+ "eval_audio_steps_per_second": 5.611,
427
+ "step": 578
428
+ },
429
+ {
430
+ "epoch": 0.2511909917713296,
431
+ "grad_norm": 0.6015625,
432
+ "learning_rate": 4.442006900855983e-05,
433
+ "loss": 0.3008127689361572,
434
+ "step": 580
435
+ },
436
+ {
437
+ "epoch": 0.2555218709398008,
438
+ "grad_norm": 0.984375,
439
+ "learning_rate": 4.4194210535894475e-05,
440
+ "loss": 0.3019113063812256,
441
+ "step": 590
442
+ },
443
+ {
444
+ "epoch": 0.25985275010827197,
445
+ "grad_norm": 0.890625,
446
+ "learning_rate": 4.3964469922740526e-05,
447
+ "loss": 0.33276543617248533,
448
+ "step": 600
449
+ },
450
+ {
451
+ "epoch": 0.26418362927674316,
452
+ "grad_norm": 0.83984375,
453
+ "learning_rate": 4.3730893635470456e-05,
454
+ "loss": 0.32658073902130125,
455
+ "step": 610
456
+ },
457
+ {
458
+ "epoch": 0.2685145084452144,
459
+ "grad_norm": 0.71875,
460
+ "learning_rate": 4.3493528916244094e-05,
461
+ "loss": 0.2932913303375244,
462
+ "step": 620
463
+ },
464
+ {
465
+ "epoch": 0.2728453876136856,
466
+ "grad_norm": 1.0390625,
467
+ "learning_rate": 4.3252423773453623e-05,
468
+ "loss": 0.28568110466003416,
469
+ "step": 630
470
+ },
471
+ {
472
+ "epoch": 0.2771762667821568,
473
+ "grad_norm": 0.765625,
474
+ "learning_rate": 4.3007626972013596e-05,
475
+ "loss": 0.31102354526519777,
476
+ "step": 640
477
+ },
478
+ {
479
+ "epoch": 0.281507145950628,
480
+ "grad_norm": 0.82421875,
481
+ "learning_rate": 4.2759188023497984e-05,
482
+ "loss": 0.3104224681854248,
483
+ "step": 650
484
+ },
485
+ {
486
+ "epoch": 0.28583802511909917,
487
+ "grad_norm": 0.8671875,
488
+ "learning_rate": 4.250715717612611e-05,
489
+ "loss": 0.30080304145812986,
490
+ "step": 660
491
+ },
492
+ {
493
+ "epoch": 0.29016890428757036,
494
+ "grad_norm": 0.78515625,
495
+ "learning_rate": 4.22515854045997e-05,
496
+ "loss": 0.319173264503479,
497
+ "step": 670
498
+ },
499
+ {
500
+ "epoch": 0.29449978345604155,
501
+ "grad_norm": 0.96875,
502
+ "learning_rate": 4.1992524399792945e-05,
503
+ "loss": 0.33753151893615724,
504
+ "step": 680
505
+ },
506
+ {
507
+ "epoch": 0.2988306626245128,
508
+ "grad_norm": 0.75,
509
+ "learning_rate": 4.173002655829771e-05,
510
+ "loss": 0.30184378623962405,
511
+ "step": 690
512
+ },
513
+ {
514
+ "epoch": 0.303161541792984,
515
+ "grad_norm": 0.921875,
516
+ "learning_rate": 4.1464144971826056e-05,
517
+ "loss": 0.2979575157165527,
518
+ "step": 700
519
+ },
520
+ {
521
+ "epoch": 0.3074924209614552,
522
+ "grad_norm": 0.625,
523
+ "learning_rate": 4.119493341647208e-05,
524
+ "loss": 0.3160278558731079,
525
+ "step": 710
526
+ },
527
+ {
528
+ "epoch": 0.3118233001299264,
529
+ "grad_norm": 0.92578125,
530
+ "learning_rate": 4.0922446341835405e-05,
531
+ "loss": 0.3350363254547119,
532
+ "step": 720
533
+ },
534
+ {
535
+ "epoch": 0.31615417929839756,
536
+ "grad_norm": 0.734375,
537
+ "learning_rate": 4.064673886000847e-05,
538
+ "loss": 0.2890045642852783,
539
+ "step": 730
540
+ },
541
+ {
542
+ "epoch": 0.32048505846686876,
543
+ "grad_norm": 0.83203125,
544
+ "learning_rate": 4.036786673442974e-05,
545
+ "loss": 0.3226451396942139,
546
+ "step": 740
547
+ },
548
+ {
549
+ "epoch": 0.32481593763533995,
550
+ "grad_norm": 0.67578125,
551
+ "learning_rate": 4.0085886368605256e-05,
552
+ "loss": 0.3058380842208862,
553
+ "step": 750
554
+ },
555
+ {
556
+ "epoch": 0.3291468168038112,
557
+ "grad_norm": 1.109375,
558
+ "learning_rate": 3.9800854794700685e-05,
559
+ "loss": 0.3117943286895752,
560
+ "step": 760
561
+ },
562
+ {
563
+ "epoch": 0.3334776959722824,
564
+ "grad_norm": 1.3125,
565
+ "learning_rate": 3.951282966200624e-05,
566
+ "loss": 0.3291532039642334,
567
+ "step": 770
568
+ },
569
+ {
570
+ "epoch": 0.3378085751407536,
571
+ "grad_norm": 0.8671875,
572
+ "learning_rate": 3.922186922527677e-05,
573
+ "loss": 0.32024178504943845,
574
+ "step": 780
575
+ },
576
+ {
577
+ "epoch": 0.34213945430922477,
578
+ "grad_norm": 0.78515625,
579
+ "learning_rate": 3.892803233294942e-05,
580
+ "loss": 0.32744786739349363,
581
+ "step": 790
582
+ },
583
+ {
584
+ "epoch": 0.34647033347769596,
585
+ "grad_norm": 0.796875,
586
+ "learning_rate": 3.8631378415241135e-05,
587
+ "loss": 0.26966466903686526,
588
+ "step": 800
589
+ },
590
+ {
591
+ "epoch": 0.35080121264616715,
592
+ "grad_norm": 0.89453125,
593
+ "learning_rate": 3.833196747212865e-05,
594
+ "loss": 0.33243422508239745,
595
+ "step": 810
596
+ },
597
+ {
598
+ "epoch": 0.3551320918146384,
599
+ "grad_norm": 0.95703125,
600
+ "learning_rate": 3.802986006121304e-05,
601
+ "loss": 0.3162668228149414,
602
+ "step": 820
603
+ },
604
+ {
605
+ "epoch": 0.3594629709831096,
606
+ "grad_norm": 0.498046875,
607
+ "learning_rate": 3.772511728547168e-05,
608
+ "loss": 0.2786050319671631,
609
+ "step": 830
610
+ },
611
+ {
612
+ "epoch": 0.3637938501515808,
613
+ "grad_norm": 0.703125,
614
+ "learning_rate": 3.741780078089975e-05,
615
+ "loss": 0.3166247844696045,
616
+ "step": 840
617
+ },
618
+ {
619
+ "epoch": 0.36812472932005197,
620
+ "grad_norm": 0.84765625,
621
+ "learning_rate": 3.710797270404405e-05,
622
+ "loss": 0.3263724327087402,
623
+ "step": 850
624
+ },
625
+ {
626
+ "epoch": 0.37245560848852316,
627
+ "grad_norm": 0.498046875,
628
+ "learning_rate": 3.6795695719431436e-05,
629
+ "loss": 0.3051194667816162,
630
+ "step": 860
631
+ },
632
+ {
633
+ "epoch": 0.37678648765699435,
634
+ "grad_norm": 0.9375,
635
+ "learning_rate": 3.6481032986894566e-05,
636
+ "loss": 0.3087512254714966,
637
+ "step": 870
638
+ },
639
+ {
640
+ "epoch": 0.38111736682546554,
641
+ "grad_norm": 1.0859375,
642
+ "learning_rate": 3.616404814879748e-05,
643
+ "loss": 0.31677100658416746,
644
+ "step": 880
645
+ },
646
+ {
647
+ "epoch": 0.3854482459939368,
648
+ "grad_norm": 0.59375,
649
+ "learning_rate": 3.5844805317163525e-05,
650
+ "loss": 0.3010247707366943,
651
+ "step": 890
652
+ },
653
+ {
654
+ "epoch": 0.389779125162408,
655
+ "grad_norm": 0.86328125,
656
+ "learning_rate": 3.552336906070838e-05,
657
+ "loss": 0.2823305606842041,
658
+ "step": 900
659
+ },
660
+ {
661
+ "epoch": 0.39411000433087917,
662
+ "grad_norm": 1.046875,
663
+ "learning_rate": 3.5199804391780594e-05,
664
+ "loss": 0.3044945240020752,
665
+ "step": 910
666
+ },
667
+ {
668
+ "epoch": 0.39844088349935036,
669
+ "grad_norm": 1.265625,
670
+ "learning_rate": 3.48741767532125e-05,
671
+ "loss": 0.31587924957275393,
672
+ "step": 920
673
+ },
674
+ {
675
+ "epoch": 0.40277176266782155,
676
+ "grad_norm": 1.203125,
677
+ "learning_rate": 3.454655200508402e-05,
678
+ "loss": 0.32800912857055664,
679
+ "step": 930
680
+ },
681
+ {
682
+ "epoch": 0.40710264183629274,
683
+ "grad_norm": 0.8125,
684
+ "learning_rate": 3.4216996411402077e-05,
685
+ "loss": 0.30738139152526855,
686
+ "step": 940
687
+ },
688
+ {
689
+ "epoch": 0.411433521004764,
690
+ "grad_norm": 0.63671875,
691
+ "learning_rate": 3.388557662669831e-05,
692
+ "loss": 0.2966631889343262,
693
+ "step": 950
694
+ },
695
+ {
696
+ "epoch": 0.4157644001732352,
697
+ "grad_norm": 0.83984375,
698
+ "learning_rate": 3.355235968254782e-05,
699
+ "loss": 0.30721249580383303,
700
+ "step": 960
701
+ },
702
+ {
703
+ "epoch": 0.4200952793417064,
704
+ "grad_norm": 0.90234375,
705
+ "learning_rate": 3.321741297401162e-05,
706
+ "loss": 0.29646241664886475,
707
+ "step": 970
708
+ },
709
+ {
710
+ "epoch": 0.42442615851017756,
711
+ "grad_norm": 1.1875,
712
+ "learning_rate": 3.288080424600563e-05,
713
+ "loss": 0.30686221122741697,
714
+ "step": 980
715
+ },
716
+ {
717
+ "epoch": 0.42875703767864876,
718
+ "grad_norm": 0.76953125,
719
+ "learning_rate": 3.254260157959884e-05,
720
+ "loss": 0.2886993408203125,
721
+ "step": 990
722
+ },
723
+ {
724
+ "epoch": 0.43308791684711995,
725
+ "grad_norm": 0.6328125,
726
+ "learning_rate": 3.220287337824355e-05,
727
+ "loss": 0.2889398097991943,
728
+ "step": 1000
729
+ },
730
+ {
731
+ "epoch": 0.43741879601559114,
732
+ "grad_norm": 0.80859375,
733
+ "learning_rate": 3.186168835394032e-05,
734
+ "loss": 0.28464765548706056,
735
+ "step": 1010
736
+ },
737
+ {
738
+ "epoch": 0.4417496751840624,
739
+ "grad_norm": 0.87890625,
740
+ "learning_rate": 3.151911551334066e-05,
741
+ "loss": 0.2970520734786987,
742
+ "step": 1020
743
+ },
744
+ {
745
+ "epoch": 0.4460805543525336,
746
+ "grad_norm": 1.046875,
747
+ "learning_rate": 3.1175224143789946e-05,
748
+ "loss": 0.27363173961639403,
749
+ "step": 1030
750
+ },
751
+ {
752
+ "epoch": 0.45041143352100477,
753
+ "grad_norm": 1.0546875,
754
+ "learning_rate": 3.083008379931369e-05,
755
+ "loss": 0.3226848840713501,
756
+ "step": 1040
757
+ },
758
+ {
759
+ "epoch": 0.45474231268947596,
760
+ "grad_norm": 0.9921875,
761
+ "learning_rate": 3.0483764286549843e-05,
762
+ "loss": 0.3007674217224121,
763
+ "step": 1050
764
+ },
765
+ {
766
+ "epoch": 0.45907319185794715,
767
+ "grad_norm": 1.0859375,
768
+ "learning_rate": 3.013633565062999e-05,
769
+ "loss": 0.2832650661468506,
770
+ "step": 1060
771
+ },
772
+ {
773
+ "epoch": 0.46340407102641834,
774
+ "grad_norm": 0.60546875,
775
+ "learning_rate": 2.978786816101229e-05,
776
+ "loss": 0.30285255908966063,
777
+ "step": 1070
778
+ },
779
+ {
780
+ "epoch": 0.4677349501948896,
781
+ "grad_norm": 0.98828125,
782
+ "learning_rate": 2.9438432297269113e-05,
783
+ "loss": 0.3115823268890381,
784
+ "step": 1080
785
+ },
786
+ {
787
+ "epoch": 0.4720658293633608,
788
+ "grad_norm": 0.5625,
789
+ "learning_rate": 2.9088098734832105e-05,
790
+ "loss": 0.31290392875671386,
791
+ "step": 1090
792
+ },
793
+ {
794
+ "epoch": 0.47639670853183197,
795
+ "grad_norm": 0.95703125,
796
+ "learning_rate": 2.873693833069769e-05,
797
+ "loss": 0.32068135738372805,
798
+ "step": 1100
799
+ },
800
+ {
801
+ "epoch": 0.48072758770030316,
802
+ "grad_norm": 1.1640625,
803
+ "learning_rate": 2.8385022109095828e-05,
804
+ "loss": 0.29875409603118896,
805
+ "step": 1110
806
+ },
807
+ {
808
+ "epoch": 0.48505846686877435,
809
+ "grad_norm": 0.86328125,
810
+ "learning_rate": 2.803242124712493e-05,
811
+ "loss": 0.30289008617401125,
812
+ "step": 1120
813
+ },
814
+ {
815
+ "epoch": 0.48938934603724554,
816
+ "grad_norm": 0.8828125,
817
+ "learning_rate": 2.7679207060355912e-05,
818
+ "loss": 0.3129941463470459,
819
+ "step": 1130
820
+ },
821
+ {
822
+ "epoch": 0.49372022520571673,
823
+ "grad_norm": 0.8203125,
824
+ "learning_rate": 2.7325450988408185e-05,
825
+ "loss": 0.28847951889038087,
826
+ "step": 1140
827
+ },
828
+ {
829
+ "epoch": 0.498051104374188,
830
+ "grad_norm": 0.64453125,
831
+ "learning_rate": 2.6971224580500592e-05,
832
+ "loss": 0.3122821092605591,
833
+ "step": 1150
834
+ },
835
+ {
836
+ "epoch": 0.5006496318752707,
837
+ "eval_text_loss": 1.580957055091858,
838
+ "eval_text_model_preparation_time": 0.0199,
839
+ "eval_text_runtime": 23.7145,
840
+ "eval_text_samples_per_second": 13.916,
841
+ "eval_text_steps_per_second": 13.916,
842
+ "step": 1156
843
+ },
844
+ {
845
+ "epoch": 0.5006496318752707,
846
+ "eval_audio_loss": 0.8451715111732483,
847
+ "eval_audio_model_preparation_time": 0.0199,
848
+ "eval_audio_runtime": 46.4407,
849
+ "eval_audio_samples_per_second": 5.512,
850
+ "eval_audio_steps_per_second": 5.512,
851
+ "step": 1156
852
+ },
853
+ {
854
+ "epoch": 0.5023819835426592,
855
+ "grad_norm": 0.66796875,
856
+ "learning_rate": 2.6616599480980143e-05,
857
+ "loss": 0.32015998363494874,
858
+ "step": 1160
859
+ },
860
+ {
861
+ "epoch": 0.5067128627111304,
862
+ "grad_norm": 0.8828125,
863
+ "learning_rate": 2.626164741483154e-05,
864
+ "loss": 0.30613036155700685,
865
+ "step": 1170
866
+ },
867
+ {
868
+ "epoch": 0.5110437418796016,
869
+ "grad_norm": 0.84375,
870
+ "learning_rate": 2.5906440173170386e-05,
871
+ "loss": 0.30779805183410647,
872
+ "step": 1180
873
+ },
874
+ {
875
+ "epoch": 0.5153746210480727,
876
+ "grad_norm": 0.890625,
877
+ "learning_rate": 2.5551049598723027e-05,
878
+ "loss": 0.29211466312408446,
879
+ "step": 1190
880
+ },
881
+ {
882
+ "epoch": 0.5197055002165439,
883
+ "grad_norm": 1.0703125,
884
+ "learning_rate": 2.5195547571295898e-05,
885
+ "loss": 0.29266557693481443,
886
+ "step": 1200
887
+ },
888
+ {
889
+ "epoch": 0.5240363793850151,
890
+ "grad_norm": 0.5703125,
891
+ "learning_rate": 2.484000599323747e-05,
892
+ "loss": 0.2896392583847046,
893
+ "step": 1210
894
+ },
895
+ {
896
+ "epoch": 0.5283672585534863,
897
+ "grad_norm": 0.81640625,
898
+ "learning_rate": 2.448449677489555e-05,
899
+ "loss": 0.298609185218811,
900
+ "step": 1220
901
+ },
902
+ {
903
+ "epoch": 0.5326981377219575,
904
+ "grad_norm": 0.54296875,
905
+ "learning_rate": 2.4129091820073015e-05,
906
+ "loss": 0.29924740791320803,
907
+ "step": 1230
908
+ },
909
+ {
910
+ "epoch": 0.5370290168904288,
911
+ "grad_norm": 1.0078125,
912
+ "learning_rate": 2.377386301148482e-05,
913
+ "loss": 0.2744253635406494,
914
+ "step": 1240
915
+ },
916
+ {
917
+ "epoch": 0.5413598960589,
918
+ "grad_norm": 0.6796875,
919
+ "learning_rate": 2.341888219621934e-05,
920
+ "loss": 0.278640079498291,
921
+ "step": 1250
922
+ },
923
+ {
924
+ "epoch": 0.5456907752273712,
925
+ "grad_norm": 0.859375,
926
+ "learning_rate": 2.3064221171206856e-05,
927
+ "loss": 0.28020195960998534,
928
+ "step": 1260
929
+ },
930
+ {
931
+ "epoch": 0.5500216543958424,
932
+ "grad_norm": 0.625,
933
+ "learning_rate": 2.270995166869821e-05,
934
+ "loss": 0.30299355983734133,
935
+ "step": 1270
936
+ },
937
+ {
938
+ "epoch": 0.5543525335643136,
939
+ "grad_norm": 0.84375,
940
+ "learning_rate": 2.2356145341756548e-05,
941
+ "loss": 0.3237317562103271,
942
+ "step": 1280
943
+ },
944
+ {
945
+ "epoch": 0.5586834127327848,
946
+ "grad_norm": 0.76171875,
947
+ "learning_rate": 2.2002873749765076e-05,
948
+ "loss": 0.3258683681488037,
949
+ "step": 1290
950
+ },
951
+ {
952
+ "epoch": 0.563014291901256,
953
+ "grad_norm": 0.90625,
954
+ "learning_rate": 2.1650208343953747e-05,
955
+ "loss": 0.32569427490234376,
956
+ "step": 1300
957
+ },
958
+ {
959
+ "epoch": 0.5673451710697271,
960
+ "grad_norm": 0.76171875,
961
+ "learning_rate": 2.1298220452947826e-05,
962
+ "loss": 0.28685925006866453,
963
+ "step": 1310
964
+ },
965
+ {
966
+ "epoch": 0.5716760502381983,
967
+ "grad_norm": 0.765625,
968
+ "learning_rate": 2.0946981268341297e-05,
969
+ "loss": 0.27852678298950195,
970
+ "step": 1320
971
+ },
972
+ {
973
+ "epoch": 0.5760069294066695,
974
+ "grad_norm": 0.6640625,
975
+ "learning_rate": 2.059656183029792e-05,
976
+ "loss": 0.30152413845062254,
977
+ "step": 1330
978
+ },
979
+ {
980
+ "epoch": 0.5803378085751407,
981
+ "grad_norm": 0.984375,
982
+ "learning_rate": 2.0247033013182955e-05,
983
+ "loss": 0.30128428936004636,
984
+ "step": 1340
985
+ },
986
+ {
987
+ "epoch": 0.5846686877436119,
988
+ "grad_norm": 1.15625,
989
+ "learning_rate": 1.9898465511228416e-05,
990
+ "loss": 0.31016106605529786,
991
+ "step": 1350
992
+ },
993
+ {
994
+ "epoch": 0.5889995669120831,
995
+ "grad_norm": 0.7109375,
996
+ "learning_rate": 1.9550929824234736e-05,
997
+ "loss": 0.2842914342880249,
998
+ "step": 1360
999
+ },
1000
+ {
1001
+ "epoch": 0.5933304460805544,
1002
+ "grad_norm": 0.8046875,
1003
+ "learning_rate": 1.920449624331179e-05,
1004
+ "loss": 0.2784018278121948,
1005
+ "step": 1370
1006
+ },
1007
+ {
1008
+ "epoch": 0.5976613252490256,
1009
+ "grad_norm": 0.8359375,
1010
+ "learning_rate": 1.8859234836662117e-05,
1011
+ "loss": 0.28922812938690184,
1012
+ "step": 1380
1013
+ },
1014
+ {
1015
+ "epoch": 0.6019922044174968,
1016
+ "grad_norm": 0.80859375,
1017
+ "learning_rate": 1.851521543540916e-05,
1018
+ "loss": 0.31638059616088865,
1019
+ "step": 1390
1020
+ },
1021
+ {
1022
+ "epoch": 0.606323083585968,
1023
+ "grad_norm": 1.09375,
1024
+ "learning_rate": 1.8172507619473614e-05,
1025
+ "loss": 0.30915663242340086,
1026
+ "step": 1400
1027
+ },
1028
+ {
1029
+ "epoch": 0.6106539627544392,
1030
+ "grad_norm": 0.68359375,
1031
+ "learning_rate": 1.78311807035004e-05,
1032
+ "loss": 0.31648037433624265,
1033
+ "step": 1410
1034
+ },
1035
+ {
1036
+ "epoch": 0.6149848419229104,
1037
+ "grad_norm": 0.56640625,
1038
+ "learning_rate": 1.749130372283942e-05,
1039
+ "loss": 0.3143639326095581,
1040
+ "step": 1420
1041
+ },
1042
+ {
1043
+ "epoch": 0.6193157210913816,
1044
+ "grad_norm": 0.9375,
1045
+ "learning_rate": 1.715294541958274e-05,
1046
+ "loss": 0.2913862943649292,
1047
+ "step": 1430
1048
+ },
1049
+ {
1050
+ "epoch": 0.6236466002598527,
1051
+ "grad_norm": 0.703125,
1052
+ "learning_rate": 1.6816174228661097e-05,
1053
+ "loss": 0.28313374519348145,
1054
+ "step": 1440
1055
+ },
1056
+ {
1057
+ "epoch": 0.6279774794283239,
1058
+ "grad_norm": 0.90234375,
1059
+ "learning_rate": 1.648105826400256e-05,
1060
+ "loss": 0.28623785972595217,
1061
+ "step": 1450
1062
+ },
1063
+ {
1064
+ "epoch": 0.6323083585967951,
1065
+ "grad_norm": 0.9765625,
1066
+ "learning_rate": 1.6147665304756084e-05,
1067
+ "loss": 0.2705575227737427,
1068
+ "step": 1460
1069
+ },
1070
+ {
1071
+ "epoch": 0.6366392377652663,
1072
+ "grad_norm": 0.78515625,
1073
+ "learning_rate": 1.581606278158274e-05,
1074
+ "loss": 0.30232059955596924,
1075
+ "step": 1470
1076
+ },
1077
+ {
1078
+ "epoch": 0.6409701169337375,
1079
+ "grad_norm": 0.734375,
1080
+ "learning_rate": 1.548631776301756e-05,
1081
+ "loss": 0.29305553436279297,
1082
+ "step": 1480
1083
+ },
1084
+ {
1085
+ "epoch": 0.6453009961022087,
1086
+ "grad_norm": 0.8515625,
1087
+ "learning_rate": 1.5158496941904462e-05,
1088
+ "loss": 0.2765927314758301,
1089
+ "step": 1490
1090
+ },
1091
+ {
1092
+ "epoch": 0.6496318752706799,
1093
+ "grad_norm": 0.91015625,
1094
+ "learning_rate": 1.4832666621907265e-05,
1095
+ "loss": 0.2911043882369995,
1096
+ "step": 1500
1097
+ },
1098
+ {
1099
+ "epoch": 0.6539627544391512,
1100
+ "grad_norm": 0.87109375,
1101
+ "learning_rate": 1.4508892704099392e-05,
1102
+ "loss": 0.2826990604400635,
1103
+ "step": 1510
1104
+ },
1105
+ {
1106
+ "epoch": 0.6582936336076224,
1107
+ "grad_norm": 0.91796875,
1108
+ "learning_rate": 1.4187240673634964e-05,
1109
+ "loss": 0.2976381778717041,
1110
+ "step": 1520
1111
+ },
1112
+ {
1113
+ "epoch": 0.6626245127760936,
1114
+ "grad_norm": 0.8359375,
1115
+ "learning_rate": 1.3867775586504094e-05,
1116
+ "loss": 0.28958122730255126,
1117
+ "step": 1530
1118
+ },
1119
+ {
1120
+ "epoch": 0.6669553919445648,
1121
+ "grad_norm": 1.0625,
1122
+ "learning_rate": 1.3550562056374908e-05,
1123
+ "loss": 0.34233570098876953,
1124
+ "step": 1540
1125
+ },
1126
+ {
1127
+ "epoch": 0.671286271113036,
1128
+ "grad_norm": 0.80859375,
1129
+ "learning_rate": 1.3235664241525052e-05,
1130
+ "loss": 0.30748577117919923,
1131
+ "step": 1550
1132
+ },
1133
+ {
1134
+ "epoch": 0.6756171502815072,
1135
+ "grad_norm": 0.7265625,
1136
+ "learning_rate": 1.2923145831865325e-05,
1137
+ "loss": 0.279698920249939,
1138
+ "step": 1560
1139
+ },
1140
+ {
1141
+ "epoch": 0.6799480294499783,
1142
+ "grad_norm": 0.78515625,
1143
+ "learning_rate": 1.2613070036058005e-05,
1144
+ "loss": 0.2836109399795532,
1145
+ "step": 1570
1146
+ },
1147
+ {
1148
+ "epoch": 0.6842789086184495,
1149
+ "grad_norm": 0.80078125,
1150
+ "learning_rate": 1.2305499568732554e-05,
1151
+ "loss": 0.30521063804626464,
1152
+ "step": 1580
1153
+ },
1154
+ {
1155
+ "epoch": 0.6886097877869207,
1156
+ "grad_norm": 0.7265625,
1157
+ "learning_rate": 1.2000496637801195e-05,
1158
+ "loss": 0.2962735891342163,
1159
+ "step": 1590
1160
+ },
1161
+ {
1162
+ "epoch": 0.6929406669553919,
1163
+ "grad_norm": 0.9140625,
1164
+ "learning_rate": 1.1698122931877018e-05,
1165
+ "loss": 0.2767336845397949,
1166
+ "step": 1600
1167
+ },
1168
+ {
1169
+ "epoch": 0.6972715461238631,
1170
+ "grad_norm": 0.78515625,
1171
+ "learning_rate": 1.1398439607797098e-05,
1172
+ "loss": 0.2979475975036621,
1173
+ "step": 1610
1174
+ },
1175
+ {
1176
+ "epoch": 0.7016024252923343,
1177
+ "grad_norm": 0.8828125,
1178
+ "learning_rate": 1.1101507278253167e-05,
1179
+ "loss": 0.26526603698730467,
1180
+ "step": 1620
1181
+ },
1182
+ {
1183
+ "epoch": 0.7059333044608055,
1184
+ "grad_norm": 0.9609375,
1185
+ "learning_rate": 1.080738599953233e-05,
1186
+ "loss": 0.28164918422698976,
1187
+ "step": 1630
1188
+ },
1189
+ {
1190
+ "epoch": 0.7102641836292768,
1191
+ "grad_norm": 0.72265625,
1192
+ "learning_rate": 1.0516135259370355e-05,
1193
+ "loss": 0.3067033767700195,
1194
+ "step": 1640
1195
+ },
1196
+ {
1197
+ "epoch": 0.714595062797748,
1198
+ "grad_norm": 0.91015625,
1199
+ "learning_rate": 1.0227813964919938e-05,
1200
+ "loss": 0.299686861038208,
1201
+ "step": 1650
1202
+ },
1203
+ {
1204
+ "epoch": 0.7189259419662192,
1205
+ "grad_norm": 0.74609375,
1206
+ "learning_rate": 9.94248043083636e-06,
1207
+ "loss": 0.27935218811035156,
1208
+ "step": 1660
1209
+ },
1210
+ {
1211
+ "epoch": 0.7232568211346904,
1212
+ "grad_norm": 1.1015625,
1213
+ "learning_rate": 9.660192367483038e-06,
1214
+ "loss": 0.2881230115890503,
1215
+ "step": 1670
1216
+ },
1217
+ {
1218
+ "epoch": 0.7275877003031616,
1219
+ "grad_norm": 0.765625,
1220
+ "learning_rate": 9.381006869259243e-06,
1221
+ "loss": 0.29773364067077634,
1222
+ "step": 1680
1223
+ },
1224
+ {
1225
+ "epoch": 0.7319185794716327,
1226
+ "grad_norm": 1.0390625,
1227
+ "learning_rate": 9.104980403052458e-06,
1228
+ "loss": 0.31337528228759765,
1229
+ "step": 1690
1230
+ },
1231
+ {
1232
+ "epoch": 0.7362494586401039,
1233
+ "grad_norm": 0.58984375,
1234
+ "learning_rate": 8.8321687968176e-06,
1235
+ "loss": 0.29222004413604735,
1236
+ "step": 1700
1237
+ },
1238
+ {
1239
+ "epoch": 0.7405803378085751,
1240
+ "grad_norm": 0.94140625,
1241
+ "learning_rate": 8.562627228285478e-06,
1242
+ "loss": 0.2752734661102295,
1243
+ "step": 1710
1244
+ },
1245
+ {
1246
+ "epoch": 0.7449112169770463,
1247
+ "grad_norm": 0.76171875,
1248
+ "learning_rate": 8.296410213802813e-06,
1249
+ "loss": 0.2992286443710327,
1250
+ "step": 1720
1251
+ },
1252
+ {
1253
+ "epoch": 0.7492420961455175,
1254
+ "grad_norm": 1.09375,
1255
+ "learning_rate": 8.033571597305977e-06,
1256
+ "loss": 0.3042688608169556,
1257
+ "step": 1730
1258
+ },
1259
+ {
1260
+ "epoch": 0.750974447812906,
1261
+ "eval_text_loss": 1.555040955543518,
1262
+ "eval_text_model_preparation_time": 0.0199,
1263
+ "eval_text_runtime": 24.438,
1264
+ "eval_text_samples_per_second": 13.504,
1265
+ "eval_text_steps_per_second": 13.504,
1266
+ "step": 1734
1267
+ },
1268
+ {
1269
+ "epoch": 0.750974447812906,
1270
+ "eval_audio_loss": 0.8402940034866333,
1271
+ "eval_audio_model_preparation_time": 0.0199,
1272
+ "eval_audio_runtime": 45.5183,
1273
+ "eval_audio_samples_per_second": 5.624,
1274
+ "eval_audio_steps_per_second": 5.624,
1275
+ "step": 1734
1276
+ },
1277
+ {
1278
+ "epoch": 0.7535729753139887,
1279
+ "grad_norm": 0.8984375,
1280
+ "learning_rate": 7.774164539430734e-06,
1281
+ "loss": 0.300627326965332,
1282
+ "step": 1740
1283
+ },
1284
+ {
1285
+ "epoch": 0.7579038544824599,
1286
+ "grad_norm": 0.87109375,
1287
+ "learning_rate": 7.518241506760196e-06,
1288
+ "loss": 0.2855875253677368,
1289
+ "step": 1750
1290
+ },
1291
+ {
1292
+ "epoch": 0.7622347336509311,
1293
+ "grad_norm": 1.5,
1294
+ "learning_rate": 7.265854261213156e-06,
1295
+ "loss": 0.29245338439941404,
1296
+ "step": 1760
1297
+ },
1298
+ {
1299
+ "epoch": 0.7665656128194024,
1300
+ "grad_norm": 0.56640625,
1301
+ "learning_rate": 7.017053849574945e-06,
1302
+ "loss": 0.2890751361846924,
1303
+ "step": 1770
1304
+ },
1305
+ {
1306
+ "epoch": 0.7708964919878736,
1307
+ "grad_norm": 0.70703125,
1308
+ "learning_rate": 6.771890593172911e-06,
1309
+ "loss": 0.2851340055465698,
1310
+ "step": 1780
1311
+ },
1312
+ {
1313
+ "epoch": 0.7752273711563448,
1314
+ "grad_norm": 1.0078125,
1315
+ "learning_rate": 6.530414077698649e-06,
1316
+ "loss": 0.2948427677154541,
1317
+ "step": 1790
1318
+ },
1319
+ {
1320
+ "epoch": 0.779558250324816,
1321
+ "grad_norm": 0.8359375,
1322
+ "learning_rate": 6.2926731431789954e-06,
1323
+ "loss": 0.3046332597732544,
1324
+ "step": 1800
1325
+ },
1326
+ {
1327
+ "epoch": 0.7838891294932872,
1328
+ "grad_norm": 0.7734375,
1329
+ "learning_rate": 6.058715874097864e-06,
1330
+ "loss": 0.31103029251098635,
1331
+ "step": 1810
1332
+ },
1333
+ {
1334
+ "epoch": 0.7882200086617583,
1335
+ "grad_norm": 0.625,
1336
+ "learning_rate": 5.828589589670871e-06,
1337
+ "loss": 0.29731192588806155,
1338
+ "step": 1820
1339
+ },
1340
+ {
1341
+ "epoch": 0.7925508878302295,
1342
+ "grad_norm": 0.87109375,
1343
+ "learning_rate": 5.60234083427475e-06,
1344
+ "loss": 0.3095412254333496,
1345
+ "step": 1830
1346
+ },
1347
+ {
1348
+ "epoch": 0.7968817669987007,
1349
+ "grad_norm": 0.8125,
1350
+ "learning_rate": 5.380015368033476e-06,
1351
+ "loss": 0.29828534126281736,
1352
+ "step": 1840
1353
+ },
1354
+ {
1355
+ "epoch": 0.8012126461671719,
1356
+ "grad_norm": 0.578125,
1357
+ "learning_rate": 5.161658157563026e-06,
1358
+ "loss": 0.2998827934265137,
1359
+ "step": 1850
1360
+ },
1361
+ {
1362
+ "epoch": 0.8055435253356431,
1363
+ "grad_norm": 0.546875,
1364
+ "learning_rate": 4.947313366876619e-06,
1365
+ "loss": 0.3060743808746338,
1366
+ "step": 1860
1367
+ },
1368
+ {
1369
+ "epoch": 0.8098744045041143,
1370
+ "grad_norm": 0.76953125,
1371
+ "learning_rate": 4.737024348452282e-06,
1372
+ "loss": 0.28541877269744875,
1373
+ "step": 1870
1374
+ },
1375
+ {
1376
+ "epoch": 0.8142052836725855,
1377
+ "grad_norm": 0.77734375,
1378
+ "learning_rate": 4.530833634464548e-06,
1379
+ "loss": 0.3088233947753906,
1380
+ "step": 1880
1381
+ },
1382
+ {
1383
+ "epoch": 0.8185361628410567,
1384
+ "grad_norm": 1.25,
1385
+ "learning_rate": 4.328782928182104e-06,
1386
+ "loss": 0.3078837156295776,
1387
+ "step": 1890
1388
+ },
1389
+ {
1390
+ "epoch": 0.822867042009528,
1391
+ "grad_norm": 0.83984375,
1392
+ "learning_rate": 4.130913095533046e-06,
1393
+ "loss": 0.2788443088531494,
1394
+ "step": 1900
1395
+ },
1396
+ {
1397
+ "epoch": 0.8271979211779992,
1398
+ "grad_norm": 1.1796875,
1399
+ "learning_rate": 3.9372641568395125e-06,
1400
+ "loss": 0.2981949090957642,
1401
+ "step": 1910
1402
+ },
1403
+ {
1404
+ "epoch": 0.8315288003464704,
1405
+ "grad_norm": 0.8984375,
1406
+ "learning_rate": 3.747875278723334e-06,
1407
+ "loss": 0.29841878414154055,
1408
+ "step": 1920
1409
+ },
1410
+ {
1411
+ "epoch": 0.8358596795149416,
1412
+ "grad_norm": 0.87890625,
1413
+ "learning_rate": 3.562784766184371e-06,
1414
+ "loss": 0.3009059190750122,
1415
+ "step": 1930
1416
+ },
1417
+ {
1418
+ "epoch": 0.8401905586834127,
1419
+ "grad_norm": 0.7578125,
1420
+ "learning_rate": 3.3820300548530943e-06,
1421
+ "loss": 0.29599244594573976,
1422
+ "step": 1940
1423
+ },
1424
+ {
1425
+ "epoch": 0.8445214378518839,
1426
+ "grad_norm": 0.8203125,
1427
+ "learning_rate": 3.205647703419015e-06,
1428
+ "loss": 0.2934562683105469,
1429
+ "step": 1950
1430
+ },
1431
+ {
1432
+ "epoch": 0.8488523170203551,
1433
+ "grad_norm": 0.80859375,
1434
+ "learning_rate": 3.0336733862364684e-06,
1435
+ "loss": 0.29344346523284914,
1436
+ "step": 1960
1437
+ },
1438
+ {
1439
+ "epoch": 0.8531831961888263,
1440
+ "grad_norm": 0.96875,
1441
+ "learning_rate": 2.866141886109286e-06,
1442
+ "loss": 0.2922006845474243,
1443
+ "step": 1970
1444
+ },
1445
+ {
1446
+ "epoch": 0.8575140753572975,
1447
+ "grad_norm": 0.62109375,
1448
+ "learning_rate": 2.7030870872557593e-06,
1449
+ "loss": 0.2850653648376465,
1450
+ "step": 1980
1451
+ },
1452
+ {
1453
+ "epoch": 0.8618449545257687,
1454
+ "grad_norm": 0.90625,
1455
+ "learning_rate": 2.544541968455372e-06,
1456
+ "loss": 0.2891335725784302,
1457
+ "step": 1990
1458
+ },
1459
+ {
1460
+ "epoch": 0.8661758336942399,
1461
+ "grad_norm": 0.7109375,
1462
+ "learning_rate": 2.39053859637863e-06,
1463
+ "loss": 0.28892719745635986,
1464
+ "step": 2000
1465
+ },
1466
+ {
1467
+ "epoch": 0.8705067128627111,
1468
+ "grad_norm": 0.72265625,
1469
+ "learning_rate": 2.2411081191014093e-06,
1470
+ "loss": 0.29591898918151854,
1471
+ "step": 2010
1472
+ },
1473
+ {
1474
+ "epoch": 0.8748375920311823,
1475
+ "grad_norm": 1.046875,
1476
+ "learning_rate": 2.096280759805069e-06,
1477
+ "loss": 0.2645926237106323,
1478
+ "step": 2020
1479
+ },
1480
+ {
1481
+ "epoch": 0.8791684711996536,
1482
+ "grad_norm": 1.1640625,
1483
+ "learning_rate": 1.9560858106636408e-06,
1484
+ "loss": 0.2921916007995605,
1485
+ "step": 2030
1486
+ },
1487
+ {
1488
+ "epoch": 0.8834993503681248,
1489
+ "grad_norm": 0.9375,
1490
+ "learning_rate": 1.8205516269193063e-06,
1491
+ "loss": 0.2916860580444336,
1492
+ "step": 2040
1493
+ },
1494
+ {
1495
+ "epoch": 0.887830229536596,
1496
+ "grad_norm": 0.75390625,
1497
+ "learning_rate": 1.6897056211474054e-06,
1498
+ "loss": 0.28798465728759765,
1499
+ "step": 2050
1500
+ },
1501
+ {
1502
+ "epoch": 0.8921611087050672,
1503
+ "grad_norm": 0.84765625,
1504
+ "learning_rate": 1.5635742577120638e-06,
1505
+ "loss": 0.28080263137817385,
1506
+ "step": 2060
1507
+ },
1508
+ {
1509
+ "epoch": 0.8964919878735383,
1510
+ "grad_norm": 0.59765625,
1511
+ "learning_rate": 1.4421830474136339e-06,
1512
+ "loss": 0.2958329677581787,
1513
+ "step": 2070
1514
+ },
1515
+ {
1516
+ "epoch": 0.9008228670420095,
1517
+ "grad_norm": 0.859375,
1518
+ "learning_rate": 1.3255565423289818e-06,
1519
+ "loss": 0.29818201065063477,
1520
+ "step": 2080
1521
+ },
1522
+ {
1523
+ "epoch": 0.9051537462104807,
1524
+ "grad_norm": 0.9453125,
1525
+ "learning_rate": 1.2137183308456867e-06,
1526
+ "loss": 0.30882911682128905,
1527
+ "step": 2090
1528
+ },
1529
+ {
1530
+ "epoch": 0.9094846253789519,
1531
+ "grad_norm": 0.796875,
1532
+ "learning_rate": 1.1066910328911579e-06,
1533
+ "loss": 0.29765470027923585,
1534
+ "step": 2100
1535
+ },
1536
+ {
1537
+ "epoch": 0.9138155045474231,
1538
+ "grad_norm": 0.8125,
1539
+ "learning_rate": 1.0044962953576238e-06,
1540
+ "loss": 0.28506147861480713,
1541
+ "step": 2110
1542
+ },
1543
+ {
1544
+ "epoch": 0.9181463837158943,
1545
+ "grad_norm": 0.77734375,
1546
+ "learning_rate": 9.071547877239017e-07,
1547
+ "loss": 0.2811078310012817,
1548
+ "step": 2120
1549
+ },
1550
+ {
1551
+ "epoch": 0.9224772628843655,
1552
+ "grad_norm": 0.73046875,
1553
+ "learning_rate": 8.146861978749115e-07,
1554
+ "loss": 0.2883314847946167,
1555
+ "step": 2130
1556
+ },
1557
+ {
1558
+ "epoch": 0.9268081420528367,
1559
+ "grad_norm": 0.5234375,
1560
+ "learning_rate": 7.271092281196573e-07,
1561
+ "loss": 0.27544965744018557,
1562
+ "step": 2140
1563
+ },
1564
+ {
1565
+ "epoch": 0.9311390212213079,
1566
+ "grad_norm": 0.97265625,
1567
+ "learning_rate": 6.4444159140859e-07,
1568
+ "loss": 0.3128631353378296,
1569
+ "step": 2150
1570
+ },
1571
+ {
1572
+ "epoch": 0.9354699003897792,
1573
+ "grad_norm": 0.92578125,
1574
+ "learning_rate": 5.667000077510559e-07,
1575
+ "loss": 0.2900621652603149,
1576
+ "step": 2160
1577
+ },
1578
+ {
1579
+ "epoch": 0.9398007795582504,
1580
+ "grad_norm": 0.63671875,
1581
+ "learning_rate": 4.939002008335802e-07,
1582
+ "loss": 0.3027785062789917,
1583
+ "step": 2170
1584
+ },
1585
+ {
1586
+ "epoch": 0.9441316587267216,
1587
+ "grad_norm": 1.140625,
1588
+ "learning_rate": 4.2605689483966037e-07,
1589
+ "loss": 0.3042114734649658,
1590
+ "step": 2180
1591
+ },
1592
+ {
1593
+ "epoch": 0.9484625378951927,
1594
+ "grad_norm": 0.91796875,
1595
+ "learning_rate": 3.6318381147171234e-07,
1596
+ "loss": 0.2658639669418335,
1597
+ "step": 2190
1598
+ },
1599
+ {
1600
+ "epoch": 0.9527934170636639,
1601
+ "grad_norm": 0.75390625,
1602
+ "learning_rate": 3.052936671757739e-07,
1603
+ "loss": 0.28366703987121583,
1604
+ "step": 2200
1605
+ },
1606
+ {
1607
+ "epoch": 0.9571242962321351,
1608
+ "grad_norm": 1.1796875,
1609
+ "learning_rate": 2.523981705695427e-07,
1610
+ "loss": 0.31629841327667235,
1611
+ "step": 2210
1612
+ },
1613
+ {
1614
+ "epoch": 0.9614551754006063,
1615
+ "grad_norm": 1.171875,
1616
+ "learning_rate": 2.0450802007422053e-07,
1617
+ "loss": 0.3071019172668457,
1618
+ "step": 2220
1619
+ },
1620
+ {
1621
+ "epoch": 0.9657860545690775,
1622
+ "grad_norm": 1.0078125,
1623
+ "learning_rate": 1.6163290175071343e-07,
1624
+ "loss": 0.30133790969848634,
1625
+ "step": 2230
1626
+ },
1627
+ {
1628
+ "epoch": 0.9701169337375487,
1629
+ "grad_norm": 0.61328125,
1630
+ "learning_rate": 1.2378148734056017e-07,
1631
+ "loss": 0.2814929962158203,
1632
+ "step": 2240
1633
+ },
1634
+ {
1635
+ "epoch": 0.9744478129060199,
1636
+ "grad_norm": 0.796875,
1637
+ "learning_rate": 9.096143251202115e-08,
1638
+ "loss": 0.28168976306915283,
1639
+ "step": 2250
1640
+ },
1641
+ {
1642
+ "epoch": 0.9787786920744911,
1643
+ "grad_norm": 0.86328125,
1644
+ "learning_rate": 6.317937531168106e-08,
1645
+ "loss": 0.31104719638824463,
1646
+ "step": 2260
1647
+ },
1648
+ {
1649
+ "epoch": 0.9831095712429623,
1650
+ "grad_norm": 0.7890625,
1651
+ "learning_rate": 4.0440934821864286e-08,
1652
+ "loss": 0.2767423868179321,
1653
+ "step": 2270
1654
+ },
1655
+ {
1656
+ "epoch": 0.9874404504114335,
1657
+ "grad_norm": 0.87890625,
1658
+ "learning_rate": 2.2750710024138646e-08,
1659
+ "loss": 0.29538898468017577,
1660
+ "step": 2280
1661
+ },
1662
+ {
1663
+ "epoch": 0.9917713295799048,
1664
+ "grad_norm": 0.71484375,
1665
+ "learning_rate": 1.0112278869145453e-08,
1666
+ "loss": 0.275164270401001,
1667
+ "step": 2290
1668
+ },
1669
+ {
1670
+ "epoch": 0.996102208748376,
1671
+ "grad_norm": 1.1484375,
1672
+ "learning_rate": 2.528197552942313e-09,
1673
+ "loss": 0.30729990005493163,
1674
+ "step": 2300
1675
+ },
1676
+ {
1677
+ "epoch": 1.0,
1678
+ "eval_text_loss": 1.5541865825653076,
1679
+ "eval_text_model_preparation_time": 0.0199,
1680
+ "eval_text_runtime": 24.8156,
1681
+ "eval_text_samples_per_second": 13.298,
1682
+ "eval_text_steps_per_second": 13.298,
1683
+ "step": 2309
1684
+ },
1685
+ {
1686
+ "epoch": 1.0,
1687
+ "eval_audio_loss": 0.8393442034721375,
1688
+ "eval_audio_model_preparation_time": 0.0199,
1689
+ "eval_audio_runtime": 44.203,
1690
+ "eval_audio_samples_per_second": 5.791,
1691
+ "eval_audio_steps_per_second": 5.791,
1692
+ "step": 2309
1693
+ }
1694
+ ],
1695
+ "logging_steps": 10,
1696
+ "max_steps": 2309,
1697
+ "num_input_tokens_seen": 0,
1698
+ "num_train_epochs": 1,
1699
+ "save_steps": 47,
1700
+ "stateful_callbacks": {
1701
+ "TrainerControl": {
1702
+ "args": {
1703
+ "should_epoch_stop": false,
1704
+ "should_evaluate": false,
1705
+ "should_log": false,
1706
+ "should_save": true,
1707
+ "should_training_stop": true
1708
+ },
1709
+ "attributes": {}
1710
+ }
1711
+ },
1712
+ "total_flos": 2.2190042187360576e+17,
1713
+ "train_batch_size": 4,
1714
+ "trial_name": null,
1715
+ "trial_params": null
1716
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5393638fc96a51ffc096bc09eb48144285f49379afa915db3fe6586e5211b890
3
+ size 5905