SFTJBD commited on
Commit
7f6cfe9
·
verified ·
1 Parent(s): 63d737a

upload thinking_avg7 checkpoint-940

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
+ thinking_avg7/tokenizer.json filter=lfs diff=lfs merge=lfs -text
thinking_avg7/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
thinking_avg7/chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
thinking_avg7/config.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3VLForConditionalGeneration"
4
+ ],
5
+ "dtype": "bfloat16",
6
+ "eos_token_id": 151645,
7
+ "hidden_size": 2048,
8
+ "image_token_id": 151655,
9
+ "model_type": "qwen3_vl",
10
+ "pad_token_id": 151643,
11
+ "text_config": {
12
+ "attention_bias": false,
13
+ "attention_dropout": 0.0,
14
+ "bos_token_id": 151643,
15
+ "dtype": "bfloat16",
16
+ "eos_token_id": 151645,
17
+ "head_dim": 128,
18
+ "hidden_act": "silu",
19
+ "hidden_size": 2048,
20
+ "initializer_range": 0.02,
21
+ "intermediate_size": 6144,
22
+ "max_position_embeddings": 262144,
23
+ "model_type": "qwen3_vl_text",
24
+ "num_attention_heads": 16,
25
+ "num_hidden_layers": 28,
26
+ "num_key_value_heads": 8,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": {
29
+ "mrope_interleaved": true,
30
+ "mrope_section": [
31
+ 24,
32
+ 20,
33
+ 20
34
+ ],
35
+ "rope_type": "default"
36
+ },
37
+ "rope_theta": 5000000,
38
+ "tie_word_embeddings": true,
39
+ "use_cache": false,
40
+ "vocab_size": 151936
41
+ },
42
+ "tie_word_embeddings": true,
43
+ "transformers_version": "4.57.1",
44
+ "use_cache": false,
45
+ "video_token_id": 151656,
46
+ "vision_config": {
47
+ "deepstack_visual_indexes": [
48
+ 5,
49
+ 11,
50
+ 17
51
+ ],
52
+ "depth": 24,
53
+ "hidden_act": "gelu_pytorch_tanh",
54
+ "hidden_size": 1024,
55
+ "in_channels": 3,
56
+ "initializer_range": 0.02,
57
+ "intermediate_size": 4096,
58
+ "model_type": "qwen3_vl",
59
+ "num_heads": 16,
60
+ "num_position_embeddings": 2304,
61
+ "out_hidden_size": 2048,
62
+ "patch_size": 16,
63
+ "spatial_merge_size": 2,
64
+ "temporal_patch_size": 2
65
+ },
66
+ "vision_end_token_id": 151653,
67
+ "vision_start_token_id": 151652
68
+ }
thinking_avg7/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.57.1"
13
+ }
thinking_avg7/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
thinking_avg7/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea792cd8ec2a184c714481ded8af2858f273fbda010fc94530d82a9df0b20e09
3
+ size 4877470336
thinking_avg7/preprocessor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "disable_grouping": null,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_pad": null,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_mean": [
14
+ 0.5,
15
+ 0.5,
16
+ 0.5
17
+ ],
18
+ "image_processor_type": "Qwen2VLImageProcessorFast",
19
+ "image_std": [
20
+ 0.5,
21
+ 0.5,
22
+ 0.5
23
+ ],
24
+ "input_data_format": null,
25
+ "max_pixels": null,
26
+ "merge_size": 2,
27
+ "min_pixels": null,
28
+ "pad_size": null,
29
+ "patch_size": 16,
30
+ "processor_class": "Qwen3VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "longest_edge": 16777216,
36
+ "shortest_edge": 65536
37
+ },
38
+ "temporal_patch_size": 2
39
+ }
thinking_avg7/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
thinking_avg7/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
thinking_avg7/tokenizer_config.json ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 262144,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "processor_class": "Qwen3VLProcessor",
238
+ "split_special_tokens": false,
239
+ "tokenizer_class": "Qwen2Tokenizer",
240
+ "unk_token": null
241
+ }
thinking_avg7/trainer_state.json ADDED
@@ -0,0 +1,692 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 20.0,
6
+ "eval_steps": 500,
7
+ "global_step": 940,
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.2127659574468085,
14
+ "grad_norm": 12.336536407470703,
15
+ "learning_rate": 9.574468085106384e-07,
16
+ "loss": 2.0262,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.425531914893617,
21
+ "grad_norm": 5.434974193572998,
22
+ "learning_rate": 2.021276595744681e-06,
23
+ "loss": 2.0019,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.6382978723404256,
28
+ "grad_norm": 4.535411357879639,
29
+ "learning_rate": 3.0851063829787237e-06,
30
+ "loss": 1.7248,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.851063829787234,
35
+ "grad_norm": 4.993082046508789,
36
+ "learning_rate": 4.148936170212766e-06,
37
+ "loss": 1.5082,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 1.0638297872340425,
42
+ "grad_norm": 5.205928325653076,
43
+ "learning_rate": 5.212765957446809e-06,
44
+ "loss": 1.3795,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 1.2765957446808511,
49
+ "grad_norm": 3.4906671047210693,
50
+ "learning_rate": 6.276595744680851e-06,
51
+ "loss": 1.309,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 1.4893617021276595,
56
+ "grad_norm": 3.880760431289673,
57
+ "learning_rate": 7.340425531914894e-06,
58
+ "loss": 1.2364,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 1.702127659574468,
63
+ "grad_norm": 3.186004638671875,
64
+ "learning_rate": 8.404255319148937e-06,
65
+ "loss": 1.2194,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 1.9148936170212765,
70
+ "grad_norm": 2.858607292175293,
71
+ "learning_rate": 9.46808510638298e-06,
72
+ "loss": 1.1938,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 2.127659574468085,
77
+ "grad_norm": 3.6831142902374268,
78
+ "learning_rate": 9.999138160172624e-06,
79
+ "loss": 1.1859,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 2.3404255319148937,
84
+ "grad_norm": 3.0382895469665527,
85
+ "learning_rate": 9.99224522409411e-06,
86
+ "loss": 1.1086,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 2.5531914893617023,
91
+ "grad_norm": 3.4395322799682617,
92
+ "learning_rate": 9.97846885608885e-06,
93
+ "loss": 1.1184,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 2.7659574468085104,
98
+ "grad_norm": 10.139799118041992,
99
+ "learning_rate": 9.957828051355817e-06,
100
+ "loss": 1.1033,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 2.978723404255319,
105
+ "grad_norm": 3.864090919494629,
106
+ "learning_rate": 9.930351269950144e-06,
107
+ "loss": 1.1011,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 3.1914893617021276,
112
+ "grad_norm": 2.914719343185425,
113
+ "learning_rate": 9.896076397541676e-06,
114
+ "loss": 1.0304,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 3.404255319148936,
119
+ "grad_norm": 2.5123159885406494,
120
+ "learning_rate": 9.855050693177286e-06,
121
+ "loss": 1.0326,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 3.617021276595745,
126
+ "grad_norm": 2.8343801498413086,
127
+ "learning_rate": 9.807330724118906e-06,
128
+ "loss": 1.0372,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 3.829787234042553,
133
+ "grad_norm": 2.7471742630004883,
134
+ "learning_rate": 9.752982287847193e-06,
135
+ "loss": 1.0022,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 4.042553191489362,
140
+ "grad_norm": 4.206465244293213,
141
+ "learning_rate": 9.692080321338317e-06,
142
+ "loss": 1.0253,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 4.25531914893617,
147
+ "grad_norm": 2.8655834197998047,
148
+ "learning_rate": 9.624708797739002e-06,
149
+ "loss": 0.9497,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 4.468085106382979,
154
+ "grad_norm": 2.4595937728881836,
155
+ "learning_rate": 9.550960610582251e-06,
156
+ "loss": 0.9522,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 4.680851063829787,
161
+ "grad_norm": 2.3388538360595703,
162
+ "learning_rate": 9.47093744570344e-06,
163
+ "loss": 0.9586,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 4.8936170212765955,
168
+ "grad_norm": 2.1165785789489746,
169
+ "learning_rate": 9.384749641033358e-06,
170
+ "loss": 0.9372,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 5.1063829787234045,
175
+ "grad_norm": 3.2859790325164795,
176
+ "learning_rate": 9.292516034461517e-06,
177
+ "loss": 0.8996,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 5.319148936170213,
182
+ "grad_norm": 3.624838352203369,
183
+ "learning_rate": 9.194363799979517e-06,
184
+ "loss": 0.8538,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 5.531914893617021,
189
+ "grad_norm": 4.1774444580078125,
190
+ "learning_rate": 9.090428272330381e-06,
191
+ "loss": 0.8769,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 5.74468085106383,
196
+ "grad_norm": 3.288222074508667,
197
+ "learning_rate": 8.980852760405645e-06,
198
+ "loss": 0.8898,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 5.957446808510638,
203
+ "grad_norm": 5.09073543548584,
204
+ "learning_rate": 8.865788349647496e-06,
205
+ "loss": 0.8547,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 6.170212765957447,
210
+ "grad_norm": 4.917239665985107,
211
+ "learning_rate": 8.745393693728395e-06,
212
+ "loss": 0.8079,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 6.382978723404255,
217
+ "grad_norm": 4.297005653381348,
218
+ "learning_rate": 8.619834795795458e-06,
219
+ "loss": 0.7863,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 6.595744680851064,
224
+ "grad_norm": 2.9727730751037598,
225
+ "learning_rate": 8.489284779581179e-06,
226
+ "loss": 0.7937,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 6.808510638297872,
231
+ "grad_norm": 3.1746344566345215,
232
+ "learning_rate": 8.353923650696119e-06,
233
+ "loss": 0.7849,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 7.0212765957446805,
238
+ "grad_norm": 3.411951780319214,
239
+ "learning_rate": 8.213938048432697e-06,
240
+ "loss": 0.7814,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 7.23404255319149,
245
+ "grad_norm": 4.299261569976807,
246
+ "learning_rate": 8.069520988422292e-06,
247
+ "loss": 0.7019,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 7.446808510638298,
252
+ "grad_norm": 2.7697367668151855,
253
+ "learning_rate": 7.920871596500473e-06,
254
+ "loss": 0.6833,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 7.659574468085106,
259
+ "grad_norm": 3.8198611736297607,
260
+ "learning_rate": 7.768194834147362e-06,
261
+ "loss": 0.7038,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 7.872340425531915,
266
+ "grad_norm": 3.3809781074523926,
267
+ "learning_rate": 7.611701215881635e-06,
268
+ "loss": 0.7074,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 8.085106382978724,
273
+ "grad_norm": 7.95145845413208,
274
+ "learning_rate": 7.4516065189978625e-06,
275
+ "loss": 0.6622,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 8.297872340425531,
280
+ "grad_norm": 3.9921398162841797,
281
+ "learning_rate": 7.288131486047414e-06,
282
+ "loss": 0.6101,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 8.51063829787234,
287
+ "grad_norm": 4.076723575592041,
288
+ "learning_rate": 7.121501520473137e-06,
289
+ "loss": 0.6141,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 8.72340425531915,
294
+ "grad_norm": 3.663926839828491,
295
+ "learning_rate": 6.9519463758174745e-06,
296
+ "loss": 0.6084,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 8.936170212765958,
301
+ "grad_norm": 2.9118905067443848,
302
+ "learning_rate": 6.77969983893257e-06,
303
+ "loss": 0.6084,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 9.148936170212766,
308
+ "grad_norm": 3.71231746673584,
309
+ "learning_rate": 6.604999407629137e-06,
310
+ "loss": 0.5488,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 9.361702127659575,
315
+ "grad_norm": 3.0417401790618896,
316
+ "learning_rate": 6.428085963208567e-06,
317
+ "loss": 0.5239,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 9.574468085106384,
322
+ "grad_norm": 2.925900459289551,
323
+ "learning_rate": 6.249203438329799e-06,
324
+ "loss": 0.5245,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 9.787234042553191,
329
+ "grad_norm": 2.830456495285034,
330
+ "learning_rate": 6.0685984806689055e-06,
331
+ "loss": 0.5275,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 10.0,
336
+ "grad_norm": 27.90907096862793,
337
+ "learning_rate": 5.886520112835128e-06,
338
+ "loss": 0.5286,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 10.212765957446809,
343
+ "grad_norm": 3.8775291442871094,
344
+ "learning_rate": 5.703219389012317e-06,
345
+ "loss": 0.4407,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 10.425531914893616,
350
+ "grad_norm": 3.2742180824279785,
351
+ "learning_rate": 5.518949048799176e-06,
352
+ "loss": 0.4439,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 10.638297872340425,
357
+ "grad_norm": 4.788721561431885,
358
+ "learning_rate": 5.3339631687256085e-06,
359
+ "loss": 0.4397,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 10.851063829787234,
364
+ "grad_norm": 3.406052350997925,
365
+ "learning_rate": 5.148516811925684e-06,
366
+ "loss": 0.4472,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 11.063829787234043,
371
+ "grad_norm": 3.201462507247925,
372
+ "learning_rate": 4.962865676450239e-06,
373
+ "loss": 0.4128,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 11.27659574468085,
378
+ "grad_norm": 3.5401506423950195,
379
+ "learning_rate": 4.777265742704039e-06,
380
+ "loss": 0.3642,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 11.48936170212766,
385
+ "grad_norm": 6.291500568389893,
386
+ "learning_rate": 4.591972920493638e-06,
387
+ "loss": 0.3632,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 11.702127659574469,
392
+ "grad_norm": 3.7568671703338623,
393
+ "learning_rate": 4.40724269617256e-06,
394
+ "loss": 0.3586,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 11.914893617021276,
399
+ "grad_norm": 3.2295467853546143,
400
+ "learning_rate": 4.223329780370359e-06,
401
+ "loss": 0.3676,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 12.127659574468085,
406
+ "grad_norm": 4.088225841522217,
407
+ "learning_rate": 4.04048775679127e-06,
408
+ "loss": 0.3218,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 12.340425531914894,
413
+ "grad_norm": 3.2097654342651367,
414
+ "learning_rate": 3.858968732566685e-06,
415
+ "loss": 0.302,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 12.553191489361701,
420
+ "grad_norm": 8.330199241638184,
421
+ "learning_rate": 3.6790229906435706e-06,
422
+ "loss": 0.2994,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 12.76595744680851,
427
+ "grad_norm": 2.9958083629608154,
428
+ "learning_rate": 3.5008986446881088e-06,
429
+ "loss": 0.2939,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 12.97872340425532,
434
+ "grad_norm": 2.9343929290771484,
435
+ "learning_rate": 3.3248412969804065e-06,
436
+ "loss": 0.3058,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 13.191489361702128,
441
+ "grad_norm": 2.799318790435791,
442
+ "learning_rate": 3.1510936997719557e-06,
443
+ "loss": 0.2498,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 13.404255319148936,
448
+ "grad_norm": 3.34720778465271,
449
+ "learning_rate": 2.9798954205727886e-06,
450
+ "loss": 0.2472,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 13.617021276595745,
455
+ "grad_norm": 2.777721405029297,
456
+ "learning_rate": 2.811482511829842e-06,
457
+ "loss": 0.2486,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 13.829787234042554,
462
+ "grad_norm": 3.301893711090088,
463
+ "learning_rate": 2.6460871854519594e-06,
464
+ "loss": 0.245,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 14.042553191489361,
469
+ "grad_norm": 2.9354896545410156,
470
+ "learning_rate": 2.483937492630345e-06,
471
+ "loss": 0.2308,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 14.25531914893617,
476
+ "grad_norm": 3.0058882236480713,
477
+ "learning_rate": 2.3252570093959e-06,
478
+ "loss": 0.202,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 14.46808510638298,
483
+ "grad_norm": 3.1830897331237793,
484
+ "learning_rate": 2.1702645283470238e-06,
485
+ "loss": 0.205,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 14.680851063829786,
490
+ "grad_norm": 3.942203998565674,
491
+ "learning_rate": 2.0191737569729492e-06,
492
+ "loss": 0.2051,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 14.893617021276595,
497
+ "grad_norm": 3.175920009613037,
498
+ "learning_rate": 1.872193022988526e-06,
499
+ "loss": 0.2048,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 15.106382978723405,
504
+ "grad_norm": 4.182313919067383,
505
+ "learning_rate": 1.7295249870867898e-06,
506
+ "loss": 0.1917,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 15.319148936170214,
511
+ "grad_norm": 2.81970477104187,
512
+ "learning_rate": 1.5913663635053578e-06,
513
+ "loss": 0.1742,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 15.53191489361702,
518
+ "grad_norm": 2.9634246826171875,
519
+ "learning_rate": 1.457907648791943e-06,
520
+ "loss": 0.169,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 15.74468085106383,
525
+ "grad_norm": 2.6298394203186035,
526
+ "learning_rate": 1.329332859142967e-06,
527
+ "loss": 0.1646,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 15.957446808510639,
532
+ "grad_norm": 2.598726987838745,
533
+ "learning_rate": 1.205819276677464e-06,
534
+ "loss": 0.1745,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 16.170212765957448,
539
+ "grad_norm": 2.863161563873291,
540
+ "learning_rate": 1.0875372049960697e-06,
541
+ "loss": 0.1519,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 16.382978723404257,
546
+ "grad_norm": 2.658534288406372,
547
+ "learning_rate": 9.746497343621857e-07,
548
+ "loss": 0.1438,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 16.595744680851062,
553
+ "grad_norm": 2.5550928115844727,
554
+ "learning_rate": 8.673125168290713e-07,
555
+ "loss": 0.1519,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 16.80851063829787,
560
+ "grad_norm": 2.794011116027832,
561
+ "learning_rate": 7.656735516229125e-07,
562
+ "loss": 0.1485,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 17.02127659574468,
567
+ "grad_norm": 2.50555157661438,
568
+ "learning_rate": 6.698729810778065e-07,
569
+ "loss": 0.1498,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 17.23404255319149,
574
+ "grad_norm": 2.367205858230591,
575
+ "learning_rate": 5.800428974040311e-07,
576
+ "loss": 0.133,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 17.4468085106383,
581
+ "grad_norm": 2.35664439201355,
582
+ "learning_rate": 4.963071605560144e-07,
583
+ "loss": 0.1339,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 17.659574468085108,
588
+ "grad_norm": 2.9399704933166504,
589
+ "learning_rate": 4.187812274511427e-07,
590
+ "loss": 0.1329,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 17.872340425531917,
595
+ "grad_norm": 2.4461710453033447,
596
+ "learning_rate": 3.4757199277490106e-07,
597
+ "loss": 0.1242,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 18.085106382978722,
602
+ "grad_norm": 2.4357728958129883,
603
+ "learning_rate": 2.8277764159181484e-07,
604
+ "loss": 0.1251,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 18.29787234042553,
609
+ "grad_norm": 2.140690803527832,
610
+ "learning_rate": 2.2448751396543788e-07,
611
+ "loss": 0.1244,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 18.51063829787234,
616
+ "grad_norm": 2.3836193084716797,
617
+ "learning_rate": 1.7278198177405614e-07,
618
+ "loss": 0.1178,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 18.72340425531915,
623
+ "grad_norm": 2.3763482570648193,
624
+ "learning_rate": 1.2773233789193816e-07,
625
+ "loss": 0.1249,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 18.93617021276596,
630
+ "grad_norm": 2.2195088863372803,
631
+ "learning_rate": 8.940069788894389e-08,
632
+ "loss": 0.128,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 19.148936170212767,
637
+ "grad_norm": 2.1285881996154785,
638
+ "learning_rate": 5.783991438403802e-08,
639
+ "loss": 0.1156,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 19.361702127659573,
644
+ "grad_norm": 2.0568695068359375,
645
+ "learning_rate": 3.309350417077972e-08,
646
+ "loss": 0.1176,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 19.574468085106382,
651
+ "grad_norm": 3.2262465953826904,
652
+ "learning_rate": 1.5195588215283773e-08,
653
+ "loss": 0.1165,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 19.78723404255319,
658
+ "grad_norm": 2.393101930618286,
659
+ "learning_rate": 4.170844609387992e-09,
660
+ "loss": 0.1205,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 20.0,
665
+ "grad_norm": 2.0961813926696777,
666
+ "learning_rate": 3.447454388127991e-11,
667
+ "loss": 0.1193,
668
+ "step": 940
669
+ }
670
+ ],
671
+ "logging_steps": 10,
672
+ "max_steps": 940,
673
+ "num_input_tokens_seen": 0,
674
+ "num_train_epochs": 20,
675
+ "save_steps": 5000,
676
+ "stateful_callbacks": {
677
+ "TrainerControl": {
678
+ "args": {
679
+ "should_epoch_stop": false,
680
+ "should_evaluate": false,
681
+ "should_log": false,
682
+ "should_save": true,
683
+ "should_training_stop": true
684
+ },
685
+ "attributes": {}
686
+ }
687
+ },
688
+ "total_flos": 1.2334589081278218e+18,
689
+ "train_batch_size": 4,
690
+ "trial_name": null,
691
+ "trial_params": null
692
+ }
thinking_avg7/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:324133874cd5f6bc10eed04967ec84687e1cd7757160603e7fdab586b83106a6
3
+ size 7889
thinking_avg7/video_preprocessor_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "do_sample_frames": true,
12
+ "fps": 2,
13
+ "image_mean": [
14
+ 0.5,
15
+ 0.5,
16
+ 0.5
17
+ ],
18
+ "image_std": [
19
+ 0.5,
20
+ 0.5,
21
+ 0.5
22
+ ],
23
+ "input_data_format": null,
24
+ "max_frames": 768,
25
+ "merge_size": 2,
26
+ "min_frames": 4,
27
+ "num_frames": null,
28
+ "pad_size": null,
29
+ "patch_size": 16,
30
+ "processor_class": "Qwen3VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_metadata": false,
34
+ "size": {
35
+ "longest_edge": 25165824,
36
+ "shortest_edge": 4096
37
+ },
38
+ "temporal_patch_size": 2,
39
+ "video_metadata": null,
40
+ "video_processor_type": "Qwen3VLVideoProcessor"
41
+ }
thinking_avg7/vocab.json ADDED
The diff for this file is too large to render. See raw diff