fengyao1909 commited on
Commit
4580dd2
·
verified ·
1 Parent(s): 03081e5

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
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
+ }
chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3MoeForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "decoder_sparse_step": 1,
9
+ "eos_token_id": 151643,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 6144,
15
+ "max_position_embeddings": 32768,
16
+ "max_window_layers": 48,
17
+ "mlp_only_layers": [],
18
+ "model_type": "qwen3_moe",
19
+ "moe_intermediate_size": 768,
20
+ "norm_topk_prob": true,
21
+ "num_attention_heads": 32,
22
+ "num_experts": 128,
23
+ "num_experts_per_tok": 8,
24
+ "num_hidden_layers": 48,
25
+ "num_key_value_heads": 4,
26
+ "output_router_logits": false,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": null,
29
+ "rope_theta": 1000000.0,
30
+ "router_aux_loss_coef": 0.001,
31
+ "sliding_window": null,
32
+ "tie_word_embeddings": false,
33
+ "torch_dtype": "bfloat16",
34
+ "transformers_version": "4.52.0.dev0",
35
+ "use_cache": false,
36
+ "use_sliding_window": false,
37
+ "vocab_size": 151936
38
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "eos_token_id": 151643,
4
+ "max_new_tokens": 2048,
5
+ "transformers_version": "4.52.0.dev0"
6
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:420684b17d3c1f8b6da8fc7bcbc84087147902762afa58587cbbd565b60f3395
3
+ size 4997184968
model-00002-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:554e139002bd50fdd84d4ff49240a161a3ccda10ec58983b40ba7d2d568e97a4
3
+ size 4997741608
model-00003-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85a31a685ed49a33e39ccc87e23935c672771940e63cabd1924eb9417974011f
3
+ size 4997742208
model-00004-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2700a37bb687af4e89d922d3179718b261552a6d6d113e1e5f8f036ac240b57d
3
+ size 4997743184
model-00005-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a217aae1b4e51fb22ce106f6618984a093b4104fc9982b3b5d53c57dc9cc3381
3
+ size 4997743184
model-00006-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8782c34f887cd526147449a9fcacd6c2991507b95368c25480645bd2b7fcaef
3
+ size 4997743184
model-00007-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d230136d810f7231927bd7dafa800332f40fe42c5f37ef207e937a71488c14d
3
+ size 4997743184
model-00008-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7aeb9effc2ae54743d9f2b6c1e2e4236fd65d0ca584052a14cfecd95ec84982a
3
+ size 4997743184
model-00009-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e04241e269e37d007585d2a9b0242a1082487641818b4f98d511fdecd7bf20d
3
+ size 4997743184
model-00010-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6786d6e4b5f0e29f8ab44ba7a408adc4e9f8db7d59e770e1e519a2a5ffe740ae
3
+ size 4997743184
model-00011-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47f844c36b12a552310cbcfe22e67ecefdc5cd0a4a1c1b04978dedb795730af2
3
+ size 4997743184
model-00012-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76d2c4fea5823cc0f9202303ae7596e249343d0a405fd22f56cbae3c71b578e0
3
+ size 4997743184
model-00013-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7dd44f1c986e102af53e6797a489d5edbb8c210b4f962f16bc0918ff1811c7
3
+ size 1094220288
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
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
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
trainer_state.json ADDED
@@ -0,0 +1,3331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 471,
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.0021231422505307855,
14
+ "grad_norm": 6.233692311689662,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.3677,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.004246284501061571,
21
+ "grad_norm": 6.036282375751906,
22
+ "learning_rate": 2.0833333333333333e-07,
23
+ "loss": 1.4092,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.006369426751592357,
28
+ "grad_norm": 5.891130120999039,
29
+ "learning_rate": 4.1666666666666667e-07,
30
+ "loss": 1.4008,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.008492569002123142,
35
+ "grad_norm": 6.074487333844155,
36
+ "learning_rate": 6.25e-07,
37
+ "loss": 1.4031,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.010615711252653927,
42
+ "grad_norm": 5.743607303282022,
43
+ "learning_rate": 8.333333333333333e-07,
44
+ "loss": 1.3855,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.012738853503184714,
49
+ "grad_norm": 5.978505048824056,
50
+ "learning_rate": 1.0416666666666667e-06,
51
+ "loss": 1.4133,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.014861995753715499,
56
+ "grad_norm": 5.6113465264480835,
57
+ "learning_rate": 1.25e-06,
58
+ "loss": 1.3079,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.016985138004246284,
63
+ "grad_norm": 5.290707913968832,
64
+ "learning_rate": 1.4583333333333335e-06,
65
+ "loss": 1.3761,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.01910828025477707,
70
+ "grad_norm": 5.4254172240562735,
71
+ "learning_rate": 1.6666666666666667e-06,
72
+ "loss": 1.3741,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.021231422505307854,
77
+ "grad_norm": 5.17021866948228,
78
+ "learning_rate": 1.8750000000000003e-06,
79
+ "loss": 1.3834,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.02335456475583864,
84
+ "grad_norm": 4.250457587049274,
85
+ "learning_rate": 2.0833333333333334e-06,
86
+ "loss": 1.3276,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.025477707006369428,
91
+ "grad_norm": 4.0761343260047616,
92
+ "learning_rate": 2.2916666666666666e-06,
93
+ "loss": 1.3091,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.027600849256900213,
98
+ "grad_norm": 4.085721585422903,
99
+ "learning_rate": 2.5e-06,
100
+ "loss": 1.3736,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.029723991507430998,
105
+ "grad_norm": 3.4660539777465926,
106
+ "learning_rate": 2.7083333333333334e-06,
107
+ "loss": 1.2959,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.03184713375796178,
112
+ "grad_norm": 3.2306408364760006,
113
+ "learning_rate": 2.916666666666667e-06,
114
+ "loss": 1.3213,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.03397027600849257,
119
+ "grad_norm": 2.9881593116573764,
120
+ "learning_rate": 3.125e-06,
121
+ "loss": 1.2841,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.036093418259023353,
126
+ "grad_norm": 2.998705518524036,
127
+ "learning_rate": 3.3333333333333333e-06,
128
+ "loss": 1.2581,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.03821656050955414,
133
+ "grad_norm": 2.732961535739617,
134
+ "learning_rate": 3.5416666666666673e-06,
135
+ "loss": 1.2221,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.040339702760084924,
140
+ "grad_norm": 1.8117955120416394,
141
+ "learning_rate": 3.7500000000000005e-06,
142
+ "loss": 1.1951,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.04246284501061571,
147
+ "grad_norm": 1.9886830864925722,
148
+ "learning_rate": 3.958333333333333e-06,
149
+ "loss": 1.097,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.044585987261146494,
154
+ "grad_norm": 2.162707915070587,
155
+ "learning_rate": 4.166666666666667e-06,
156
+ "loss": 1.2057,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.04670912951167728,
161
+ "grad_norm": 2.696607450468263,
162
+ "learning_rate": 4.3750000000000005e-06,
163
+ "loss": 1.1726,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.04883227176220807,
168
+ "grad_norm": 1.8593899724728866,
169
+ "learning_rate": 4.583333333333333e-06,
170
+ "loss": 1.0822,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.050955414012738856,
175
+ "grad_norm": 1.4860669687181005,
176
+ "learning_rate": 4.791666666666668e-06,
177
+ "loss": 1.0889,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.05307855626326964,
182
+ "grad_norm": 1.6240718023385812,
183
+ "learning_rate": 5e-06,
184
+ "loss": 1.1117,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.055201698513800426,
189
+ "grad_norm": 2.09213691220876,
190
+ "learning_rate": 4.999938256261134e-06,
191
+ "loss": 1.0979,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.05732484076433121,
196
+ "grad_norm": 1.7482122008435805,
197
+ "learning_rate": 4.999753028094368e-06,
198
+ "loss": 1.1355,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.059447983014861996,
203
+ "grad_norm": 1.883493540815875,
204
+ "learning_rate": 4.999444324649045e-06,
205
+ "loss": 1.1341,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.06157112526539278,
210
+ "grad_norm": 1.8270811899866102,
211
+ "learning_rate": 4.99901216117357e-06,
212
+ "loss": 1.1051,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.06369426751592357,
217
+ "grad_norm": 1.4502089970711367,
218
+ "learning_rate": 4.998456559014653e-06,
219
+ "loss": 1.1046,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.06581740976645435,
224
+ "grad_norm": 1.425355888694126,
225
+ "learning_rate": 4.997777545616258e-06,
226
+ "loss": 1.0905,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.06794055201698514,
231
+ "grad_norm": 1.2505755417516413,
232
+ "learning_rate": 4.996975154518245e-06,
233
+ "loss": 1.0822,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.07006369426751592,
238
+ "grad_norm": 1.1388510764741677,
239
+ "learning_rate": 4.996049425354717e-06,
240
+ "loss": 1.0415,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.07218683651804671,
245
+ "grad_norm": 1.4794550850120727,
246
+ "learning_rate": 4.995000403852057e-06,
247
+ "loss": 1.035,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.07430997876857749,
252
+ "grad_norm": 0.9754315052343883,
253
+ "learning_rate": 4.993828141826672e-06,
254
+ "loss": 1.0415,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.07643312101910828,
259
+ "grad_norm": 0.9081548956782857,
260
+ "learning_rate": 4.992532697182434e-06,
261
+ "loss": 1.0696,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.07855626326963906,
266
+ "grad_norm": 0.8968088704858169,
267
+ "learning_rate": 4.991114133907822e-06,
268
+ "loss": 1.0056,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.08067940552016985,
273
+ "grad_norm": 0.9873042697593618,
274
+ "learning_rate": 4.989572522072753e-06,
275
+ "loss": 0.9949,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.08280254777070063,
280
+ "grad_norm": 0.9927345903093555,
281
+ "learning_rate": 4.9879079378251325e-06,
282
+ "loss": 0.9767,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.08492569002123142,
287
+ "grad_norm": 0.9227421380705588,
288
+ "learning_rate": 4.986120463387084e-06,
289
+ "loss": 1.0253,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.0870488322717622,
294
+ "grad_norm": 1.1001162646683043,
295
+ "learning_rate": 4.984210187050891e-06,
296
+ "loss": 0.9883,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.08917197452229299,
301
+ "grad_norm": 0.8622396840543709,
302
+ "learning_rate": 4.982177203174636e-06,
303
+ "loss": 0.9848,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.09129511677282377,
308
+ "grad_norm": 0.7528337414302051,
309
+ "learning_rate": 4.9800216121775404e-06,
310
+ "loss": 0.9826,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.09341825902335456,
315
+ "grad_norm": 0.7513148560404738,
316
+ "learning_rate": 4.977743520535001e-06,
317
+ "loss": 1.0494,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.09554140127388536,
322
+ "grad_norm": 0.8500263228426365,
323
+ "learning_rate": 4.975343040773335e-06,
324
+ "loss": 1.051,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.09766454352441614,
329
+ "grad_norm": 0.7905864487569398,
330
+ "learning_rate": 4.972820291464219e-06,
331
+ "loss": 1.0334,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.09978768577494693,
336
+ "grad_norm": 0.7942918416765442,
337
+ "learning_rate": 4.970175397218832e-06,
338
+ "loss": 0.9982,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.10191082802547771,
343
+ "grad_norm": 0.7726621895136483,
344
+ "learning_rate": 4.967408488681702e-06,
345
+ "loss": 0.9995,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.1040339702760085,
350
+ "grad_norm": 0.8071759021352843,
351
+ "learning_rate": 4.964519702524251e-06,
352
+ "loss": 0.9859,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.10615711252653928,
357
+ "grad_norm": 0.8568099936673271,
358
+ "learning_rate": 4.9615091814380465e-06,
359
+ "loss": 1.0227,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.10828025477707007,
364
+ "grad_norm": 0.7646989151242823,
365
+ "learning_rate": 4.958377074127751e-06,
366
+ "loss": 1.0093,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.11040339702760085,
371
+ "grad_norm": 0.6998250690202109,
372
+ "learning_rate": 4.955123535303775e-06,
373
+ "loss": 1.0157,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.11252653927813164,
378
+ "grad_norm": 0.7041148727209998,
379
+ "learning_rate": 4.951748725674643e-06,
380
+ "loss": 0.944,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.11464968152866242,
385
+ "grad_norm": 0.7178789444758534,
386
+ "learning_rate": 4.948252811939044e-06,
387
+ "loss": 1.0034,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.11677282377919321,
392
+ "grad_norm": 0.7138939260260085,
393
+ "learning_rate": 4.944635966777607e-06,
394
+ "loss": 1.0411,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.11889596602972399,
399
+ "grad_norm": 0.7303515503729836,
400
+ "learning_rate": 4.940898368844366e-06,
401
+ "loss": 1.0668,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.12101910828025478,
406
+ "grad_norm": 0.7112682591004899,
407
+ "learning_rate": 4.937040202757937e-06,
408
+ "loss": 1.0061,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.12314225053078556,
413
+ "grad_norm": 0.7839574196233094,
414
+ "learning_rate": 4.933061659092401e-06,
415
+ "loss": 1.0048,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.12526539278131635,
420
+ "grad_norm": 0.7944407734544054,
421
+ "learning_rate": 4.928962934367887e-06,
422
+ "loss": 1.0004,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.12738853503184713,
427
+ "grad_norm": 0.7280265198789528,
428
+ "learning_rate": 4.924744231040865e-06,
429
+ "loss": 0.9948,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.12951167728237792,
434
+ "grad_norm": 0.7307519901984729,
435
+ "learning_rate": 4.920405757494147e-06,
436
+ "loss": 0.9212,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.1316348195329087,
441
+ "grad_norm": 0.6979758699830271,
442
+ "learning_rate": 4.915947728026599e-06,
443
+ "loss": 0.9826,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.1337579617834395,
448
+ "grad_norm": 0.6627924762335937,
449
+ "learning_rate": 4.911370362842544e-06,
450
+ "loss": 1.0036,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.13588110403397027,
455
+ "grad_norm": 0.7322381275827045,
456
+ "learning_rate": 4.906673888040895e-06,
457
+ "loss": 1.0255,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.13800424628450106,
462
+ "grad_norm": 0.7558866470186772,
463
+ "learning_rate": 4.901858535603982e-06,
464
+ "loss": 1.0337,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.14012738853503184,
469
+ "grad_norm": 0.6564342903823904,
470
+ "learning_rate": 4.896924543386099e-06,
471
+ "loss": 0.9731,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.14225053078556263,
476
+ "grad_norm": 0.6465572624496233,
477
+ "learning_rate": 4.891872155101746e-06,
478
+ "loss": 0.9757,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.14437367303609341,
483
+ "grad_norm": 0.7659232216669788,
484
+ "learning_rate": 4.886701620313595e-06,
485
+ "loss": 0.9733,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.1464968152866242,
490
+ "grad_norm": 0.6777766233641306,
491
+ "learning_rate": 4.88141319442017e-06,
492
+ "loss": 0.9516,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.14861995753715498,
497
+ "grad_norm": 0.7233595060808201,
498
+ "learning_rate": 4.876007138643216e-06,
499
+ "loss": 1.0614,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.15074309978768577,
504
+ "grad_norm": 1.0421440952867649,
505
+ "learning_rate": 4.870483720014814e-06,
506
+ "loss": 1.002,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.15286624203821655,
511
+ "grad_norm": 0.7222126514560366,
512
+ "learning_rate": 4.8648432113641765e-06,
513
+ "loss": 1.0246,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.15498938428874734,
518
+ "grad_norm": 0.756215690480781,
519
+ "learning_rate": 4.8590858913041775e-06,
520
+ "loss": 0.9696,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.15711252653927812,
525
+ "grad_norm": 0.8486802960108908,
526
+ "learning_rate": 4.853212044217591e-06,
527
+ "loss": 0.9469,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.1592356687898089,
532
+ "grad_norm": 0.6567453740552108,
533
+ "learning_rate": 4.847221960243042e-06,
534
+ "loss": 0.9919,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.1613588110403397,
539
+ "grad_norm": 0.7119655661591375,
540
+ "learning_rate": 4.8411159352606735e-06,
541
+ "loss": 0.9105,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.16348195329087048,
546
+ "grad_norm": 0.6694111209083354,
547
+ "learning_rate": 4.834894270877536e-06,
548
+ "loss": 0.9626,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.16560509554140126,
553
+ "grad_norm": 0.7090596038764783,
554
+ "learning_rate": 4.828557274412686e-06,
555
+ "loss": 0.9786,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.16772823779193205,
560
+ "grad_norm": 0.657778836038884,
561
+ "learning_rate": 4.822105258882007e-06,
562
+ "loss": 0.9775,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.16985138004246284,
567
+ "grad_norm": 0.7229446128005313,
568
+ "learning_rate": 4.815538542982751e-06,
569
+ "loss": 1.0749,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.17197452229299362,
574
+ "grad_norm": 0.737338248354114,
575
+ "learning_rate": 4.808857451077788e-06,
576
+ "loss": 1.0018,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.1740976645435244,
581
+ "grad_norm": 0.7508049484616365,
582
+ "learning_rate": 4.802062313179595e-06,
583
+ "loss": 1.0558,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.1762208067940552,
588
+ "grad_norm": 0.7007354351103503,
589
+ "learning_rate": 4.795153464933948e-06,
590
+ "loss": 0.9794,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.17834394904458598,
595
+ "grad_norm": 0.662357169178099,
596
+ "learning_rate": 4.7881312476033444e-06,
597
+ "loss": 1.009,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.18046709129511676,
602
+ "grad_norm": 0.6849477961866517,
603
+ "learning_rate": 4.7809960080501464e-06,
604
+ "loss": 0.9875,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.18259023354564755,
609
+ "grad_norm": 0.6965592321624478,
610
+ "learning_rate": 4.773748098719448e-06,
611
+ "loss": 1.0182,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.18471337579617833,
616
+ "grad_norm": 0.6979169529090863,
617
+ "learning_rate": 4.766387877621667e-06,
618
+ "loss": 1.0177,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.18683651804670912,
623
+ "grad_norm": 0.7041639181716062,
624
+ "learning_rate": 4.758915708314858e-06,
625
+ "loss": 0.9516,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.18895966029723993,
630
+ "grad_norm": 0.6953439875992204,
631
+ "learning_rate": 4.751331959886758e-06,
632
+ "loss": 0.9314,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.1910828025477707,
637
+ "grad_norm": 0.6613631812740659,
638
+ "learning_rate": 4.743637006936552e-06,
639
+ "loss": 1.0019,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.1932059447983015,
644
+ "grad_norm": 0.7037122761576546,
645
+ "learning_rate": 4.735831229556374e-06,
646
+ "loss": 0.9249,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.19532908704883228,
651
+ "grad_norm": 0.8473990006647267,
652
+ "learning_rate": 4.727915013312527e-06,
653
+ "loss": 0.9633,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.19745222929936307,
658
+ "grad_norm": 0.749684663578654,
659
+ "learning_rate": 4.719888749226442e-06,
660
+ "loss": 0.9788,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.19957537154989385,
665
+ "grad_norm": 0.7293523592209221,
666
+ "learning_rate": 4.711752833755362e-06,
667
+ "loss": 0.9594,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.20169851380042464,
672
+ "grad_norm": 2.969828282102022,
673
+ "learning_rate": 4.70350766877276e-06,
674
+ "loss": 1.0121,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.20382165605095542,
679
+ "grad_norm": 0.7749000799093052,
680
+ "learning_rate": 4.695153661548486e-06,
681
+ "loss": 0.9606,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.2059447983014862,
686
+ "grad_norm": 0.7712144141473064,
687
+ "learning_rate": 4.686691224728652e-06,
688
+ "loss": 0.958,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.208067940552017,
693
+ "grad_norm": 0.7434684636124179,
694
+ "learning_rate": 4.678120776315251e-06,
695
+ "loss": 0.9432,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.21019108280254778,
700
+ "grad_norm": 0.7363360177457489,
701
+ "learning_rate": 4.669442739645506e-06,
702
+ "loss": 1.0115,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.21231422505307856,
707
+ "grad_norm": 0.6716882264915858,
708
+ "learning_rate": 4.660657543370958e-06,
709
+ "loss": 1.0124,
710
+ "step": 100
711
+ },
712
+ {
713
+ "epoch": 0.21443736730360935,
714
+ "grad_norm": 0.7654149258441244,
715
+ "learning_rate": 4.651765621436303e-06,
716
+ "loss": 1.0489,
717
+ "step": 101
718
+ },
719
+ {
720
+ "epoch": 0.21656050955414013,
721
+ "grad_norm": 0.8574368765734778,
722
+ "learning_rate": 4.642767413057942e-06,
723
+ "loss": 0.9658,
724
+ "step": 102
725
+ },
726
+ {
727
+ "epoch": 0.21868365180467092,
728
+ "grad_norm": 0.7424741102042721,
729
+ "learning_rate": 4.6336633627023e-06,
730
+ "loss": 0.9133,
731
+ "step": 103
732
+ },
733
+ {
734
+ "epoch": 0.2208067940552017,
735
+ "grad_norm": 0.6770848463550634,
736
+ "learning_rate": 4.624453920063863e-06,
737
+ "loss": 0.9765,
738
+ "step": 104
739
+ },
740
+ {
741
+ "epoch": 0.2229299363057325,
742
+ "grad_norm": 0.6895226993875193,
743
+ "learning_rate": 4.6151395400429665e-06,
744
+ "loss": 0.9389,
745
+ "step": 105
746
+ },
747
+ {
748
+ "epoch": 0.22505307855626328,
749
+ "grad_norm": 0.7364839772071928,
750
+ "learning_rate": 4.605720682723331e-06,
751
+ "loss": 0.9421,
752
+ "step": 106
753
+ },
754
+ {
755
+ "epoch": 0.22717622080679406,
756
+ "grad_norm": 0.6971178564903094,
757
+ "learning_rate": 4.596197813349328e-06,
758
+ "loss": 0.9838,
759
+ "step": 107
760
+ },
761
+ {
762
+ "epoch": 0.22929936305732485,
763
+ "grad_norm": 0.6796322414548438,
764
+ "learning_rate": 4.586571402303006e-06,
765
+ "loss": 0.9504,
766
+ "step": 108
767
+ },
768
+ {
769
+ "epoch": 0.23142250530785563,
770
+ "grad_norm": 0.7544007171896271,
771
+ "learning_rate": 4.576841925080853e-06,
772
+ "loss": 0.9994,
773
+ "step": 109
774
+ },
775
+ {
776
+ "epoch": 0.23354564755838642,
777
+ "grad_norm": 0.6857660018521021,
778
+ "learning_rate": 4.56700986227031e-06,
779
+ "loss": 1.0145,
780
+ "step": 110
781
+ },
782
+ {
783
+ "epoch": 0.2356687898089172,
784
+ "grad_norm": 0.6859556243272815,
785
+ "learning_rate": 4.557075699526032e-06,
786
+ "loss": 0.9596,
787
+ "step": 111
788
+ },
789
+ {
790
+ "epoch": 0.23779193205944799,
791
+ "grad_norm": 0.7081004553238264,
792
+ "learning_rate": 4.547039927545899e-06,
793
+ "loss": 0.9772,
794
+ "step": 112
795
+ },
796
+ {
797
+ "epoch": 0.23991507430997877,
798
+ "grad_norm": 0.7462372407123932,
799
+ "learning_rate": 4.536903042046778e-06,
800
+ "loss": 0.9507,
801
+ "step": 113
802
+ },
803
+ {
804
+ "epoch": 0.24203821656050956,
805
+ "grad_norm": 0.72601271137818,
806
+ "learning_rate": 4.526665543740038e-06,
807
+ "loss": 0.9563,
808
+ "step": 114
809
+ },
810
+ {
811
+ "epoch": 0.24416135881104034,
812
+ "grad_norm": 0.6381109078445588,
813
+ "learning_rate": 4.516327938306818e-06,
814
+ "loss": 1.0078,
815
+ "step": 115
816
+ },
817
+ {
818
+ "epoch": 0.24628450106157113,
819
+ "grad_norm": 0.7584749957729562,
820
+ "learning_rate": 4.505890736373045e-06,
821
+ "loss": 0.9765,
822
+ "step": 116
823
+ },
824
+ {
825
+ "epoch": 0.2484076433121019,
826
+ "grad_norm": 0.7102458794768719,
827
+ "learning_rate": 4.495354453484216e-06,
828
+ "loss": 0.9804,
829
+ "step": 117
830
+ },
831
+ {
832
+ "epoch": 0.2505307855626327,
833
+ "grad_norm": 0.6844867181397675,
834
+ "learning_rate": 4.4847196100799305e-06,
835
+ "loss": 0.9821,
836
+ "step": 118
837
+ },
838
+ {
839
+ "epoch": 0.2526539278131635,
840
+ "grad_norm": 0.7200996740889256,
841
+ "learning_rate": 4.473986731468183e-06,
842
+ "loss": 1.0106,
843
+ "step": 119
844
+ },
845
+ {
846
+ "epoch": 0.25477707006369427,
847
+ "grad_norm": 0.7030653364009113,
848
+ "learning_rate": 4.463156347799419e-06,
849
+ "loss": 1.0781,
850
+ "step": 120
851
+ },
852
+ {
853
+ "epoch": 0.25690021231422505,
854
+ "grad_norm": 0.7662768767817681,
855
+ "learning_rate": 4.452228994040341e-06,
856
+ "loss": 0.9618,
857
+ "step": 121
858
+ },
859
+ {
860
+ "epoch": 0.25902335456475584,
861
+ "grad_norm": 0.8105947072663244,
862
+ "learning_rate": 4.4412052099474916e-06,
863
+ "loss": 0.9622,
864
+ "step": 122
865
+ },
866
+ {
867
+ "epoch": 0.2611464968152866,
868
+ "grad_norm": 0.7211984778916917,
869
+ "learning_rate": 4.430085540040587e-06,
870
+ "loss": 1.0164,
871
+ "step": 123
872
+ },
873
+ {
874
+ "epoch": 0.2632696390658174,
875
+ "grad_norm": 0.6967668355088058,
876
+ "learning_rate": 4.418870533575626e-06,
877
+ "loss": 0.9824,
878
+ "step": 124
879
+ },
880
+ {
881
+ "epoch": 0.2653927813163482,
882
+ "grad_norm": 0.6779361410685855,
883
+ "learning_rate": 4.40756074451775e-06,
884
+ "loss": 0.9395,
885
+ "step": 125
886
+ },
887
+ {
888
+ "epoch": 0.267515923566879,
889
+ "grad_norm": 0.6670664720622704,
890
+ "learning_rate": 4.396156731513888e-06,
891
+ "loss": 1.0333,
892
+ "step": 126
893
+ },
894
+ {
895
+ "epoch": 0.26963906581740976,
896
+ "grad_norm": 0.7468957605757105,
897
+ "learning_rate": 4.384659057865165e-06,
898
+ "loss": 0.9469,
899
+ "step": 127
900
+ },
901
+ {
902
+ "epoch": 0.27176220806794055,
903
+ "grad_norm": 0.618195093191427,
904
+ "learning_rate": 4.373068291499065e-06,
905
+ "loss": 0.8902,
906
+ "step": 128
907
+ },
908
+ {
909
+ "epoch": 0.27388535031847133,
910
+ "grad_norm": 0.6899363714434318,
911
+ "learning_rate": 4.36138500494139e-06,
912
+ "loss": 0.973,
913
+ "step": 129
914
+ },
915
+ {
916
+ "epoch": 0.2760084925690021,
917
+ "grad_norm": 0.6648290687836514,
918
+ "learning_rate": 4.349609775287977e-06,
919
+ "loss": 0.9859,
920
+ "step": 130
921
+ },
922
+ {
923
+ "epoch": 0.2781316348195329,
924
+ "grad_norm": 0.6449761569340436,
925
+ "learning_rate": 4.337743184176188e-06,
926
+ "loss": 0.9589,
927
+ "step": 131
928
+ },
929
+ {
930
+ "epoch": 0.2802547770700637,
931
+ "grad_norm": 0.6376297046774647,
932
+ "learning_rate": 4.325785817756186e-06,
933
+ "loss": 0.9838,
934
+ "step": 132
935
+ },
936
+ {
937
+ "epoch": 0.2823779193205945,
938
+ "grad_norm": 0.6604823512178201,
939
+ "learning_rate": 4.313738266661979e-06,
940
+ "loss": 0.9331,
941
+ "step": 133
942
+ },
943
+ {
944
+ "epoch": 0.28450106157112526,
945
+ "grad_norm": 0.6580376975505629,
946
+ "learning_rate": 4.301601125982246e-06,
947
+ "loss": 1.0069,
948
+ "step": 134
949
+ },
950
+ {
951
+ "epoch": 0.28662420382165604,
952
+ "grad_norm": 0.7094205388987409,
953
+ "learning_rate": 4.289374995230942e-06,
954
+ "loss": 1.0132,
955
+ "step": 135
956
+ },
957
+ {
958
+ "epoch": 0.28874734607218683,
959
+ "grad_norm": 0.7347016248235378,
960
+ "learning_rate": 4.277060478317687e-06,
961
+ "loss": 1.0009,
962
+ "step": 136
963
+ },
964
+ {
965
+ "epoch": 0.2908704883227176,
966
+ "grad_norm": 0.6790220682871185,
967
+ "learning_rate": 4.264658183517935e-06,
968
+ "loss": 0.9377,
969
+ "step": 137
970
+ },
971
+ {
972
+ "epoch": 0.2929936305732484,
973
+ "grad_norm": 0.6615615208650163,
974
+ "learning_rate": 4.252168723442927e-06,
975
+ "loss": 0.9493,
976
+ "step": 138
977
+ },
978
+ {
979
+ "epoch": 0.2951167728237792,
980
+ "grad_norm": 0.690676805692251,
981
+ "learning_rate": 4.23959271500943e-06,
982
+ "loss": 0.9369,
983
+ "step": 139
984
+ },
985
+ {
986
+ "epoch": 0.29723991507430997,
987
+ "grad_norm": 0.7025773548182347,
988
+ "learning_rate": 4.226930779409271e-06,
989
+ "loss": 0.9983,
990
+ "step": 140
991
+ },
992
+ {
993
+ "epoch": 0.29936305732484075,
994
+ "grad_norm": 0.7730748791240522,
995
+ "learning_rate": 4.214183542078646e-06,
996
+ "loss": 0.9393,
997
+ "step": 141
998
+ },
999
+ {
1000
+ "epoch": 0.30148619957537154,
1001
+ "grad_norm": 0.6778294406818572,
1002
+ "learning_rate": 4.201351632667227e-06,
1003
+ "loss": 1.0114,
1004
+ "step": 142
1005
+ },
1006
+ {
1007
+ "epoch": 0.3036093418259023,
1008
+ "grad_norm": 0.6852307950573668,
1009
+ "learning_rate": 4.1884356850070695e-06,
1010
+ "loss": 1.0313,
1011
+ "step": 143
1012
+ },
1013
+ {
1014
+ "epoch": 0.3057324840764331,
1015
+ "grad_norm": 0.7191284149312358,
1016
+ "learning_rate": 4.175436337081289e-06,
1017
+ "loss": 0.9071,
1018
+ "step": 144
1019
+ },
1020
+ {
1021
+ "epoch": 0.3078556263269639,
1022
+ "grad_norm": 0.7394267321034559,
1023
+ "learning_rate": 4.162354230992562e-06,
1024
+ "loss": 0.9757,
1025
+ "step": 145
1026
+ },
1027
+ {
1028
+ "epoch": 0.3099787685774947,
1029
+ "grad_norm": 0.711234245522065,
1030
+ "learning_rate": 4.149190012931402e-06,
1031
+ "loss": 0.9233,
1032
+ "step": 146
1033
+ },
1034
+ {
1035
+ "epoch": 0.31210191082802546,
1036
+ "grad_norm": 0.7677511242459594,
1037
+ "learning_rate": 4.135944333144244e-06,
1038
+ "loss": 0.9492,
1039
+ "step": 147
1040
+ },
1041
+ {
1042
+ "epoch": 0.31422505307855625,
1043
+ "grad_norm": 0.6497634346049875,
1044
+ "learning_rate": 4.122617845901322e-06,
1045
+ "loss": 1.0376,
1046
+ "step": 148
1047
+ },
1048
+ {
1049
+ "epoch": 0.31634819532908703,
1050
+ "grad_norm": 0.6757359209440288,
1051
+ "learning_rate": 4.109211209464354e-06,
1052
+ "loss": 1.0303,
1053
+ "step": 149
1054
+ },
1055
+ {
1056
+ "epoch": 0.3184713375796178,
1057
+ "grad_norm": 0.6695087962535804,
1058
+ "learning_rate": 4.095725086054029e-06,
1059
+ "loss": 0.956,
1060
+ "step": 150
1061
+ },
1062
+ {
1063
+ "epoch": 0.3205944798301486,
1064
+ "grad_norm": 0.6942775399870352,
1065
+ "learning_rate": 4.0821601418172926e-06,
1066
+ "loss": 0.9945,
1067
+ "step": 151
1068
+ },
1069
+ {
1070
+ "epoch": 0.3227176220806794,
1071
+ "grad_norm": 0.6878597656985246,
1072
+ "learning_rate": 4.068517046794443e-06,
1073
+ "loss": 0.9921,
1074
+ "step": 152
1075
+ },
1076
+ {
1077
+ "epoch": 0.3248407643312102,
1078
+ "grad_norm": 0.7171780998162959,
1079
+ "learning_rate": 4.054796474886038e-06,
1080
+ "loss": 1.0233,
1081
+ "step": 153
1082
+ },
1083
+ {
1084
+ "epoch": 0.32696390658174096,
1085
+ "grad_norm": 0.6763242560453191,
1086
+ "learning_rate": 4.040999103819606e-06,
1087
+ "loss": 1.0145,
1088
+ "step": 154
1089
+ },
1090
+ {
1091
+ "epoch": 0.32908704883227174,
1092
+ "grad_norm": 0.6295779748002456,
1093
+ "learning_rate": 4.0271256151161666e-06,
1094
+ "loss": 1.0073,
1095
+ "step": 155
1096
+ },
1097
+ {
1098
+ "epoch": 0.33121019108280253,
1099
+ "grad_norm": 0.7389589402690067,
1100
+ "learning_rate": 4.013176694056571e-06,
1101
+ "loss": 0.9892,
1102
+ "step": 156
1103
+ },
1104
+ {
1105
+ "epoch": 0.3333333333333333,
1106
+ "grad_norm": 0.6655878627704468,
1107
+ "learning_rate": 3.999153029647651e-06,
1108
+ "loss": 1.0411,
1109
+ "step": 157
1110
+ },
1111
+ {
1112
+ "epoch": 0.3354564755838641,
1113
+ "grad_norm": 0.6375860922410523,
1114
+ "learning_rate": 3.985055314588185e-06,
1115
+ "loss": 0.9458,
1116
+ "step": 158
1117
+ },
1118
+ {
1119
+ "epoch": 0.3375796178343949,
1120
+ "grad_norm": 0.7839584481038233,
1121
+ "learning_rate": 3.970884245234684e-06,
1122
+ "loss": 1.0261,
1123
+ "step": 159
1124
+ },
1125
+ {
1126
+ "epoch": 0.33970276008492567,
1127
+ "grad_norm": 0.7385426113864771,
1128
+ "learning_rate": 3.956640521566989e-06,
1129
+ "loss": 0.9587,
1130
+ "step": 160
1131
+ },
1132
+ {
1133
+ "epoch": 0.34182590233545646,
1134
+ "grad_norm": 0.663828302901297,
1135
+ "learning_rate": 3.942324847153706e-06,
1136
+ "loss": 0.9254,
1137
+ "step": 161
1138
+ },
1139
+ {
1140
+ "epoch": 0.34394904458598724,
1141
+ "grad_norm": 0.6883166230000658,
1142
+ "learning_rate": 3.927937929117447e-06,
1143
+ "loss": 0.967,
1144
+ "step": 162
1145
+ },
1146
+ {
1147
+ "epoch": 0.346072186836518,
1148
+ "grad_norm": 0.7082555205500026,
1149
+ "learning_rate": 3.913480478099898e-06,
1150
+ "loss": 0.9725,
1151
+ "step": 163
1152
+ },
1153
+ {
1154
+ "epoch": 0.3481953290870488,
1155
+ "grad_norm": 0.7642622554393386,
1156
+ "learning_rate": 3.898953208226723e-06,
1157
+ "loss": 1.014,
1158
+ "step": 164
1159
+ },
1160
+ {
1161
+ "epoch": 0.3503184713375796,
1162
+ "grad_norm": 0.6590730477383634,
1163
+ "learning_rate": 3.884356837072289e-06,
1164
+ "loss": 1.0197,
1165
+ "step": 165
1166
+ },
1167
+ {
1168
+ "epoch": 0.3524416135881104,
1169
+ "grad_norm": 0.6482468015769196,
1170
+ "learning_rate": 3.869692085624218e-06,
1171
+ "loss": 0.9289,
1172
+ "step": 166
1173
+ },
1174
+ {
1175
+ "epoch": 0.35456475583864117,
1176
+ "grad_norm": 0.7139224901487669,
1177
+ "learning_rate": 3.8549596782477775e-06,
1178
+ "loss": 0.9623,
1179
+ "step": 167
1180
+ },
1181
+ {
1182
+ "epoch": 0.35668789808917195,
1183
+ "grad_norm": 0.6395897912297176,
1184
+ "learning_rate": 3.8401603426501e-06,
1185
+ "loss": 1.0118,
1186
+ "step": 168
1187
+ },
1188
+ {
1189
+ "epoch": 0.35881104033970274,
1190
+ "grad_norm": 0.6867653353820191,
1191
+ "learning_rate": 3.825294809844234e-06,
1192
+ "loss": 0.9839,
1193
+ "step": 169
1194
+ },
1195
+ {
1196
+ "epoch": 0.3609341825902335,
1197
+ "grad_norm": 0.7001331824072736,
1198
+ "learning_rate": 3.8103638141130406e-06,
1199
+ "loss": 0.9182,
1200
+ "step": 170
1201
+ },
1202
+ {
1203
+ "epoch": 0.3630573248407643,
1204
+ "grad_norm": 0.6522485155963109,
1205
+ "learning_rate": 3.7953680929729215e-06,
1206
+ "loss": 0.9555,
1207
+ "step": 171
1208
+ },
1209
+ {
1210
+ "epoch": 0.3651804670912951,
1211
+ "grad_norm": 0.6985843893126511,
1212
+ "learning_rate": 3.7803083871373876e-06,
1213
+ "loss": 0.944,
1214
+ "step": 172
1215
+ },
1216
+ {
1217
+ "epoch": 0.3673036093418259,
1218
+ "grad_norm": 0.7007945690155835,
1219
+ "learning_rate": 3.7651854404804757e-06,
1220
+ "loss": 0.9399,
1221
+ "step": 173
1222
+ },
1223
+ {
1224
+ "epoch": 0.36942675159235666,
1225
+ "grad_norm": 0.6780715813196918,
1226
+ "learning_rate": 3.7500000000000005e-06,
1227
+ "loss": 0.9814,
1228
+ "step": 174
1229
+ },
1230
+ {
1231
+ "epoch": 0.37154989384288745,
1232
+ "grad_norm": 0.6641562357723244,
1233
+ "learning_rate": 3.734752815780659e-06,
1234
+ "loss": 0.9523,
1235
+ "step": 175
1236
+ },
1237
+ {
1238
+ "epoch": 0.37367303609341823,
1239
+ "grad_norm": 0.6906594521754901,
1240
+ "learning_rate": 3.7194446409569813e-06,
1241
+ "loss": 0.9904,
1242
+ "step": 176
1243
+ },
1244
+ {
1245
+ "epoch": 0.37579617834394907,
1246
+ "grad_norm": 0.7593873633214692,
1247
+ "learning_rate": 3.7040762316761247e-06,
1248
+ "loss": 0.9489,
1249
+ "step": 177
1250
+ },
1251
+ {
1252
+ "epoch": 0.37791932059447986,
1253
+ "grad_norm": 0.6770564421900779,
1254
+ "learning_rate": 3.6886483470605293e-06,
1255
+ "loss": 0.9897,
1256
+ "step": 178
1257
+ },
1258
+ {
1259
+ "epoch": 0.38004246284501064,
1260
+ "grad_norm": 0.7648650056676896,
1261
+ "learning_rate": 3.6731617491704195e-06,
1262
+ "loss": 0.9292,
1263
+ "step": 179
1264
+ },
1265
+ {
1266
+ "epoch": 0.3821656050955414,
1267
+ "grad_norm": 0.7222877847544774,
1268
+ "learning_rate": 3.6576172029661583e-06,
1269
+ "loss": 1.0195,
1270
+ "step": 180
1271
+ },
1272
+ {
1273
+ "epoch": 0.3842887473460722,
1274
+ "grad_norm": 0.6910668492827662,
1275
+ "learning_rate": 3.6420154762704685e-06,
1276
+ "loss": 0.9875,
1277
+ "step": 181
1278
+ },
1279
+ {
1280
+ "epoch": 0.386411889596603,
1281
+ "grad_norm": 0.6741685399464014,
1282
+ "learning_rate": 3.6263573397305003e-06,
1283
+ "loss": 1.0038,
1284
+ "step": 182
1285
+ },
1286
+ {
1287
+ "epoch": 0.3885350318471338,
1288
+ "grad_norm": 0.7033531290025623,
1289
+ "learning_rate": 3.6106435667797684e-06,
1290
+ "loss": 0.9411,
1291
+ "step": 183
1292
+ },
1293
+ {
1294
+ "epoch": 0.39065817409766457,
1295
+ "grad_norm": 0.6890574251939826,
1296
+ "learning_rate": 3.5948749335999493e-06,
1297
+ "loss": 0.92,
1298
+ "step": 184
1299
+ },
1300
+ {
1301
+ "epoch": 0.39278131634819535,
1302
+ "grad_norm": 0.7466250540457848,
1303
+ "learning_rate": 3.5790522190825368e-06,
1304
+ "loss": 0.9907,
1305
+ "step": 185
1306
+ },
1307
+ {
1308
+ "epoch": 0.39490445859872614,
1309
+ "grad_norm": 0.7277438842625494,
1310
+ "learning_rate": 3.5631762047903746e-06,
1311
+ "loss": 1.024,
1312
+ "step": 186
1313
+ },
1314
+ {
1315
+ "epoch": 0.3970276008492569,
1316
+ "grad_norm": 0.6333155312409119,
1317
+ "learning_rate": 3.5472476749190465e-06,
1318
+ "loss": 1.0138,
1319
+ "step": 187
1320
+ },
1321
+ {
1322
+ "epoch": 0.3991507430997877,
1323
+ "grad_norm": 0.8297340505830674,
1324
+ "learning_rate": 3.531267416258144e-06,
1325
+ "loss": 1.0227,
1326
+ "step": 188
1327
+ },
1328
+ {
1329
+ "epoch": 0.4012738853503185,
1330
+ "grad_norm": 0.7089430122521235,
1331
+ "learning_rate": 3.5152362181524013e-06,
1332
+ "loss": 0.9357,
1333
+ "step": 189
1334
+ },
1335
+ {
1336
+ "epoch": 0.4033970276008493,
1337
+ "grad_norm": 0.6823030263348598,
1338
+ "learning_rate": 3.4991548724627054e-06,
1339
+ "loss": 0.8842,
1340
+ "step": 190
1341
+ },
1342
+ {
1343
+ "epoch": 0.40552016985138006,
1344
+ "grad_norm": 0.6912404603041468,
1345
+ "learning_rate": 3.4830241735269852e-06,
1346
+ "loss": 0.945,
1347
+ "step": 191
1348
+ },
1349
+ {
1350
+ "epoch": 0.40764331210191085,
1351
+ "grad_norm": 0.7115082118821694,
1352
+ "learning_rate": 3.4668449181209695e-06,
1353
+ "loss": 0.9493,
1354
+ "step": 192
1355
+ },
1356
+ {
1357
+ "epoch": 0.40976645435244163,
1358
+ "grad_norm": 0.6252959058347625,
1359
+ "learning_rate": 3.450617905418834e-06,
1360
+ "loss": 0.9824,
1361
+ "step": 193
1362
+ },
1363
+ {
1364
+ "epoch": 0.4118895966029724,
1365
+ "grad_norm": 0.6803790151109083,
1366
+ "learning_rate": 3.434343936953729e-06,
1367
+ "loss": 0.9668,
1368
+ "step": 194
1369
+ },
1370
+ {
1371
+ "epoch": 0.4140127388535032,
1372
+ "grad_norm": 0.638640242080679,
1373
+ "learning_rate": 3.4180238165781806e-06,
1374
+ "loss": 0.9268,
1375
+ "step": 195
1376
+ },
1377
+ {
1378
+ "epoch": 0.416135881104034,
1379
+ "grad_norm": 0.6837218466024749,
1380
+ "learning_rate": 3.4016583504243892e-06,
1381
+ "loss": 0.917,
1382
+ "step": 196
1383
+ },
1384
+ {
1385
+ "epoch": 0.4182590233545648,
1386
+ "grad_norm": 0.6427086547693028,
1387
+ "learning_rate": 3.38524834686441e-06,
1388
+ "loss": 0.9782,
1389
+ "step": 197
1390
+ },
1391
+ {
1392
+ "epoch": 0.42038216560509556,
1393
+ "grad_norm": 0.6683767385691209,
1394
+ "learning_rate": 3.3687946164702225e-06,
1395
+ "loss": 1.0093,
1396
+ "step": 198
1397
+ },
1398
+ {
1399
+ "epoch": 0.42250530785562634,
1400
+ "grad_norm": 0.6553328409851518,
1401
+ "learning_rate": 3.3522979719736923e-06,
1402
+ "loss": 0.9418,
1403
+ "step": 199
1404
+ },
1405
+ {
1406
+ "epoch": 0.42462845010615713,
1407
+ "grad_norm": 0.6778853484731171,
1408
+ "learning_rate": 3.3357592282264295e-06,
1409
+ "loss": 0.9607,
1410
+ "step": 200
1411
+ },
1412
+ {
1413
+ "epoch": 0.4267515923566879,
1414
+ "grad_norm": 0.6516881094720604,
1415
+ "learning_rate": 3.319179202159532e-06,
1416
+ "loss": 0.9789,
1417
+ "step": 201
1418
+ },
1419
+ {
1420
+ "epoch": 0.4288747346072187,
1421
+ "grad_norm": 0.6404550926711216,
1422
+ "learning_rate": 3.3025587127432414e-06,
1423
+ "loss": 0.9735,
1424
+ "step": 202
1425
+ },
1426
+ {
1427
+ "epoch": 0.4309978768577495,
1428
+ "grad_norm": 0.6074907430474463,
1429
+ "learning_rate": 3.2858985809464823e-06,
1430
+ "loss": 0.929,
1431
+ "step": 203
1432
+ },
1433
+ {
1434
+ "epoch": 0.43312101910828027,
1435
+ "grad_norm": 0.6754111542436511,
1436
+ "learning_rate": 3.2691996296963185e-06,
1437
+ "loss": 0.9613,
1438
+ "step": 204
1439
+ },
1440
+ {
1441
+ "epoch": 0.43524416135881105,
1442
+ "grad_norm": 0.6093435246887753,
1443
+ "learning_rate": 3.2524626838372976e-06,
1444
+ "loss": 1.0417,
1445
+ "step": 205
1446
+ },
1447
+ {
1448
+ "epoch": 0.43736730360934184,
1449
+ "grad_norm": 0.6463846637401074,
1450
+ "learning_rate": 3.2356885700907096e-06,
1451
+ "loss": 0.9503,
1452
+ "step": 206
1453
+ },
1454
+ {
1455
+ "epoch": 0.4394904458598726,
1456
+ "grad_norm": 0.7058617139491341,
1457
+ "learning_rate": 3.218878117013756e-06,
1458
+ "loss": 0.9583,
1459
+ "step": 207
1460
+ },
1461
+ {
1462
+ "epoch": 0.4416135881104034,
1463
+ "grad_norm": 0.8080013671095668,
1464
+ "learning_rate": 3.202032154958615e-06,
1465
+ "loss": 0.9207,
1466
+ "step": 208
1467
+ },
1468
+ {
1469
+ "epoch": 0.4437367303609342,
1470
+ "grad_norm": 0.646008011251542,
1471
+ "learning_rate": 3.1851515160314346e-06,
1472
+ "loss": 0.9202,
1473
+ "step": 209
1474
+ },
1475
+ {
1476
+ "epoch": 0.445859872611465,
1477
+ "grad_norm": 0.6526157991983537,
1478
+ "learning_rate": 3.168237034051222e-06,
1479
+ "loss": 0.983,
1480
+ "step": 210
1481
+ },
1482
+ {
1483
+ "epoch": 0.44798301486199577,
1484
+ "grad_norm": 0.6820529024780707,
1485
+ "learning_rate": 3.151289544508664e-06,
1486
+ "loss": 0.9554,
1487
+ "step": 211
1488
+ },
1489
+ {
1490
+ "epoch": 0.45010615711252655,
1491
+ "grad_norm": 0.6888098712935105,
1492
+ "learning_rate": 3.1343098845248564e-06,
1493
+ "loss": 0.9312,
1494
+ "step": 212
1495
+ },
1496
+ {
1497
+ "epoch": 0.45222929936305734,
1498
+ "grad_norm": 0.7112371797389818,
1499
+ "learning_rate": 3.117298892809953e-06,
1500
+ "loss": 0.9319,
1501
+ "step": 213
1502
+ },
1503
+ {
1504
+ "epoch": 0.4543524416135881,
1505
+ "grad_norm": 0.6892727118283283,
1506
+ "learning_rate": 3.100257409621738e-06,
1507
+ "loss": 0.9165,
1508
+ "step": 214
1509
+ },
1510
+ {
1511
+ "epoch": 0.4564755838641189,
1512
+ "grad_norm": 0.6882279635622599,
1513
+ "learning_rate": 3.0831862767241206e-06,
1514
+ "loss": 0.9258,
1515
+ "step": 215
1516
+ },
1517
+ {
1518
+ "epoch": 0.4585987261146497,
1519
+ "grad_norm": 0.7044667471867824,
1520
+ "learning_rate": 3.0660863373455594e-06,
1521
+ "loss": 0.9744,
1522
+ "step": 216
1523
+ },
1524
+ {
1525
+ "epoch": 0.4607218683651805,
1526
+ "grad_norm": 0.6748729735766027,
1527
+ "learning_rate": 3.0489584361374073e-06,
1528
+ "loss": 1.0145,
1529
+ "step": 217
1530
+ },
1531
+ {
1532
+ "epoch": 0.46284501061571126,
1533
+ "grad_norm": 0.6013878264966025,
1534
+ "learning_rate": 3.031803419132192e-06,
1535
+ "loss": 0.9491,
1536
+ "step": 218
1537
+ },
1538
+ {
1539
+ "epoch": 0.46496815286624205,
1540
+ "grad_norm": 0.6154706328562357,
1541
+ "learning_rate": 3.014622133701826e-06,
1542
+ "loss": 0.9307,
1543
+ "step": 219
1544
+ },
1545
+ {
1546
+ "epoch": 0.46709129511677283,
1547
+ "grad_norm": 0.6288716332754415,
1548
+ "learning_rate": 2.99741542851575e-06,
1549
+ "loss": 0.95,
1550
+ "step": 220
1551
+ },
1552
+ {
1553
+ "epoch": 0.4692144373673036,
1554
+ "grad_norm": 0.6406745016032289,
1555
+ "learning_rate": 2.9801841534990115e-06,
1556
+ "loss": 1.0193,
1557
+ "step": 221
1558
+ },
1559
+ {
1560
+ "epoch": 0.4713375796178344,
1561
+ "grad_norm": 0.627509712489892,
1562
+ "learning_rate": 2.96292915979029e-06,
1563
+ "loss": 0.8955,
1564
+ "step": 222
1565
+ },
1566
+ {
1567
+ "epoch": 0.4734607218683652,
1568
+ "grad_norm": 0.6829084713106287,
1569
+ "learning_rate": 2.945651299699843e-06,
1570
+ "loss": 0.9282,
1571
+ "step": 223
1572
+ },
1573
+ {
1574
+ "epoch": 0.47558386411889597,
1575
+ "grad_norm": 0.6619023830231336,
1576
+ "learning_rate": 2.9283514266674166e-06,
1577
+ "loss": 1.0037,
1578
+ "step": 224
1579
+ },
1580
+ {
1581
+ "epoch": 0.47770700636942676,
1582
+ "grad_norm": 0.6649971682870974,
1583
+ "learning_rate": 2.9110303952200863e-06,
1584
+ "loss": 0.9338,
1585
+ "step": 225
1586
+ },
1587
+ {
1588
+ "epoch": 0.47983014861995754,
1589
+ "grad_norm": 0.691407091915056,
1590
+ "learning_rate": 2.893689060930045e-06,
1591
+ "loss": 0.9325,
1592
+ "step": 226
1593
+ },
1594
+ {
1595
+ "epoch": 0.4819532908704883,
1596
+ "grad_norm": 0.6765826616693394,
1597
+ "learning_rate": 2.876328280372346e-06,
1598
+ "loss": 0.9666,
1599
+ "step": 227
1600
+ },
1601
+ {
1602
+ "epoch": 0.4840764331210191,
1603
+ "grad_norm": 0.659756365707493,
1604
+ "learning_rate": 2.8589489110825895e-06,
1605
+ "loss": 0.9654,
1606
+ "step": 228
1607
+ },
1608
+ {
1609
+ "epoch": 0.4861995753715499,
1610
+ "grad_norm": 0.7460102157125611,
1611
+ "learning_rate": 2.8415518115145673e-06,
1612
+ "loss": 0.9861,
1613
+ "step": 229
1614
+ },
1615
+ {
1616
+ "epoch": 0.4883227176220807,
1617
+ "grad_norm": 0.6433037973844256,
1618
+ "learning_rate": 2.824137840997858e-06,
1619
+ "loss": 0.9584,
1620
+ "step": 230
1621
+ },
1622
+ {
1623
+ "epoch": 0.49044585987261147,
1624
+ "grad_norm": 0.6856232642287533,
1625
+ "learning_rate": 2.8067078596953793e-06,
1626
+ "loss": 0.9164,
1627
+ "step": 231
1628
+ },
1629
+ {
1630
+ "epoch": 0.49256900212314225,
1631
+ "grad_norm": 0.7270361036995455,
1632
+ "learning_rate": 2.7892627285609035e-06,
1633
+ "loss": 1.0485,
1634
+ "step": 232
1635
+ },
1636
+ {
1637
+ "epoch": 0.49469214437367304,
1638
+ "grad_norm": 0.6968320986232821,
1639
+ "learning_rate": 2.7718033092965267e-06,
1640
+ "loss": 0.9211,
1641
+ "step": 233
1642
+ },
1643
+ {
1644
+ "epoch": 0.4968152866242038,
1645
+ "grad_norm": 0.7067362359142023,
1646
+ "learning_rate": 2.754330464310108e-06,
1647
+ "loss": 0.9047,
1648
+ "step": 234
1649
+ },
1650
+ {
1651
+ "epoch": 0.4989384288747346,
1652
+ "grad_norm": 0.7611967162098211,
1653
+ "learning_rate": 2.7368450566726714e-06,
1654
+ "loss": 0.9708,
1655
+ "step": 235
1656
+ },
1657
+ {
1658
+ "epoch": 0.5010615711252654,
1659
+ "grad_norm": 0.6940560339648915,
1660
+ "learning_rate": 2.7193479500757684e-06,
1661
+ "loss": 0.8726,
1662
+ "step": 236
1663
+ },
1664
+ {
1665
+ "epoch": 0.5031847133757962,
1666
+ "grad_norm": 0.7870025525904728,
1667
+ "learning_rate": 2.7018400087888265e-06,
1668
+ "loss": 0.9617,
1669
+ "step": 237
1670
+ },
1671
+ {
1672
+ "epoch": 0.505307855626327,
1673
+ "grad_norm": 0.6559672876844489,
1674
+ "learning_rate": 2.684322097616448e-06,
1675
+ "loss": 0.9901,
1676
+ "step": 238
1677
+ },
1678
+ {
1679
+ "epoch": 0.5074309978768577,
1680
+ "grad_norm": 0.7529609642384081,
1681
+ "learning_rate": 2.6667950818556992e-06,
1682
+ "loss": 0.9333,
1683
+ "step": 239
1684
+ },
1685
+ {
1686
+ "epoch": 0.5095541401273885,
1687
+ "grad_norm": 0.652243500501896,
1688
+ "learning_rate": 2.649259827253368e-06,
1689
+ "loss": 1.0095,
1690
+ "step": 240
1691
+ },
1692
+ {
1693
+ "epoch": 0.5116772823779193,
1694
+ "grad_norm": 0.660107946462241,
1695
+ "learning_rate": 2.6317171999631992e-06,
1696
+ "loss": 0.9448,
1697
+ "step": 241
1698
+ },
1699
+ {
1700
+ "epoch": 0.5138004246284501,
1701
+ "grad_norm": 0.7440712860315413,
1702
+ "learning_rate": 2.6141680665031116e-06,
1703
+ "loss": 0.9075,
1704
+ "step": 242
1705
+ },
1706
+ {
1707
+ "epoch": 0.5159235668789809,
1708
+ "grad_norm": 0.6624899509120282,
1709
+ "learning_rate": 2.5966132937123963e-06,
1710
+ "loss": 0.9143,
1711
+ "step": 243
1712
+ },
1713
+ {
1714
+ "epoch": 0.5180467091295117,
1715
+ "grad_norm": 0.6587688885910037,
1716
+ "learning_rate": 2.5790537487088975e-06,
1717
+ "loss": 0.9923,
1718
+ "step": 244
1719
+ },
1720
+ {
1721
+ "epoch": 0.5201698513800425,
1722
+ "grad_norm": 0.6302763737309945,
1723
+ "learning_rate": 2.561490298846186e-06,
1724
+ "loss": 1.0052,
1725
+ "step": 245
1726
+ },
1727
+ {
1728
+ "epoch": 0.5222929936305732,
1729
+ "grad_norm": 0.6810085520210082,
1730
+ "learning_rate": 2.5439238116707103e-06,
1731
+ "loss": 0.9866,
1732
+ "step": 246
1733
+ },
1734
+ {
1735
+ "epoch": 0.524416135881104,
1736
+ "grad_norm": 0.7140669070578711,
1737
+ "learning_rate": 2.5263551548789494e-06,
1738
+ "loss": 0.9656,
1739
+ "step": 247
1740
+ },
1741
+ {
1742
+ "epoch": 0.5265392781316348,
1743
+ "grad_norm": 0.6289851811042011,
1744
+ "learning_rate": 2.5087851962745468e-06,
1745
+ "loss": 0.9364,
1746
+ "step": 248
1747
+ },
1748
+ {
1749
+ "epoch": 0.5286624203821656,
1750
+ "grad_norm": 0.667727375732809,
1751
+ "learning_rate": 2.4912148037254536e-06,
1752
+ "loss": 0.9748,
1753
+ "step": 249
1754
+ },
1755
+ {
1756
+ "epoch": 0.5307855626326964,
1757
+ "grad_norm": 0.7059493512489892,
1758
+ "learning_rate": 2.4736448451210514e-06,
1759
+ "loss": 0.9876,
1760
+ "step": 250
1761
+ },
1762
+ {
1763
+ "epoch": 0.5329087048832272,
1764
+ "grad_norm": 0.7422236381441959,
1765
+ "learning_rate": 2.45607618832929e-06,
1766
+ "loss": 0.9398,
1767
+ "step": 251
1768
+ },
1769
+ {
1770
+ "epoch": 0.535031847133758,
1771
+ "grad_norm": 0.7567396838017741,
1772
+ "learning_rate": 2.4385097011538144e-06,
1773
+ "loss": 0.9479,
1774
+ "step": 252
1775
+ },
1776
+ {
1777
+ "epoch": 0.5371549893842887,
1778
+ "grad_norm": 0.6422364949883526,
1779
+ "learning_rate": 2.420946251291103e-06,
1780
+ "loss": 0.9708,
1781
+ "step": 253
1782
+ },
1783
+ {
1784
+ "epoch": 0.5392781316348195,
1785
+ "grad_norm": 0.6121337470685102,
1786
+ "learning_rate": 2.4033867062876054e-06,
1787
+ "loss": 1.0116,
1788
+ "step": 254
1789
+ },
1790
+ {
1791
+ "epoch": 0.5414012738853503,
1792
+ "grad_norm": 0.6625230272994517,
1793
+ "learning_rate": 2.3858319334968892e-06,
1794
+ "loss": 0.9333,
1795
+ "step": 255
1796
+ },
1797
+ {
1798
+ "epoch": 0.5435244161358811,
1799
+ "grad_norm": 0.6529959967773957,
1800
+ "learning_rate": 2.368282800036801e-06,
1801
+ "loss": 0.9262,
1802
+ "step": 256
1803
+ },
1804
+ {
1805
+ "epoch": 0.5456475583864119,
1806
+ "grad_norm": 0.706423713198206,
1807
+ "learning_rate": 2.350740172746633e-06,
1808
+ "loss": 0.9357,
1809
+ "step": 257
1810
+ },
1811
+ {
1812
+ "epoch": 0.5477707006369427,
1813
+ "grad_norm": 0.6987077360671913,
1814
+ "learning_rate": 2.3332049181443016e-06,
1815
+ "loss": 0.9756,
1816
+ "step": 258
1817
+ },
1818
+ {
1819
+ "epoch": 0.5498938428874734,
1820
+ "grad_norm": 0.7052371639528945,
1821
+ "learning_rate": 2.315677902383553e-06,
1822
+ "loss": 0.9487,
1823
+ "step": 259
1824
+ },
1825
+ {
1826
+ "epoch": 0.5520169851380042,
1827
+ "grad_norm": 0.6250495885700643,
1828
+ "learning_rate": 2.298159991211174e-06,
1829
+ "loss": 0.9192,
1830
+ "step": 260
1831
+ },
1832
+ {
1833
+ "epoch": 0.554140127388535,
1834
+ "grad_norm": 0.6982497766833491,
1835
+ "learning_rate": 2.280652049924232e-06,
1836
+ "loss": 0.9609,
1837
+ "step": 261
1838
+ },
1839
+ {
1840
+ "epoch": 0.5562632696390658,
1841
+ "grad_norm": 0.6295040315340362,
1842
+ "learning_rate": 2.2631549433273294e-06,
1843
+ "loss": 1.0085,
1844
+ "step": 262
1845
+ },
1846
+ {
1847
+ "epoch": 0.5583864118895966,
1848
+ "grad_norm": 0.6644616810444942,
1849
+ "learning_rate": 2.2456695356898915e-06,
1850
+ "loss": 0.8849,
1851
+ "step": 263
1852
+ },
1853
+ {
1854
+ "epoch": 0.5605095541401274,
1855
+ "grad_norm": 0.663969598277379,
1856
+ "learning_rate": 2.2281966907034737e-06,
1857
+ "loss": 0.9424,
1858
+ "step": 264
1859
+ },
1860
+ {
1861
+ "epoch": 0.5626326963906582,
1862
+ "grad_norm": 0.6693955418858921,
1863
+ "learning_rate": 2.2107372714390973e-06,
1864
+ "loss": 0.9954,
1865
+ "step": 265
1866
+ },
1867
+ {
1868
+ "epoch": 0.564755838641189,
1869
+ "grad_norm": 0.7021462467608284,
1870
+ "learning_rate": 2.193292140304621e-06,
1871
+ "loss": 0.9928,
1872
+ "step": 266
1873
+ },
1874
+ {
1875
+ "epoch": 0.5668789808917197,
1876
+ "grad_norm": 0.6692328908805102,
1877
+ "learning_rate": 2.175862159002143e-06,
1878
+ "loss": 0.9524,
1879
+ "step": 267
1880
+ },
1881
+ {
1882
+ "epoch": 0.5690021231422505,
1883
+ "grad_norm": 0.6391930894120555,
1884
+ "learning_rate": 2.158448188485433e-06,
1885
+ "loss": 1.0429,
1886
+ "step": 268
1887
+ },
1888
+ {
1889
+ "epoch": 0.5711252653927813,
1890
+ "grad_norm": 0.634093794488882,
1891
+ "learning_rate": 2.141051088917411e-06,
1892
+ "loss": 0.9421,
1893
+ "step": 269
1894
+ },
1895
+ {
1896
+ "epoch": 0.5732484076433121,
1897
+ "grad_norm": 0.61983995227008,
1898
+ "learning_rate": 2.1236717196276558e-06,
1899
+ "loss": 0.9541,
1900
+ "step": 270
1901
+ },
1902
+ {
1903
+ "epoch": 0.5753715498938429,
1904
+ "grad_norm": 0.6086341907488318,
1905
+ "learning_rate": 2.106310939069956e-06,
1906
+ "loss": 0.9437,
1907
+ "step": 271
1908
+ },
1909
+ {
1910
+ "epoch": 0.5774946921443737,
1911
+ "grad_norm": 0.6658683338126193,
1912
+ "learning_rate": 2.088969604779914e-06,
1913
+ "loss": 0.9992,
1914
+ "step": 272
1915
+ },
1916
+ {
1917
+ "epoch": 0.5796178343949044,
1918
+ "grad_norm": 0.6650210773963607,
1919
+ "learning_rate": 2.0716485733325834e-06,
1920
+ "loss": 0.9187,
1921
+ "step": 273
1922
+ },
1923
+ {
1924
+ "epoch": 0.5817409766454352,
1925
+ "grad_norm": 0.6582276099759867,
1926
+ "learning_rate": 2.054348700300158e-06,
1927
+ "loss": 0.9959,
1928
+ "step": 274
1929
+ },
1930
+ {
1931
+ "epoch": 0.583864118895966,
1932
+ "grad_norm": 0.6730751436716349,
1933
+ "learning_rate": 2.037070840209711e-06,
1934
+ "loss": 1.0034,
1935
+ "step": 275
1936
+ },
1937
+ {
1938
+ "epoch": 0.5859872611464968,
1939
+ "grad_norm": 0.7084245464531143,
1940
+ "learning_rate": 2.019815846500988e-06,
1941
+ "loss": 0.9775,
1942
+ "step": 276
1943
+ },
1944
+ {
1945
+ "epoch": 0.5881104033970276,
1946
+ "grad_norm": 0.6518940026744457,
1947
+ "learning_rate": 2.0025845714842514e-06,
1948
+ "loss": 0.9474,
1949
+ "step": 277
1950
+ },
1951
+ {
1952
+ "epoch": 0.5902335456475584,
1953
+ "grad_norm": 0.6808230009128965,
1954
+ "learning_rate": 1.9853778662981747e-06,
1955
+ "loss": 0.9451,
1956
+ "step": 278
1957
+ },
1958
+ {
1959
+ "epoch": 0.5923566878980892,
1960
+ "grad_norm": 0.6902948572901826,
1961
+ "learning_rate": 1.968196580867808e-06,
1962
+ "loss": 0.9856,
1963
+ "step": 279
1964
+ },
1965
+ {
1966
+ "epoch": 0.5944798301486199,
1967
+ "grad_norm": 0.611810608377548,
1968
+ "learning_rate": 1.951041563862593e-06,
1969
+ "loss": 1.0013,
1970
+ "step": 280
1971
+ },
1972
+ {
1973
+ "epoch": 0.5966029723991507,
1974
+ "grad_norm": 0.6954721611774066,
1975
+ "learning_rate": 1.933913662654441e-06,
1976
+ "loss": 0.9897,
1977
+ "step": 281
1978
+ },
1979
+ {
1980
+ "epoch": 0.5987261146496815,
1981
+ "grad_norm": 0.6406168524428356,
1982
+ "learning_rate": 1.91681372327588e-06,
1983
+ "loss": 0.919,
1984
+ "step": 282
1985
+ },
1986
+ {
1987
+ "epoch": 0.6008492569002123,
1988
+ "grad_norm": 0.6704361726473957,
1989
+ "learning_rate": 1.899742590378263e-06,
1990
+ "loss": 0.9811,
1991
+ "step": 283
1992
+ },
1993
+ {
1994
+ "epoch": 0.6029723991507431,
1995
+ "grad_norm": 0.6778804788413157,
1996
+ "learning_rate": 1.8827011071900476e-06,
1997
+ "loss": 0.9735,
1998
+ "step": 284
1999
+ },
2000
+ {
2001
+ "epoch": 0.6050955414012739,
2002
+ "grad_norm": 0.7177755805617885,
2003
+ "learning_rate": 1.865690115475144e-06,
2004
+ "loss": 0.9925,
2005
+ "step": 285
2006
+ },
2007
+ {
2008
+ "epoch": 0.6072186836518046,
2009
+ "grad_norm": 0.6894390591882673,
2010
+ "learning_rate": 1.8487104554913362e-06,
2011
+ "loss": 0.9305,
2012
+ "step": 286
2013
+ },
2014
+ {
2015
+ "epoch": 0.6093418259023354,
2016
+ "grad_norm": 0.6116905753834903,
2017
+ "learning_rate": 1.8317629659487796e-06,
2018
+ "loss": 0.9274,
2019
+ "step": 287
2020
+ },
2021
+ {
2022
+ "epoch": 0.6114649681528662,
2023
+ "grad_norm": 0.6670439904291463,
2024
+ "learning_rate": 1.8148484839685663e-06,
2025
+ "loss": 0.9729,
2026
+ "step": 288
2027
+ },
2028
+ {
2029
+ "epoch": 0.613588110403397,
2030
+ "grad_norm": 0.694254062629121,
2031
+ "learning_rate": 1.7979678450413845e-06,
2032
+ "loss": 0.9044,
2033
+ "step": 289
2034
+ },
2035
+ {
2036
+ "epoch": 0.6157112526539278,
2037
+ "grad_norm": 0.6159818959254523,
2038
+ "learning_rate": 1.781121882986245e-06,
2039
+ "loss": 0.9642,
2040
+ "step": 290
2041
+ },
2042
+ {
2043
+ "epoch": 0.6178343949044586,
2044
+ "grad_norm": 0.660521989314923,
2045
+ "learning_rate": 1.764311429909291e-06,
2046
+ "loss": 0.9684,
2047
+ "step": 291
2048
+ },
2049
+ {
2050
+ "epoch": 0.6199575371549894,
2051
+ "grad_norm": 0.6190727862079969,
2052
+ "learning_rate": 1.7475373161627034e-06,
2053
+ "loss": 0.98,
2054
+ "step": 292
2055
+ },
2056
+ {
2057
+ "epoch": 0.6220806794055201,
2058
+ "grad_norm": 0.6684171243946048,
2059
+ "learning_rate": 1.730800370303683e-06,
2060
+ "loss": 0.9953,
2061
+ "step": 293
2062
+ },
2063
+ {
2064
+ "epoch": 0.6242038216560509,
2065
+ "grad_norm": 0.6655271015347415,
2066
+ "learning_rate": 1.7141014190535183e-06,
2067
+ "loss": 0.8907,
2068
+ "step": 294
2069
+ },
2070
+ {
2071
+ "epoch": 0.6263269639065817,
2072
+ "grad_norm": 0.6631683337776253,
2073
+ "learning_rate": 1.6974412872567598e-06,
2074
+ "loss": 0.9509,
2075
+ "step": 295
2076
+ },
2077
+ {
2078
+ "epoch": 0.6284501061571125,
2079
+ "grad_norm": 0.7133500119714207,
2080
+ "learning_rate": 1.6808207978404685e-06,
2081
+ "loss": 0.9914,
2082
+ "step": 296
2083
+ },
2084
+ {
2085
+ "epoch": 0.6305732484076433,
2086
+ "grad_norm": 0.6848781673615809,
2087
+ "learning_rate": 1.6642407717735711e-06,
2088
+ "loss": 0.9732,
2089
+ "step": 297
2090
+ },
2091
+ {
2092
+ "epoch": 0.6326963906581741,
2093
+ "grad_norm": 0.6309522450595455,
2094
+ "learning_rate": 1.647702028026308e-06,
2095
+ "loss": 0.9368,
2096
+ "step": 298
2097
+ },
2098
+ {
2099
+ "epoch": 0.6348195329087049,
2100
+ "grad_norm": 0.6178347487450343,
2101
+ "learning_rate": 1.6312053835297783e-06,
2102
+ "loss": 0.983,
2103
+ "step": 299
2104
+ },
2105
+ {
2106
+ "epoch": 0.6369426751592356,
2107
+ "grad_norm": 0.6737246544973767,
2108
+ "learning_rate": 1.6147516531355912e-06,
2109
+ "loss": 0.9203,
2110
+ "step": 300
2111
+ },
2112
+ {
2113
+ "epoch": 0.6390658174097664,
2114
+ "grad_norm": 0.675352006077776,
2115
+ "learning_rate": 1.5983416495756116e-06,
2116
+ "loss": 0.9971,
2117
+ "step": 301
2118
+ },
2119
+ {
2120
+ "epoch": 0.6411889596602972,
2121
+ "grad_norm": 0.6402934188286067,
2122
+ "learning_rate": 1.58197618342182e-06,
2123
+ "loss": 0.9614,
2124
+ "step": 302
2125
+ },
2126
+ {
2127
+ "epoch": 0.643312101910828,
2128
+ "grad_norm": 0.7184921383563952,
2129
+ "learning_rate": 1.565656063046272e-06,
2130
+ "loss": 0.9516,
2131
+ "step": 303
2132
+ },
2133
+ {
2134
+ "epoch": 0.6454352441613588,
2135
+ "grad_norm": 0.6704718578724861,
2136
+ "learning_rate": 1.549382094581166e-06,
2137
+ "loss": 0.9153,
2138
+ "step": 304
2139
+ },
2140
+ {
2141
+ "epoch": 0.6475583864118896,
2142
+ "grad_norm": 0.6636811286993395,
2143
+ "learning_rate": 1.5331550818790313e-06,
2144
+ "loss": 0.9361,
2145
+ "step": 305
2146
+ },
2147
+ {
2148
+ "epoch": 0.6496815286624203,
2149
+ "grad_norm": 0.6355031775992976,
2150
+ "learning_rate": 1.516975826473015e-06,
2151
+ "loss": 0.9661,
2152
+ "step": 306
2153
+ },
2154
+ {
2155
+ "epoch": 0.6518046709129511,
2156
+ "grad_norm": 0.6864068487323046,
2157
+ "learning_rate": 1.5008451275372948e-06,
2158
+ "loss": 0.9647,
2159
+ "step": 307
2160
+ },
2161
+ {
2162
+ "epoch": 0.6539278131634819,
2163
+ "grad_norm": 0.6194120153211208,
2164
+ "learning_rate": 1.4847637818475992e-06,
2165
+ "loss": 0.9683,
2166
+ "step": 308
2167
+ },
2168
+ {
2169
+ "epoch": 0.6560509554140127,
2170
+ "grad_norm": 0.6364599124064249,
2171
+ "learning_rate": 1.4687325837418564e-06,
2172
+ "loss": 1.0339,
2173
+ "step": 309
2174
+ },
2175
+ {
2176
+ "epoch": 0.6581740976645435,
2177
+ "grad_norm": 0.6254187950093356,
2178
+ "learning_rate": 1.4527523250809544e-06,
2179
+ "loss": 0.991,
2180
+ "step": 310
2181
+ },
2182
+ {
2183
+ "epoch": 0.6602972399150743,
2184
+ "grad_norm": 0.7142238718221583,
2185
+ "learning_rate": 1.4368237952096258e-06,
2186
+ "loss": 0.9417,
2187
+ "step": 311
2188
+ },
2189
+ {
2190
+ "epoch": 0.6624203821656051,
2191
+ "grad_norm": 0.6888278924765849,
2192
+ "learning_rate": 1.4209477809174634e-06,
2193
+ "loss": 0.9123,
2194
+ "step": 312
2195
+ },
2196
+ {
2197
+ "epoch": 0.6645435244161358,
2198
+ "grad_norm": 0.7263883196119595,
2199
+ "learning_rate": 1.4051250664000515e-06,
2200
+ "loss": 0.9574,
2201
+ "step": 313
2202
+ },
2203
+ {
2204
+ "epoch": 0.6666666666666666,
2205
+ "grad_norm": 0.6287509757808388,
2206
+ "learning_rate": 1.389356433220232e-06,
2207
+ "loss": 0.9763,
2208
+ "step": 314
2209
+ },
2210
+ {
2211
+ "epoch": 0.6687898089171974,
2212
+ "grad_norm": 0.6255170909323848,
2213
+ "learning_rate": 1.3736426602694999e-06,
2214
+ "loss": 0.9185,
2215
+ "step": 315
2216
+ },
2217
+ {
2218
+ "epoch": 0.6709129511677282,
2219
+ "grad_norm": 0.6159840521359649,
2220
+ "learning_rate": 1.357984523729533e-06,
2221
+ "loss": 0.9936,
2222
+ "step": 316
2223
+ },
2224
+ {
2225
+ "epoch": 0.673036093418259,
2226
+ "grad_norm": 0.6342661101597554,
2227
+ "learning_rate": 1.3423827970338422e-06,
2228
+ "loss": 0.9582,
2229
+ "step": 317
2230
+ },
2231
+ {
2232
+ "epoch": 0.6751592356687898,
2233
+ "grad_norm": 0.6556216469291356,
2234
+ "learning_rate": 1.3268382508295813e-06,
2235
+ "loss": 0.9382,
2236
+ "step": 318
2237
+ },
2238
+ {
2239
+ "epoch": 0.6772823779193206,
2240
+ "grad_norm": 0.6455027818834712,
2241
+ "learning_rate": 1.3113516529394705e-06,
2242
+ "loss": 0.9464,
2243
+ "step": 319
2244
+ },
2245
+ {
2246
+ "epoch": 0.6794055201698513,
2247
+ "grad_norm": 0.646423128738099,
2248
+ "learning_rate": 1.2959237683238768e-06,
2249
+ "loss": 0.8862,
2250
+ "step": 320
2251
+ },
2252
+ {
2253
+ "epoch": 0.6815286624203821,
2254
+ "grad_norm": 0.6149278332084452,
2255
+ "learning_rate": 1.2805553590430198e-06,
2256
+ "loss": 0.9907,
2257
+ "step": 321
2258
+ },
2259
+ {
2260
+ "epoch": 0.6836518046709129,
2261
+ "grad_norm": 0.661598136600806,
2262
+ "learning_rate": 1.2652471842193415e-06,
2263
+ "loss": 0.8954,
2264
+ "step": 322
2265
+ },
2266
+ {
2267
+ "epoch": 0.6857749469214437,
2268
+ "grad_norm": 0.7260709760195354,
2269
+ "learning_rate": 1.2500000000000007e-06,
2270
+ "loss": 0.9774,
2271
+ "step": 323
2272
+ },
2273
+ {
2274
+ "epoch": 0.6878980891719745,
2275
+ "grad_norm": 0.6539931348515254,
2276
+ "learning_rate": 1.2348145595195247e-06,
2277
+ "loss": 0.993,
2278
+ "step": 324
2279
+ },
2280
+ {
2281
+ "epoch": 0.6900212314225053,
2282
+ "grad_norm": 0.6415119742490282,
2283
+ "learning_rate": 1.2196916128626126e-06,
2284
+ "loss": 0.9817,
2285
+ "step": 325
2286
+ },
2287
+ {
2288
+ "epoch": 0.692144373673036,
2289
+ "grad_norm": 0.6229170743011443,
2290
+ "learning_rate": 1.2046319070270793e-06,
2291
+ "loss": 0.9355,
2292
+ "step": 326
2293
+ },
2294
+ {
2295
+ "epoch": 0.6942675159235668,
2296
+ "grad_norm": 0.6265657687743286,
2297
+ "learning_rate": 1.1896361858869598e-06,
2298
+ "loss": 0.97,
2299
+ "step": 327
2300
+ },
2301
+ {
2302
+ "epoch": 0.6963906581740976,
2303
+ "grad_norm": 0.6472861949921104,
2304
+ "learning_rate": 1.174705190155766e-06,
2305
+ "loss": 0.9052,
2306
+ "step": 328
2307
+ },
2308
+ {
2309
+ "epoch": 0.6985138004246284,
2310
+ "grad_norm": 0.6491445376690814,
2311
+ "learning_rate": 1.1598396573499005e-06,
2312
+ "loss": 0.928,
2313
+ "step": 329
2314
+ },
2315
+ {
2316
+ "epoch": 0.7006369426751592,
2317
+ "grad_norm": 0.7123592443926866,
2318
+ "learning_rate": 1.145040321752223e-06,
2319
+ "loss": 0.9875,
2320
+ "step": 330
2321
+ },
2322
+ {
2323
+ "epoch": 0.70276008492569,
2324
+ "grad_norm": 0.6420954357672332,
2325
+ "learning_rate": 1.1303079143757831e-06,
2326
+ "loss": 0.9396,
2327
+ "step": 331
2328
+ },
2329
+ {
2330
+ "epoch": 0.7048832271762208,
2331
+ "grad_norm": 0.687954637263409,
2332
+ "learning_rate": 1.1156431629277118e-06,
2333
+ "loss": 0.9622,
2334
+ "step": 332
2335
+ },
2336
+ {
2337
+ "epoch": 0.7070063694267515,
2338
+ "grad_norm": 0.6587466991092564,
2339
+ "learning_rate": 1.1010467917732783e-06,
2340
+ "loss": 0.9569,
2341
+ "step": 333
2342
+ },
2343
+ {
2344
+ "epoch": 0.7091295116772823,
2345
+ "grad_norm": 0.6343940288936673,
2346
+ "learning_rate": 1.0865195219001028e-06,
2347
+ "loss": 0.9477,
2348
+ "step": 334
2349
+ },
2350
+ {
2351
+ "epoch": 0.7112526539278131,
2352
+ "grad_norm": 0.6054208136804363,
2353
+ "learning_rate": 1.0720620708825536e-06,
2354
+ "loss": 0.9379,
2355
+ "step": 335
2356
+ },
2357
+ {
2358
+ "epoch": 0.7133757961783439,
2359
+ "grad_norm": 0.6680904987189861,
2360
+ "learning_rate": 1.0576751528462936e-06,
2361
+ "loss": 0.973,
2362
+ "step": 336
2363
+ },
2364
+ {
2365
+ "epoch": 0.7154989384288747,
2366
+ "grad_norm": 0.6359560896597604,
2367
+ "learning_rate": 1.043359478433012e-06,
2368
+ "loss": 0.9951,
2369
+ "step": 337
2370
+ },
2371
+ {
2372
+ "epoch": 0.7176220806794055,
2373
+ "grad_norm": 0.674548446558131,
2374
+ "learning_rate": 1.0291157547653171e-06,
2375
+ "loss": 0.9128,
2376
+ "step": 338
2377
+ },
2378
+ {
2379
+ "epoch": 0.7197452229299363,
2380
+ "grad_norm": 0.6171616777905478,
2381
+ "learning_rate": 1.0149446854118154e-06,
2382
+ "loss": 0.9619,
2383
+ "step": 339
2384
+ },
2385
+ {
2386
+ "epoch": 0.721868365180467,
2387
+ "grad_norm": 0.7018076786345825,
2388
+ "learning_rate": 1.0008469703523493e-06,
2389
+ "loss": 0.9473,
2390
+ "step": 340
2391
+ },
2392
+ {
2393
+ "epoch": 0.7239915074309978,
2394
+ "grad_norm": 0.6108858922632827,
2395
+ "learning_rate": 9.868233059434286e-07,
2396
+ "loss": 0.979,
2397
+ "step": 341
2398
+ },
2399
+ {
2400
+ "epoch": 0.7261146496815286,
2401
+ "grad_norm": 0.6059128161574572,
2402
+ "learning_rate": 9.728743848838334e-07,
2403
+ "loss": 0.9513,
2404
+ "step": 342
2405
+ },
2406
+ {
2407
+ "epoch": 0.7282377919320594,
2408
+ "grad_norm": 0.639834131452764,
2409
+ "learning_rate": 9.590008961803942e-07,
2410
+ "loss": 1.0088,
2411
+ "step": 343
2412
+ },
2413
+ {
2414
+ "epoch": 0.7303609341825902,
2415
+ "grad_norm": 0.5974204476419624,
2416
+ "learning_rate": 9.452035251139621e-07,
2417
+ "loss": 0.9731,
2418
+ "step": 344
2419
+ },
2420
+ {
2421
+ "epoch": 0.732484076433121,
2422
+ "grad_norm": 0.6373372180798436,
2423
+ "learning_rate": 9.314829532055569e-07,
2424
+ "loss": 0.9176,
2425
+ "step": 345
2426
+ },
2427
+ {
2428
+ "epoch": 0.7346072186836518,
2429
+ "grad_norm": 0.6323537425779472,
2430
+ "learning_rate": 9.178398581827086e-07,
2431
+ "loss": 0.9845,
2432
+ "step": 346
2433
+ },
2434
+ {
2435
+ "epoch": 0.7367303609341825,
2436
+ "grad_norm": 0.6482901339045514,
2437
+ "learning_rate": 9.042749139459711e-07,
2438
+ "loss": 1.0278,
2439
+ "step": 347
2440
+ },
2441
+ {
2442
+ "epoch": 0.7388535031847133,
2443
+ "grad_norm": 0.6726254274936714,
2444
+ "learning_rate": 8.907887905356461e-07,
2445
+ "loss": 0.9436,
2446
+ "step": 348
2447
+ },
2448
+ {
2449
+ "epoch": 0.7409766454352441,
2450
+ "grad_norm": 0.6629110485150135,
2451
+ "learning_rate": 8.77382154098679e-07,
2452
+ "loss": 0.9551,
2453
+ "step": 349
2454
+ },
2455
+ {
2456
+ "epoch": 0.7430997876857749,
2457
+ "grad_norm": 0.6671801531262402,
2458
+ "learning_rate": 8.64055666855757e-07,
2459
+ "loss": 0.9105,
2460
+ "step": 350
2461
+ },
2462
+ {
2463
+ "epoch": 0.7452229299363057,
2464
+ "grad_norm": 0.6703424513016992,
2465
+ "learning_rate": 8.508099870685979e-07,
2466
+ "loss": 0.9302,
2467
+ "step": 351
2468
+ },
2469
+ {
2470
+ "epoch": 0.7473460721868365,
2471
+ "grad_norm": 0.6361868915566896,
2472
+ "learning_rate": 8.376457690074386e-07,
2473
+ "loss": 0.9655,
2474
+ "step": 352
2475
+ },
2476
+ {
2477
+ "epoch": 0.7494692144373672,
2478
+ "grad_norm": 0.6209038321111798,
2479
+ "learning_rate": 8.245636629187121e-07,
2480
+ "loss": 0.9607,
2481
+ "step": 353
2482
+ },
2483
+ {
2484
+ "epoch": 0.7515923566878981,
2485
+ "grad_norm": 0.607143406990376,
2486
+ "learning_rate": 8.115643149929318e-07,
2487
+ "loss": 1.028,
2488
+ "step": 354
2489
+ },
2490
+ {
2491
+ "epoch": 0.7537154989384289,
2492
+ "grad_norm": 0.6565024756948546,
2493
+ "learning_rate": 7.986483673327724e-07,
2494
+ "loss": 0.9162,
2495
+ "step": 355
2496
+ },
2497
+ {
2498
+ "epoch": 0.7558386411889597,
2499
+ "grad_norm": 0.6064614848733034,
2500
+ "learning_rate": 7.858164579213548e-07,
2501
+ "loss": 0.9722,
2502
+ "step": 356
2503
+ },
2504
+ {
2505
+ "epoch": 0.7579617834394905,
2506
+ "grad_norm": 0.6470366271469512,
2507
+ "learning_rate": 7.730692205907295e-07,
2508
+ "loss": 0.9369,
2509
+ "step": 357
2510
+ },
2511
+ {
2512
+ "epoch": 0.7600849256900213,
2513
+ "grad_norm": 0.619321171290989,
2514
+ "learning_rate": 7.604072849905708e-07,
2515
+ "loss": 0.9738,
2516
+ "step": 358
2517
+ },
2518
+ {
2519
+ "epoch": 0.7622080679405521,
2520
+ "grad_norm": 0.6651018030884595,
2521
+ "learning_rate": 7.478312765570747e-07,
2522
+ "loss": 0.9867,
2523
+ "step": 359
2524
+ },
2525
+ {
2526
+ "epoch": 0.7643312101910829,
2527
+ "grad_norm": 0.643295699040654,
2528
+ "learning_rate": 7.353418164820656e-07,
2529
+ "loss": 0.9507,
2530
+ "step": 360
2531
+ },
2532
+ {
2533
+ "epoch": 0.7664543524416136,
2534
+ "grad_norm": 0.6349317217486001,
2535
+ "learning_rate": 7.229395216823132e-07,
2536
+ "loss": 0.8986,
2537
+ "step": 361
2538
+ },
2539
+ {
2540
+ "epoch": 0.7685774946921444,
2541
+ "grad_norm": 0.6623180797372981,
2542
+ "learning_rate": 7.106250047690588e-07,
2543
+ "loss": 0.9791,
2544
+ "step": 362
2545
+ },
2546
+ {
2547
+ "epoch": 0.7707006369426752,
2548
+ "grad_norm": 0.6094671854634959,
2549
+ "learning_rate": 6.983988740177553e-07,
2550
+ "loss": 0.9179,
2551
+ "step": 363
2552
+ },
2553
+ {
2554
+ "epoch": 0.772823779193206,
2555
+ "grad_norm": 0.6718517906357772,
2556
+ "learning_rate": 6.862617333380214e-07,
2557
+ "loss": 0.9912,
2558
+ "step": 364
2559
+ },
2560
+ {
2561
+ "epoch": 0.7749469214437368,
2562
+ "grad_norm": 0.5913671123397655,
2563
+ "learning_rate": 6.742141822438144e-07,
2564
+ "loss": 0.969,
2565
+ "step": 365
2566
+ },
2567
+ {
2568
+ "epoch": 0.7770700636942676,
2569
+ "grad_norm": 0.6223699232576859,
2570
+ "learning_rate": 6.622568158238126e-07,
2571
+ "loss": 0.8975,
2572
+ "step": 366
2573
+ },
2574
+ {
2575
+ "epoch": 0.7791932059447984,
2576
+ "grad_norm": 0.6272157524107641,
2577
+ "learning_rate": 6.503902247120239e-07,
2578
+ "loss": 0.9675,
2579
+ "step": 367
2580
+ },
2581
+ {
2582
+ "epoch": 0.7813163481953291,
2583
+ "grad_norm": 0.6511133863417863,
2584
+ "learning_rate": 6.386149950586099e-07,
2585
+ "loss": 0.9877,
2586
+ "step": 368
2587
+ },
2588
+ {
2589
+ "epoch": 0.7834394904458599,
2590
+ "grad_norm": 0.6541100860291786,
2591
+ "learning_rate": 6.269317085009364e-07,
2592
+ "loss": 0.9177,
2593
+ "step": 369
2594
+ },
2595
+ {
2596
+ "epoch": 0.7855626326963907,
2597
+ "grad_norm": 0.6243600418119797,
2598
+ "learning_rate": 6.153409421348358e-07,
2599
+ "loss": 0.9283,
2600
+ "step": 370
2601
+ },
2602
+ {
2603
+ "epoch": 0.7876857749469215,
2604
+ "grad_norm": 0.6728138627005387,
2605
+ "learning_rate": 6.038432684861123e-07,
2606
+ "loss": 0.9366,
2607
+ "step": 371
2608
+ },
2609
+ {
2610
+ "epoch": 0.7898089171974523,
2611
+ "grad_norm": 0.6359307108447517,
2612
+ "learning_rate": 5.92439255482252e-07,
2613
+ "loss": 0.9407,
2614
+ "step": 372
2615
+ },
2616
+ {
2617
+ "epoch": 0.7919320594479831,
2618
+ "grad_norm": 0.6515305344696402,
2619
+ "learning_rate": 5.811294664243752e-07,
2620
+ "loss": 0.8832,
2621
+ "step": 373
2622
+ },
2623
+ {
2624
+ "epoch": 0.7940552016985138,
2625
+ "grad_norm": 0.6699132219023968,
2626
+ "learning_rate": 5.699144599594131e-07,
2627
+ "loss": 0.9203,
2628
+ "step": 374
2629
+ },
2630
+ {
2631
+ "epoch": 0.7961783439490446,
2632
+ "grad_norm": 0.6531325580443874,
2633
+ "learning_rate": 5.587947900525093e-07,
2634
+ "loss": 0.9486,
2635
+ "step": 375
2636
+ },
2637
+ {
2638
+ "epoch": 0.7983014861995754,
2639
+ "grad_norm": 0.6235259540633097,
2640
+ "learning_rate": 5.4777100595966e-07,
2641
+ "loss": 0.9976,
2642
+ "step": 376
2643
+ },
2644
+ {
2645
+ "epoch": 0.8004246284501062,
2646
+ "grad_norm": 0.721147004969793,
2647
+ "learning_rate": 5.368436522005816e-07,
2648
+ "loss": 0.9333,
2649
+ "step": 377
2650
+ },
2651
+ {
2652
+ "epoch": 0.802547770700637,
2653
+ "grad_norm": 0.654820567386982,
2654
+ "learning_rate": 5.26013268531817e-07,
2655
+ "loss": 0.9609,
2656
+ "step": 378
2657
+ },
2658
+ {
2659
+ "epoch": 0.8046709129511678,
2660
+ "grad_norm": 0.6455700462685393,
2661
+ "learning_rate": 5.1528038992007e-07,
2662
+ "loss": 0.9963,
2663
+ "step": 379
2664
+ },
2665
+ {
2666
+ "epoch": 0.8067940552016986,
2667
+ "grad_norm": 0.6521250389244575,
2668
+ "learning_rate": 5.046455465157849e-07,
2669
+ "loss": 0.9317,
2670
+ "step": 380
2671
+ },
2672
+ {
2673
+ "epoch": 0.8089171974522293,
2674
+ "grad_norm": 0.6233082624968019,
2675
+ "learning_rate": 4.941092636269554e-07,
2676
+ "loss": 1.0314,
2677
+ "step": 381
2678
+ },
2679
+ {
2680
+ "epoch": 0.8110403397027601,
2681
+ "grad_norm": 0.6284738498607256,
2682
+ "learning_rate": 4.836720616931831e-07,
2683
+ "loss": 0.991,
2684
+ "step": 382
2685
+ },
2686
+ {
2687
+ "epoch": 0.8131634819532909,
2688
+ "grad_norm": 0.6251411989698912,
2689
+ "learning_rate": 4.7333445625996233e-07,
2690
+ "loss": 0.9631,
2691
+ "step": 383
2692
+ },
2693
+ {
2694
+ "epoch": 0.8152866242038217,
2695
+ "grad_norm": 0.6093691597832145,
2696
+ "learning_rate": 4.6309695795322323e-07,
2697
+ "loss": 0.9258,
2698
+ "step": 384
2699
+ },
2700
+ {
2701
+ "epoch": 0.8174097664543525,
2702
+ "grad_norm": 0.6425399405048542,
2703
+ "learning_rate": 4.5296007245410225e-07,
2704
+ "loss": 0.9179,
2705
+ "step": 385
2706
+ },
2707
+ {
2708
+ "epoch": 0.8195329087048833,
2709
+ "grad_norm": 0.6669561342230419,
2710
+ "learning_rate": 4.429243004739692e-07,
2711
+ "loss": 0.8939,
2712
+ "step": 386
2713
+ },
2714
+ {
2715
+ "epoch": 0.821656050955414,
2716
+ "grad_norm": 0.6260259468897137,
2717
+ "learning_rate": 4.329901377296902e-07,
2718
+ "loss": 0.984,
2719
+ "step": 387
2720
+ },
2721
+ {
2722
+ "epoch": 0.8237791932059448,
2723
+ "grad_norm": 0.6393791566126937,
2724
+ "learning_rate": 4.2315807491914747e-07,
2725
+ "loss": 0.9454,
2726
+ "step": 388
2727
+ },
2728
+ {
2729
+ "epoch": 0.8259023354564756,
2730
+ "grad_norm": 0.6513774907103931,
2731
+ "learning_rate": 4.1342859769699483e-07,
2732
+ "loss": 1.0317,
2733
+ "step": 389
2734
+ },
2735
+ {
2736
+ "epoch": 0.8280254777070064,
2737
+ "grad_norm": 0.6269281204448669,
2738
+ "learning_rate": 4.038021866506725e-07,
2739
+ "loss": 0.9402,
2740
+ "step": 390
2741
+ },
2742
+ {
2743
+ "epoch": 0.8301486199575372,
2744
+ "grad_norm": 0.6049355089918522,
2745
+ "learning_rate": 3.9427931727666983e-07,
2746
+ "loss": 1.0111,
2747
+ "step": 391
2748
+ },
2749
+ {
2750
+ "epoch": 0.832271762208068,
2751
+ "grad_norm": 0.6896126089841778,
2752
+ "learning_rate": 3.848604599570338e-07,
2753
+ "loss": 0.9388,
2754
+ "step": 392
2755
+ },
2756
+ {
2757
+ "epoch": 0.8343949044585988,
2758
+ "grad_norm": 0.6323897929388586,
2759
+ "learning_rate": 3.7554607993613823e-07,
2760
+ "loss": 0.943,
2761
+ "step": 393
2762
+ },
2763
+ {
2764
+ "epoch": 0.8365180467091295,
2765
+ "grad_norm": 0.643316655036959,
2766
+ "learning_rate": 3.6633663729770007e-07,
2767
+ "loss": 0.9258,
2768
+ "step": 394
2769
+ },
2770
+ {
2771
+ "epoch": 0.8386411889596603,
2772
+ "grad_norm": 0.6880537419205733,
2773
+ "learning_rate": 3.572325869420587e-07,
2774
+ "loss": 0.9288,
2775
+ "step": 395
2776
+ },
2777
+ {
2778
+ "epoch": 0.8407643312101911,
2779
+ "grad_norm": 0.6503968205421878,
2780
+ "learning_rate": 3.48234378563698e-07,
2781
+ "loss": 0.9486,
2782
+ "step": 396
2783
+ },
2784
+ {
2785
+ "epoch": 0.8428874734607219,
2786
+ "grad_norm": 0.6553158860120801,
2787
+ "learning_rate": 3.3934245662904207e-07,
2788
+ "loss": 0.9833,
2789
+ "step": 397
2790
+ },
2791
+ {
2792
+ "epoch": 0.8450106157112527,
2793
+ "grad_norm": 0.6537781810406033,
2794
+ "learning_rate": 3.3055726035449486e-07,
2795
+ "loss": 1.0238,
2796
+ "step": 398
2797
+ },
2798
+ {
2799
+ "epoch": 0.8471337579617835,
2800
+ "grad_norm": 0.6064261172835044,
2801
+ "learning_rate": 3.2187922368474954e-07,
2802
+ "loss": 0.9503,
2803
+ "step": 399
2804
+ },
2805
+ {
2806
+ "epoch": 0.8492569002123143,
2807
+ "grad_norm": 0.6358301794610944,
2808
+ "learning_rate": 3.133087752713479e-07,
2809
+ "loss": 1.0033,
2810
+ "step": 400
2811
+ },
2812
+ {
2813
+ "epoch": 0.851380042462845,
2814
+ "grad_norm": 0.6910319036256287,
2815
+ "learning_rate": 3.048463384515149e-07,
2816
+ "loss": 0.99,
2817
+ "step": 401
2818
+ },
2819
+ {
2820
+ "epoch": 0.8535031847133758,
2821
+ "grad_norm": 0.6770622312793074,
2822
+ "learning_rate": 2.9649233122724106e-07,
2823
+ "loss": 0.9066,
2824
+ "step": 402
2825
+ },
2826
+ {
2827
+ "epoch": 0.8556263269639066,
2828
+ "grad_norm": 0.6570081359837786,
2829
+ "learning_rate": 2.88247166244639e-07,
2830
+ "loss": 0.9943,
2831
+ "step": 403
2832
+ },
2833
+ {
2834
+ "epoch": 0.8577494692144374,
2835
+ "grad_norm": 0.6111215068802225,
2836
+ "learning_rate": 2.8011125077355873e-07,
2837
+ "loss": 0.949,
2838
+ "step": 404
2839
+ },
2840
+ {
2841
+ "epoch": 0.8598726114649682,
2842
+ "grad_norm": 0.6463532654670587,
2843
+ "learning_rate": 2.7208498668747393e-07,
2844
+ "loss": 0.9262,
2845
+ "step": 405
2846
+ },
2847
+ {
2848
+ "epoch": 0.861995753715499,
2849
+ "grad_norm": 0.6544581992958507,
2850
+ "learning_rate": 2.641687704436269e-07,
2851
+ "loss": 0.983,
2852
+ "step": 406
2853
+ },
2854
+ {
2855
+ "epoch": 0.8641188959660298,
2856
+ "grad_norm": 0.6368211507084761,
2857
+ "learning_rate": 2.563629930634487e-07,
2858
+ "loss": 0.9573,
2859
+ "step": 407
2860
+ },
2861
+ {
2862
+ "epoch": 0.8662420382165605,
2863
+ "grad_norm": 0.6382461780742053,
2864
+ "learning_rate": 2.4866804011324296e-07,
2865
+ "loss": 0.9887,
2866
+ "step": 408
2867
+ },
2868
+ {
2869
+ "epoch": 0.8683651804670913,
2870
+ "grad_norm": 0.6250872686300754,
2871
+ "learning_rate": 2.410842916851425e-07,
2872
+ "loss": 0.9696,
2873
+ "step": 409
2874
+ },
2875
+ {
2876
+ "epoch": 0.8704883227176221,
2877
+ "grad_norm": 0.6767356131769894,
2878
+ "learning_rate": 2.3361212237833357e-07,
2879
+ "loss": 0.9911,
2880
+ "step": 410
2881
+ },
2882
+ {
2883
+ "epoch": 0.8726114649681529,
2884
+ "grad_norm": 0.6224360952672792,
2885
+ "learning_rate": 2.2625190128055168e-07,
2886
+ "loss": 0.9579,
2887
+ "step": 411
2888
+ },
2889
+ {
2890
+ "epoch": 0.8747346072186837,
2891
+ "grad_norm": 0.6529103135781014,
2892
+ "learning_rate": 2.1900399194985434e-07,
2893
+ "loss": 0.9722,
2894
+ "step": 412
2895
+ },
2896
+ {
2897
+ "epoch": 0.8768577494692145,
2898
+ "grad_norm": 0.6367464766206924,
2899
+ "learning_rate": 2.118687523966559e-07,
2900
+ "loss": 0.9636,
2901
+ "step": 413
2902
+ },
2903
+ {
2904
+ "epoch": 0.8789808917197452,
2905
+ "grad_norm": 0.6316689138643529,
2906
+ "learning_rate": 2.0484653506605223e-07,
2907
+ "loss": 0.959,
2908
+ "step": 414
2909
+ },
2910
+ {
2911
+ "epoch": 0.881104033970276,
2912
+ "grad_norm": 0.6451224349585934,
2913
+ "learning_rate": 1.9793768682040526e-07,
2914
+ "loss": 0.9981,
2915
+ "step": 415
2916
+ },
2917
+ {
2918
+ "epoch": 0.8832271762208068,
2919
+ "grad_norm": 0.6301838097010446,
2920
+ "learning_rate": 1.911425489222127e-07,
2921
+ "loss": 0.9904,
2922
+ "step": 416
2923
+ },
2924
+ {
2925
+ "epoch": 0.8853503184713376,
2926
+ "grad_norm": 0.7327431200834074,
2927
+ "learning_rate": 1.8446145701724982e-07,
2928
+ "loss": 0.9716,
2929
+ "step": 417
2930
+ },
2931
+ {
2932
+ "epoch": 0.8874734607218684,
2933
+ "grad_norm": 0.6641289243508941,
2934
+ "learning_rate": 1.778947411179932e-07,
2935
+ "loss": 0.987,
2936
+ "step": 418
2937
+ },
2938
+ {
2939
+ "epoch": 0.8895966029723992,
2940
+ "grad_norm": 0.6760362291459804,
2941
+ "learning_rate": 1.7144272558731466e-07,
2942
+ "loss": 0.9067,
2943
+ "step": 419
2944
+ },
2945
+ {
2946
+ "epoch": 0.89171974522293,
2947
+ "grad_norm": 0.6288353137171142,
2948
+ "learning_rate": 1.6510572912246476e-07,
2949
+ "loss": 0.9142,
2950
+ "step": 420
2951
+ },
2952
+ {
2953
+ "epoch": 0.8938428874734607,
2954
+ "grad_norm": 0.6217799653332664,
2955
+ "learning_rate": 1.5888406473932694e-07,
2956
+ "loss": 0.9244,
2957
+ "step": 421
2958
+ },
2959
+ {
2960
+ "epoch": 0.8959660297239915,
2961
+ "grad_norm": 0.6524011013463125,
2962
+ "learning_rate": 1.5277803975695865e-07,
2963
+ "loss": 0.9552,
2964
+ "step": 422
2965
+ },
2966
+ {
2967
+ "epoch": 0.8980891719745223,
2968
+ "grad_norm": 0.5937240986119188,
2969
+ "learning_rate": 1.4678795578240897e-07,
2970
+ "loss": 0.9441,
2971
+ "step": 423
2972
+ },
2973
+ {
2974
+ "epoch": 0.9002123142250531,
2975
+ "grad_norm": 0.6690722396611295,
2976
+ "learning_rate": 1.4091410869582267e-07,
2977
+ "loss": 0.9643,
2978
+ "step": 424
2979
+ },
2980
+ {
2981
+ "epoch": 0.9023354564755839,
2982
+ "grad_norm": 0.6537649069457198,
2983
+ "learning_rate": 1.3515678863582432e-07,
2984
+ "loss": 0.9784,
2985
+ "step": 425
2986
+ },
2987
+ {
2988
+ "epoch": 0.9044585987261147,
2989
+ "grad_norm": 0.6662079340519091,
2990
+ "learning_rate": 1.2951627998518623e-07,
2991
+ "loss": 0.9598,
2992
+ "step": 426
2993
+ },
2994
+ {
2995
+ "epoch": 0.9065817409766455,
2996
+ "grad_norm": 0.674794856138497,
2997
+ "learning_rate": 1.2399286135678424e-07,
2998
+ "loss": 0.9506,
2999
+ "step": 427
3000
+ },
3001
+ {
3002
+ "epoch": 0.9087048832271762,
3003
+ "grad_norm": 0.6304822222858429,
3004
+ "learning_rate": 1.1858680557983171e-07,
3005
+ "loss": 0.9491,
3006
+ "step": 428
3007
+ },
3008
+ {
3009
+ "epoch": 0.910828025477707,
3010
+ "grad_norm": 0.6036661319596233,
3011
+ "learning_rate": 1.1329837968640539e-07,
3012
+ "loss": 0.9582,
3013
+ "step": 429
3014
+ },
3015
+ {
3016
+ "epoch": 0.9129511677282378,
3017
+ "grad_norm": 0.6336696118246462,
3018
+ "learning_rate": 1.0812784489825506e-07,
3019
+ "loss": 0.928,
3020
+ "step": 430
3021
+ },
3022
+ {
3023
+ "epoch": 0.9150743099787686,
3024
+ "grad_norm": 0.6225535325876186,
3025
+ "learning_rate": 1.030754566139014e-07,
3026
+ "loss": 0.9707,
3027
+ "step": 431
3028
+ },
3029
+ {
3030
+ "epoch": 0.9171974522292994,
3031
+ "grad_norm": 0.6414866827963036,
3032
+ "learning_rate": 9.814146439601741e-08,
3033
+ "loss": 0.9673,
3034
+ "step": 432
3035
+ },
3036
+ {
3037
+ "epoch": 0.9193205944798302,
3038
+ "grad_norm": 0.598006805118166,
3039
+ "learning_rate": 9.332611195910585e-08,
3040
+ "loss": 0.9626,
3041
+ "step": 433
3042
+ },
3043
+ {
3044
+ "epoch": 0.921443736730361,
3045
+ "grad_norm": 0.6369023150011093,
3046
+ "learning_rate": 8.862963715745687e-08,
3047
+ "loss": 0.9292,
3048
+ "step": 434
3049
+ },
3050
+ {
3051
+ "epoch": 0.9235668789808917,
3052
+ "grad_norm": 0.6067154709316188,
3053
+ "learning_rate": 8.405227197340216e-08,
3054
+ "loss": 0.8989,
3055
+ "step": 435
3056
+ },
3057
+ {
3058
+ "epoch": 0.9256900212314225,
3059
+ "grad_norm": 0.6123427935922671,
3060
+ "learning_rate": 7.959424250585323e-08,
3061
+ "loss": 0.9973,
3062
+ "step": 436
3063
+ },
3064
+ {
3065
+ "epoch": 0.9278131634819533,
3066
+ "grad_norm": 0.631261585951247,
3067
+ "learning_rate": 7.525576895913655e-08,
3068
+ "loss": 0.9253,
3069
+ "step": 437
3070
+ },
3071
+ {
3072
+ "epoch": 0.9299363057324841,
3073
+ "grad_norm": 0.6684228376208218,
3074
+ "learning_rate": 7.10370656321141e-08,
3075
+ "loss": 0.9093,
3076
+ "step": 438
3077
+ },
3078
+ {
3079
+ "epoch": 0.9320594479830149,
3080
+ "grad_norm": 0.6341580390596356,
3081
+ "learning_rate": 6.69383409075991e-08,
3082
+ "loss": 0.9385,
3083
+ "step": 439
3084
+ },
3085
+ {
3086
+ "epoch": 0.9341825902335457,
3087
+ "grad_norm": 0.6641492655666181,
3088
+ "learning_rate": 6.295979724206314e-08,
3089
+ "loss": 0.9785,
3090
+ "step": 440
3091
+ },
3092
+ {
3093
+ "epoch": 0.9363057324840764,
3094
+ "grad_norm": 0.6274625041818331,
3095
+ "learning_rate": 5.910163115563472e-08,
3096
+ "loss": 0.941,
3097
+ "step": 441
3098
+ },
3099
+ {
3100
+ "epoch": 0.9384288747346072,
3101
+ "grad_norm": 0.5986199966520086,
3102
+ "learning_rate": 5.53640332223937e-08,
3103
+ "loss": 0.8832,
3104
+ "step": 442
3105
+ },
3106
+ {
3107
+ "epoch": 0.940552016985138,
3108
+ "grad_norm": 0.6287455293561965,
3109
+ "learning_rate": 5.1747188060956296e-08,
3110
+ "loss": 0.9405,
3111
+ "step": 443
3112
+ },
3113
+ {
3114
+ "epoch": 0.9426751592356688,
3115
+ "grad_norm": 0.6486765094469326,
3116
+ "learning_rate": 4.825127432535714e-08,
3117
+ "loss": 0.9153,
3118
+ "step": 444
3119
+ },
3120
+ {
3121
+ "epoch": 0.9447983014861996,
3122
+ "grad_norm": 0.616792972142488,
3123
+ "learning_rate": 4.487646469622464e-08,
3124
+ "loss": 0.9511,
3125
+ "step": 445
3126
+ },
3127
+ {
3128
+ "epoch": 0.9469214437367304,
3129
+ "grad_norm": 0.6899660172126519,
3130
+ "learning_rate": 4.1622925872249476e-08,
3131
+ "loss": 0.9427,
3132
+ "step": 446
3133
+ },
3134
+ {
3135
+ "epoch": 0.9490445859872612,
3136
+ "grad_norm": 0.6644667873221963,
3137
+ "learning_rate": 3.849081856195341e-08,
3138
+ "loss": 0.9439,
3139
+ "step": 447
3140
+ },
3141
+ {
3142
+ "epoch": 0.9511677282377919,
3143
+ "grad_norm": 0.6168810973654132,
3144
+ "learning_rate": 3.548029747574927e-08,
3145
+ "loss": 0.9606,
3146
+ "step": 448
3147
+ },
3148
+ {
3149
+ "epoch": 0.9532908704883227,
3150
+ "grad_norm": 0.6065862488438216,
3151
+ "learning_rate": 3.259151131829869e-08,
3152
+ "loss": 0.9844,
3153
+ "step": 449
3154
+ },
3155
+ {
3156
+ "epoch": 0.9554140127388535,
3157
+ "grad_norm": 0.6486015909726873,
3158
+ "learning_rate": 2.982460278116883e-08,
3159
+ "loss": 0.9633,
3160
+ "step": 450
3161
+ },
3162
+ {
3163
+ "epoch": 0.9575371549893843,
3164
+ "grad_norm": 0.631115227640127,
3165
+ "learning_rate": 2.7179708535781945e-08,
3166
+ "loss": 0.9675,
3167
+ "step": 451
3168
+ },
3169
+ {
3170
+ "epoch": 0.9596602972399151,
3171
+ "grad_norm": 0.6844872355582275,
3172
+ "learning_rate": 2.4656959226665445e-08,
3173
+ "loss": 0.9678,
3174
+ "step": 452
3175
+ },
3176
+ {
3177
+ "epoch": 0.9617834394904459,
3178
+ "grad_norm": 0.676038419107933,
3179
+ "learning_rate": 2.2256479464999315e-08,
3180
+ "loss": 0.9741,
3181
+ "step": 453
3182
+ },
3183
+ {
3184
+ "epoch": 0.9639065817409767,
3185
+ "grad_norm": 0.5792729689539223,
3186
+ "learning_rate": 1.99783878224602e-08,
3187
+ "loss": 0.9668,
3188
+ "step": 454
3189
+ },
3190
+ {
3191
+ "epoch": 0.9660297239915074,
3192
+ "grad_norm": 0.6539907426996568,
3193
+ "learning_rate": 1.7822796825364142e-08,
3194
+ "loss": 0.9546,
3195
+ "step": 455
3196
+ },
3197
+ {
3198
+ "epoch": 0.9681528662420382,
3199
+ "grad_norm": 0.6230572975623042,
3200
+ "learning_rate": 1.578981294910936e-08,
3201
+ "loss": 0.9274,
3202
+ "step": 456
3203
+ },
3204
+ {
3205
+ "epoch": 0.970276008492569,
3206
+ "grad_norm": 0.5968504324622771,
3207
+ "learning_rate": 1.38795366129163e-08,
3208
+ "loss": 0.9125,
3209
+ "step": 457
3210
+ },
3211
+ {
3212
+ "epoch": 0.9723991507430998,
3213
+ "grad_norm": 0.6390123520113857,
3214
+ "learning_rate": 1.2092062174867414e-08,
3215
+ "loss": 0.9138,
3216
+ "step": 458
3217
+ },
3218
+ {
3219
+ "epoch": 0.9745222929936306,
3220
+ "grad_norm": 0.6236803320324935,
3221
+ "learning_rate": 1.042747792724702e-08,
3222
+ "loss": 0.9492,
3223
+ "step": 459
3224
+ },
3225
+ {
3226
+ "epoch": 0.9766454352441614,
3227
+ "grad_norm": 0.6338903091057604,
3228
+ "learning_rate": 8.885866092178952e-09,
3229
+ "loss": 0.9838,
3230
+ "step": 460
3231
+ },
3232
+ {
3233
+ "epoch": 0.9787685774946921,
3234
+ "grad_norm": 0.6353390431277406,
3235
+ "learning_rate": 7.467302817566192e-09,
3236
+ "loss": 0.9526,
3237
+ "step": 461
3238
+ },
3239
+ {
3240
+ "epoch": 0.9808917197452229,
3241
+ "grad_norm": 0.654122905953797,
3242
+ "learning_rate": 6.171858173328604e-09,
3243
+ "loss": 0.9822,
3244
+ "step": 462
3245
+ },
3246
+ {
3247
+ "epoch": 0.9830148619957537,
3248
+ "grad_norm": 0.6506585984715718,
3249
+ "learning_rate": 4.999596147943486e-09,
3250
+ "loss": 0.9091,
3251
+ "step": 463
3252
+ },
3253
+ {
3254
+ "epoch": 0.9851380042462845,
3255
+ "grad_norm": 0.6729520792369528,
3256
+ "learning_rate": 3.95057464528309e-09,
3257
+ "loss": 0.9826,
3258
+ "step": 464
3259
+ },
3260
+ {
3261
+ "epoch": 0.9872611464968153,
3262
+ "grad_norm": 0.6314573444952737,
3263
+ "learning_rate": 3.02484548175469e-09,
3264
+ "loss": 1.0175,
3265
+ "step": 465
3266
+ },
3267
+ {
3268
+ "epoch": 0.9893842887473461,
3269
+ "grad_norm": 0.6986521882784366,
3270
+ "learning_rate": 2.222454383742356e-09,
3271
+ "loss": 0.9587,
3272
+ "step": 466
3273
+ },
3274
+ {
3275
+ "epoch": 0.9915074309978769,
3276
+ "grad_norm": 0.6226442078982108,
3277
+ "learning_rate": 1.5434409853473664e-09,
3278
+ "loss": 0.9285,
3279
+ "step": 467
3280
+ },
3281
+ {
3282
+ "epoch": 0.9936305732484076,
3283
+ "grad_norm": 0.6278882096671412,
3284
+ "learning_rate": 9.878388264300543e-10,
3285
+ "loss": 0.944,
3286
+ "step": 468
3287
+ },
3288
+ {
3289
+ "epoch": 0.9957537154989384,
3290
+ "grad_norm": 0.5896705695288925,
3291
+ "learning_rate": 5.55675350954743e-10,
3292
+ "loss": 0.9217,
3293
+ "step": 469
3294
+ },
3295
+ {
3296
+ "epoch": 0.9978768577494692,
3297
+ "grad_norm": 0.6570338350651012,
3298
+ "learning_rate": 2.4697190563194307e-10,
3299
+ "loss": 0.9466,
3300
+ "step": 470
3301
+ },
3302
+ {
3303
+ "epoch": 1.0,
3304
+ "grad_norm": 0.6095877208075582,
3305
+ "learning_rate": 6.174373886586038e-11,
3306
+ "loss": 0.9491,
3307
+ "step": 471
3308
+ }
3309
+ ],
3310
+ "logging_steps": 1,
3311
+ "max_steps": 471,
3312
+ "num_input_tokens_seen": 0,
3313
+ "num_train_epochs": 1,
3314
+ "save_steps": 157,
3315
+ "stateful_callbacks": {
3316
+ "TrainerControl": {
3317
+ "args": {
3318
+ "should_epoch_stop": false,
3319
+ "should_evaluate": false,
3320
+ "should_log": false,
3321
+ "should_save": true,
3322
+ "should_training_stop": true
3323
+ },
3324
+ "attributes": {}
3325
+ }
3326
+ },
3327
+ "total_flos": 70004199849984.0,
3328
+ "train_batch_size": 2,
3329
+ "trial_name": null,
3330
+ "trial_params": null
3331
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb8e23c64c634b1182f062703df8841ca23b1e888c2c028da1ee4aa6d18865e0
3
+ size 8017
vocab.json ADDED
The diff for this file is too large to render. See raw diff