fengyao1909 commited on
Commit
2132cb2
·
verified ·
1 Parent(s): 31b4853

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:cc894ba45d367c21dc5047cd229ab0fa2c6dbdf0fc5809b5e5125756e8e40d75
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:d2238a110b9b60f223126cbc7066f6b480a226d6059126fed11d033358ccee1e
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:346d5ac9f942a96885bc3605b1bd87ce745483d5f587dab7666098065543e13e
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:4784b1d8461eb6bd65a7e03c7a7f3359b05ba2076eacc3ca59f79368d7a6e33f
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:464fd04789559e854889ebefa7bc9a9c1dd557c4a4c45c6c3eab7c75f67ca8d5
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:3e2d8b3053937fa59a6ed32a9fd307619ec8efd0db9cc0e055de828c50dabb91
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:40041164fb7b5698db6d82beb90a95b607fc4b3b3ca7c34aa527ff3232f501a0
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:0096bacda5b37df99471dca586677cdd65d9e41d6097d100922fd4d0e408dd63
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:24ed0468994d6e61696f4ebbb37547c3d868bd54ae736daa0cd4a568bc4d77a8
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:d068c5da1e8ffe41fbe4d95dead1cc0fec2d7fb4ccb29bc7d177a472d8958f15
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:24bd0f33a58da18a89e5de622fff18e22a0ae3812c7c503fb42e85f7d72067ab
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:d56e8f8f943406d316004dbd3ab1eb929c0bab08f03c871b23ea1c59a5fc5ca8
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:510870998d1334f1ea40a86cb3f56b93cd153b5a29496a479d6d6f67eaa24254
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.036329344230565,
22
+ "learning_rate": 1.2499999999999999e-06,
23
+ "loss": 1.4092,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.006369426751592357,
28
+ "grad_norm": 6.056066195237692,
29
+ "learning_rate": 2.4999999999999998e-06,
30
+ "loss": 1.3995,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.008492569002123142,
35
+ "grad_norm": 5.922965787004136,
36
+ "learning_rate": 3.75e-06,
37
+ "loss": 1.3975,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.010615711252653927,
42
+ "grad_norm": 5.286633700836792,
43
+ "learning_rate": 4.9999999999999996e-06,
44
+ "loss": 1.3654,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.012738853503184714,
49
+ "grad_norm": 4.272128958690016,
50
+ "learning_rate": 6.25e-06,
51
+ "loss": 1.357,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.014861995753715499,
56
+ "grad_norm": 3.3415834474393087,
57
+ "learning_rate": 7.5e-06,
58
+ "loss": 1.2136,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.016985138004246284,
63
+ "grad_norm": 2.97877807094389,
64
+ "learning_rate": 8.750000000000001e-06,
65
+ "loss": 1.2796,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.01910828025477707,
70
+ "grad_norm": 2.871670675310436,
71
+ "learning_rate": 9.999999999999999e-06,
72
+ "loss": 1.2221,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.021231422505307854,
77
+ "grad_norm": 3.328688346998038,
78
+ "learning_rate": 1.125e-05,
79
+ "loss": 1.2234,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.02335456475583864,
84
+ "grad_norm": 2.803564933108231,
85
+ "learning_rate": 1.25e-05,
86
+ "loss": 1.1813,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.025477707006369428,
91
+ "grad_norm": 2.6965733342170646,
92
+ "learning_rate": 1.375e-05,
93
+ "loss": 1.1396,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.027600849256900213,
98
+ "grad_norm": 3.096481749634196,
99
+ "learning_rate": 1.5e-05,
100
+ "loss": 1.2022,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.029723991507430998,
105
+ "grad_norm": 2.274249270127275,
106
+ "learning_rate": 1.625e-05,
107
+ "loss": 1.1202,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.03184713375796178,
112
+ "grad_norm": 3.884266388124913,
113
+ "learning_rate": 1.7500000000000002e-05,
114
+ "loss": 1.1371,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.03397027600849257,
119
+ "grad_norm": 1.6993184946564164,
120
+ "learning_rate": 1.8750000000000002e-05,
121
+ "loss": 1.1044,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.036093418259023353,
126
+ "grad_norm": 1.3282225362466542,
127
+ "learning_rate": 1.9999999999999998e-05,
128
+ "loss": 1.0696,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.03821656050955414,
133
+ "grad_norm": 1.2132093388653153,
134
+ "learning_rate": 2.125e-05,
135
+ "loss": 1.0457,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.040339702760084924,
140
+ "grad_norm": 1.2631509255285398,
141
+ "learning_rate": 2.25e-05,
142
+ "loss": 1.0374,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.04246284501061571,
147
+ "grad_norm": 1.194394279683961,
148
+ "learning_rate": 2.3749999999999998e-05,
149
+ "loss": 0.9467,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.044585987261146494,
154
+ "grad_norm": 1.098708611169601,
155
+ "learning_rate": 2.5e-05,
156
+ "loss": 1.0645,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.04670912951167728,
161
+ "grad_norm": 1.0283648174128268,
162
+ "learning_rate": 2.625e-05,
163
+ "loss": 1.0394,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.04883227176220807,
168
+ "grad_norm": 0.9732861680373749,
169
+ "learning_rate": 2.75e-05,
170
+ "loss": 0.9515,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.050955414012738856,
175
+ "grad_norm": 1.017693167952402,
176
+ "learning_rate": 2.875e-05,
177
+ "loss": 0.9749,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.05307855626326964,
182
+ "grad_norm": 1.1330379055126547,
183
+ "learning_rate": 3e-05,
184
+ "loss": 1.0073,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.055201698513800426,
189
+ "grad_norm": 1.0745948466977544,
190
+ "learning_rate": 2.9999629537566803e-05,
191
+ "loss": 1.0051,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.05732484076433121,
196
+ "grad_norm": 0.8795447467848742,
197
+ "learning_rate": 2.9998518168566207e-05,
198
+ "loss": 1.0527,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.059447983014861996,
203
+ "grad_norm": 1.1167437998178333,
204
+ "learning_rate": 2.999666594789427e-05,
205
+ "loss": 1.0584,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.06157112526539278,
210
+ "grad_norm": 1.0126995680355033,
211
+ "learning_rate": 2.999407296704142e-05,
212
+ "loss": 1.0291,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.06369426751592357,
217
+ "grad_norm": 0.8834749944368594,
218
+ "learning_rate": 2.9990739354087918e-05,
219
+ "loss": 1.0342,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.06581740976645435,
224
+ "grad_norm": 0.980242387134944,
225
+ "learning_rate": 2.9986665273697548e-05,
226
+ "loss": 1.0209,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.06794055201698514,
231
+ "grad_norm": 0.8415998788153699,
232
+ "learning_rate": 2.9981850927109472e-05,
233
+ "loss": 1.0274,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.07006369426751592,
238
+ "grad_norm": 0.9010169241333265,
239
+ "learning_rate": 2.9976296552128305e-05,
240
+ "loss": 0.9844,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.07218683651804671,
245
+ "grad_norm": 0.8466313083198588,
246
+ "learning_rate": 2.9970002423112342e-05,
247
+ "loss": 0.9862,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.07430997876857749,
252
+ "grad_norm": 3.0775818765498997,
253
+ "learning_rate": 2.996296885096003e-05,
254
+ "loss": 0.9921,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.07643312101910828,
259
+ "grad_norm": 0.9668150868467069,
260
+ "learning_rate": 2.9955196183094604e-05,
261
+ "loss": 1.0312,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.07855626326963906,
266
+ "grad_norm": 0.8491853067637553,
267
+ "learning_rate": 2.9946684803446928e-05,
268
+ "loss": 0.9704,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.08067940552016985,
273
+ "grad_norm": 1.4205641764205312,
274
+ "learning_rate": 2.9937435132436517e-05,
275
+ "loss": 0.9659,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.08280254777070063,
280
+ "grad_norm": 0.9441030271305156,
281
+ "learning_rate": 2.9927447626950795e-05,
282
+ "loss": 0.9507,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.08492569002123142,
287
+ "grad_norm": 1.2675209983159783,
288
+ "learning_rate": 2.9916722780322504e-05,
289
+ "loss": 1.002,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.0870488322717622,
294
+ "grad_norm": 1.6463034987153113,
295
+ "learning_rate": 2.9905261122305344e-05,
296
+ "loss": 0.9619,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.08917197452229299,
301
+ "grad_norm": 0.9187757905390965,
302
+ "learning_rate": 2.9893063219047815e-05,
303
+ "loss": 0.9691,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.09129511677282377,
308
+ "grad_norm": 0.9018029010217173,
309
+ "learning_rate": 2.988012967306524e-05,
310
+ "loss": 0.9658,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.09341825902335456,
315
+ "grad_norm": 0.7942951837701693,
316
+ "learning_rate": 2.9866461123210005e-05,
317
+ "loss": 1.036,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.09554140127388536,
322
+ "grad_norm": 0.7920942774535104,
323
+ "learning_rate": 2.985205824464001e-05,
324
+ "loss": 1.0362,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.09766454352441614,
329
+ "grad_norm": 1.1538568110872267,
330
+ "learning_rate": 2.983692174878531e-05,
331
+ "loss": 1.0226,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.09978768577494693,
336
+ "grad_norm": 0.8728667083119837,
337
+ "learning_rate": 2.9821052383312987e-05,
338
+ "loss": 0.9848,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.10191082802547771,
343
+ "grad_norm": 0.9041523514230781,
344
+ "learning_rate": 2.980445093209021e-05,
345
+ "loss": 0.9875,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.1040339702760085,
350
+ "grad_norm": 1.0596951962405752,
351
+ "learning_rate": 2.9787118215145502e-05,
352
+ "loss": 0.9708,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.10615711252653928,
357
+ "grad_norm": 0.9427913699014273,
358
+ "learning_rate": 2.976905508862828e-05,
359
+ "loss": 1.009,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.10828025477707007,
364
+ "grad_norm": 0.8275899758352401,
365
+ "learning_rate": 2.9750262444766502e-05,
366
+ "loss": 0.9985,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.11040339702760085,
371
+ "grad_norm": 0.975852608473361,
372
+ "learning_rate": 2.9730741211822654e-05,
373
+ "loss": 1.0062,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.11252653927813164,
378
+ "grad_norm": 0.8051301886044567,
379
+ "learning_rate": 2.9710492354047857e-05,
380
+ "loss": 0.9339,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.11464968152866242,
385
+ "grad_norm": 0.8707635236666643,
386
+ "learning_rate": 2.968951687163426e-05,
387
+ "loss": 0.9955,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.11677282377919321,
392
+ "grad_norm": 0.8254929493091868,
393
+ "learning_rate": 2.9667815800665637e-05,
394
+ "loss": 1.0298,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.11889596602972399,
399
+ "grad_norm": 0.7562926195663171,
400
+ "learning_rate": 2.9645390213066193e-05,
401
+ "loss": 1.0611,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.12101910828025478,
406
+ "grad_norm": 0.8226232019747459,
407
+ "learning_rate": 2.9622241216547623e-05,
408
+ "loss": 0.9991,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.12314225053078556,
413
+ "grad_norm": 0.7982200631080218,
414
+ "learning_rate": 2.9598369954554405e-05,
415
+ "loss": 0.9991,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.12526539278131635,
420
+ "grad_norm": 0.6963466420104463,
421
+ "learning_rate": 2.957377760620732e-05,
422
+ "loss": 0.9941,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.12738853503184713,
427
+ "grad_norm": 0.7408513127997496,
428
+ "learning_rate": 2.9548465386245185e-05,
429
+ "loss": 0.9874,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.12951167728237792,
434
+ "grad_norm": 0.8271991090411744,
435
+ "learning_rate": 2.952243454496488e-05,
436
+ "loss": 0.9139,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.1316348195329087,
441
+ "grad_norm": 1.0499980155535253,
442
+ "learning_rate": 2.9495686368159592e-05,
443
+ "loss": 0.9768,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.1337579617834395,
448
+ "grad_norm": 0.7840493370566994,
449
+ "learning_rate": 2.946822217705526e-05,
450
+ "loss": 0.999,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.13588110403397027,
455
+ "grad_norm": 0.7806728112401357,
456
+ "learning_rate": 2.9440043328245366e-05,
457
+ "loss": 1.0215,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.13800424628450106,
462
+ "grad_norm": 0.7631865352856676,
463
+ "learning_rate": 2.9411151213623894e-05,
464
+ "loss": 1.0313,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.14012738853503184,
469
+ "grad_norm": 0.7125983390885618,
470
+ "learning_rate": 2.938154726031659e-05,
471
+ "loss": 0.9669,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.14225053078556263,
476
+ "grad_norm": 0.7130914703890735,
477
+ "learning_rate": 2.9351232930610473e-05,
478
+ "loss": 0.9745,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.14437367303609341,
483
+ "grad_norm": 0.7946605985222294,
484
+ "learning_rate": 2.932020972188157e-05,
485
+ "loss": 0.9708,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.1464968152866242,
490
+ "grad_norm": 0.6811138210740744,
491
+ "learning_rate": 2.9288479166521014e-05,
492
+ "loss": 0.9494,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.14861995753715498,
497
+ "grad_norm": 0.772893213577846,
498
+ "learning_rate": 2.9256042831859295e-05,
499
+ "loss": 1.0612,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.15074309978768577,
504
+ "grad_norm": 0.7592068515404989,
505
+ "learning_rate": 2.9222902320088882e-05,
506
+ "loss": 1.0019,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.15286624203821655,
511
+ "grad_norm": 0.7696389426407971,
512
+ "learning_rate": 2.9189059268185057e-05,
513
+ "loss": 1.0222,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.15498938428874734,
518
+ "grad_norm": 0.7196168653178467,
519
+ "learning_rate": 2.9154515347825065e-05,
520
+ "loss": 0.9702,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.15711252653927812,
525
+ "grad_norm": 0.8084046623013887,
526
+ "learning_rate": 2.9119272265305546e-05,
527
+ "loss": 0.9476,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.1592356687898089,
532
+ "grad_norm": 0.7666084490813502,
533
+ "learning_rate": 2.9083331761458247e-05,
534
+ "loss": 0.9927,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.1613588110403397,
539
+ "grad_norm": 0.8464390116357674,
540
+ "learning_rate": 2.904669561156404e-05,
541
+ "loss": 0.909,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.16348195329087048,
546
+ "grad_norm": 0.6443641909940253,
547
+ "learning_rate": 2.9009365625265215e-05,
548
+ "loss": 0.9603,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.16560509554140126,
553
+ "grad_norm": 0.7599832914924824,
554
+ "learning_rate": 2.8971343646476114e-05,
555
+ "loss": 0.9786,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.16772823779193205,
560
+ "grad_norm": 0.806592225804777,
561
+ "learning_rate": 2.893263155329204e-05,
562
+ "loss": 0.9774,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.16985138004246284,
567
+ "grad_norm": 0.7338345781204999,
568
+ "learning_rate": 2.8893231257896502e-05,
569
+ "loss": 1.076,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.17197452229299362,
574
+ "grad_norm": 0.7256977111670229,
575
+ "learning_rate": 2.8853144706466725e-05,
576
+ "loss": 1.0003,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.1740976645435244,
581
+ "grad_norm": 0.9486924335177603,
582
+ "learning_rate": 2.881237387907757e-05,
583
+ "loss": 1.061,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.1762208067940552,
588
+ "grad_norm": 0.7245363724222085,
589
+ "learning_rate": 2.8770920789603687e-05,
590
+ "loss": 0.9772,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.17834394904458598,
595
+ "grad_norm": 0.8462340519151804,
596
+ "learning_rate": 2.8728787485620068e-05,
597
+ "loss": 1.0097,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.18046709129511676,
602
+ "grad_norm": 0.7351160195293913,
603
+ "learning_rate": 2.868597604830088e-05,
604
+ "loss": 0.99,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.18259023354564755,
609
+ "grad_norm": 0.7346962642071149,
610
+ "learning_rate": 2.864248859231669e-05,
611
+ "loss": 1.0185,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.18471337579617833,
616
+ "grad_norm": 0.7264358663319485,
617
+ "learning_rate": 2.859832726573e-05,
618
+ "loss": 1.018,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.18683651804670912,
623
+ "grad_norm": 0.6502521161134233,
624
+ "learning_rate": 2.855349424988915e-05,
625
+ "loss": 0.9539,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.18895966029723993,
630
+ "grad_norm": 0.7429051973625352,
631
+ "learning_rate": 2.8507991759320545e-05,
632
+ "loss": 0.932,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.1910828025477707,
637
+ "grad_norm": 0.7337271359665005,
638
+ "learning_rate": 2.8461822041619312e-05,
639
+ "loss": 1.0024,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.1932059447983015,
644
+ "grad_norm": 0.696436735871088,
645
+ "learning_rate": 2.841498737733824e-05,
646
+ "loss": 0.9241,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.19532908704883228,
651
+ "grad_norm": 0.8367022783932109,
652
+ "learning_rate": 2.8367490079875154e-05,
653
+ "loss": 0.9643,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.19745222929936307,
658
+ "grad_norm": 0.7508090587584874,
659
+ "learning_rate": 2.831933249535865e-05,
660
+ "loss": 0.9753,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.19957537154989385,
665
+ "grad_norm": 0.7462348768378886,
666
+ "learning_rate": 2.827051700253217e-05,
667
+ "loss": 0.958,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.20169851380042464,
672
+ "grad_norm": 0.7525272193363061,
673
+ "learning_rate": 2.8221046012636558e-05,
674
+ "loss": 1.0095,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.20382165605095542,
679
+ "grad_norm": 0.6809918403435731,
680
+ "learning_rate": 2.817092196929091e-05,
681
+ "loss": 0.9593,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.2059447983014862,
686
+ "grad_norm": 0.6932971348903458,
687
+ "learning_rate": 2.8120147348371912e-05,
688
+ "loss": 0.9581,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.208067940552017,
693
+ "grad_norm": 0.7197887059084126,
694
+ "learning_rate": 2.8068724657891507e-05,
695
+ "loss": 0.9432,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.21019108280254778,
700
+ "grad_norm": 0.7347184474062712,
701
+ "learning_rate": 2.801665643787303e-05,
702
+ "loss": 1.0137,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.21231422505307856,
707
+ "grad_norm": 0.673328010924802,
708
+ "learning_rate": 2.7963945260225748e-05,
709
+ "loss": 1.0148,
710
+ "step": 100
711
+ },
712
+ {
713
+ "epoch": 0.21443736730360935,
714
+ "grad_norm": 0.7214998628963789,
715
+ "learning_rate": 2.7910593728617813e-05,
716
+ "loss": 1.0484,
717
+ "step": 101
718
+ },
719
+ {
720
+ "epoch": 0.21656050955414013,
721
+ "grad_norm": 0.6722704514414892,
722
+ "learning_rate": 2.7856604478347655e-05,
723
+ "loss": 0.9654,
724
+ "step": 102
725
+ },
726
+ {
727
+ "epoch": 0.21868365180467092,
728
+ "grad_norm": 0.6556980159522945,
729
+ "learning_rate": 2.7801980176213798e-05,
730
+ "loss": 0.9148,
731
+ "step": 103
732
+ },
733
+ {
734
+ "epoch": 0.2208067940552017,
735
+ "grad_norm": 0.7796844299678404,
736
+ "learning_rate": 2.7746723520383174e-05,
737
+ "loss": 0.9803,
738
+ "step": 104
739
+ },
740
+ {
741
+ "epoch": 0.2229299363057325,
742
+ "grad_norm": 0.69615473393741,
743
+ "learning_rate": 2.76908372402578e-05,
744
+ "loss": 0.9389,
745
+ "step": 105
746
+ },
747
+ {
748
+ "epoch": 0.22505307855626328,
749
+ "grad_norm": 0.665149808571595,
750
+ "learning_rate": 2.763432409633998e-05,
751
+ "loss": 0.9407,
752
+ "step": 106
753
+ },
754
+ {
755
+ "epoch": 0.22717622080679406,
756
+ "grad_norm": 0.6679067532269544,
757
+ "learning_rate": 2.7577186880095966e-05,
758
+ "loss": 0.9864,
759
+ "step": 107
760
+ },
761
+ {
762
+ "epoch": 0.22929936305732485,
763
+ "grad_norm": 0.717736772052187,
764
+ "learning_rate": 2.7519428413818034e-05,
765
+ "loss": 0.9568,
766
+ "step": 108
767
+ },
768
+ {
769
+ "epoch": 0.23142250530785563,
770
+ "grad_norm": 0.7365137124208776,
771
+ "learning_rate": 2.7461051550485116e-05,
772
+ "loss": 1.0027,
773
+ "step": 109
774
+ },
775
+ {
776
+ "epoch": 0.23354564755838642,
777
+ "grad_norm": 0.7060692871299123,
778
+ "learning_rate": 2.740205917362186e-05,
779
+ "loss": 1.0176,
780
+ "step": 110
781
+ },
782
+ {
783
+ "epoch": 0.2356687898089172,
784
+ "grad_norm": 0.6086155886816632,
785
+ "learning_rate": 2.7342454197156194e-05,
786
+ "loss": 0.9614,
787
+ "step": 111
788
+ },
789
+ {
790
+ "epoch": 0.23779193205944799,
791
+ "grad_norm": 0.6391029724554078,
792
+ "learning_rate": 2.728223956527539e-05,
793
+ "loss": 0.979,
794
+ "step": 112
795
+ },
796
+ {
797
+ "epoch": 0.23991507430997877,
798
+ "grad_norm": 0.7225858742160614,
799
+ "learning_rate": 2.722141825228066e-05,
800
+ "loss": 0.9522,
801
+ "step": 113
802
+ },
803
+ {
804
+ "epoch": 0.24203821656050956,
805
+ "grad_norm": 0.6685886845969267,
806
+ "learning_rate": 2.7159993262440228e-05,
807
+ "loss": 0.9574,
808
+ "step": 114
809
+ },
810
+ {
811
+ "epoch": 0.24416135881104034,
812
+ "grad_norm": 0.6648088183213471,
813
+ "learning_rate": 2.7097967629840906e-05,
814
+ "loss": 1.008,
815
+ "step": 115
816
+ },
817
+ {
818
+ "epoch": 0.24628450106157113,
819
+ "grad_norm": 0.7204962333279492,
820
+ "learning_rate": 2.703534441823827e-05,
821
+ "loss": 0.9785,
822
+ "step": 116
823
+ },
824
+ {
825
+ "epoch": 0.2484076433121019,
826
+ "grad_norm": 0.6804549324723432,
827
+ "learning_rate": 2.6972126720905293e-05,
828
+ "loss": 0.9816,
829
+ "step": 117
830
+ },
831
+ {
832
+ "epoch": 0.2505307855626327,
833
+ "grad_norm": 0.6837624060695675,
834
+ "learning_rate": 2.6908317660479583e-05,
835
+ "loss": 0.9813,
836
+ "step": 118
837
+ },
838
+ {
839
+ "epoch": 0.2526539278131635,
840
+ "grad_norm": 0.6706972759019354,
841
+ "learning_rate": 2.68439203888091e-05,
842
+ "loss": 1.0129,
843
+ "step": 119
844
+ },
845
+ {
846
+ "epoch": 0.25477707006369427,
847
+ "grad_norm": 0.7603607267519649,
848
+ "learning_rate": 2.6778938086796512e-05,
849
+ "loss": 1.0785,
850
+ "step": 120
851
+ },
852
+ {
853
+ "epoch": 0.25690021231422505,
854
+ "grad_norm": 0.701884945821394,
855
+ "learning_rate": 2.6713373964242043e-05,
856
+ "loss": 0.9629,
857
+ "step": 121
858
+ },
859
+ {
860
+ "epoch": 0.25902335456475584,
861
+ "grad_norm": 0.7096804682790832,
862
+ "learning_rate": 2.6647231259684946e-05,
863
+ "loss": 0.9646,
864
+ "step": 122
865
+ },
866
+ {
867
+ "epoch": 0.2611464968152866,
868
+ "grad_norm": 0.6445523205552592,
869
+ "learning_rate": 2.6580513240243524e-05,
870
+ "loss": 1.0163,
871
+ "step": 123
872
+ },
873
+ {
874
+ "epoch": 0.2632696390658174,
875
+ "grad_norm": 0.6863246456533727,
876
+ "learning_rate": 2.651322320145375e-05,
877
+ "loss": 0.9842,
878
+ "step": 124
879
+ },
880
+ {
881
+ "epoch": 0.2653927813163482,
882
+ "grad_norm": 0.691665965346161,
883
+ "learning_rate": 2.6445364467106494e-05,
884
+ "loss": 0.9421,
885
+ "step": 125
886
+ },
887
+ {
888
+ "epoch": 0.267515923566879,
889
+ "grad_norm": 0.7584893620552549,
890
+ "learning_rate": 2.637694038908333e-05,
891
+ "loss": 1.0348,
892
+ "step": 126
893
+ },
894
+ {
895
+ "epoch": 0.26963906581740976,
896
+ "grad_norm": 0.6613598336840398,
897
+ "learning_rate": 2.630795434719099e-05,
898
+ "loss": 0.9464,
899
+ "step": 127
900
+ },
901
+ {
902
+ "epoch": 0.27176220806794055,
903
+ "grad_norm": 0.6713699116927843,
904
+ "learning_rate": 2.623840974899439e-05,
905
+ "loss": 0.8904,
906
+ "step": 128
907
+ },
908
+ {
909
+ "epoch": 0.27388535031847133,
910
+ "grad_norm": 0.816037128777881,
911
+ "learning_rate": 2.616831002964834e-05,
912
+ "loss": 0.9743,
913
+ "step": 129
914
+ },
915
+ {
916
+ "epoch": 0.2760084925690021,
917
+ "grad_norm": 0.7338762748040034,
918
+ "learning_rate": 2.609765865172786e-05,
919
+ "loss": 0.9847,
920
+ "step": 130
921
+ },
922
+ {
923
+ "epoch": 0.2781316348195329,
924
+ "grad_norm": 0.6161573010385878,
925
+ "learning_rate": 2.6026459105057127e-05,
926
+ "loss": 0.9607,
927
+ "step": 131
928
+ },
929
+ {
930
+ "epoch": 0.2802547770700637,
931
+ "grad_norm": 0.6784919139990105,
932
+ "learning_rate": 2.5954714906537116e-05,
933
+ "loss": 0.9833,
934
+ "step": 132
935
+ },
936
+ {
937
+ "epoch": 0.2823779193205945,
938
+ "grad_norm": 0.7455868873904333,
939
+ "learning_rate": 2.5882429599971872e-05,
940
+ "loss": 0.9333,
941
+ "step": 133
942
+ },
943
+ {
944
+ "epoch": 0.28450106157112526,
945
+ "grad_norm": 0.6606022069654393,
946
+ "learning_rate": 2.580960675589347e-05,
947
+ "loss": 1.0049,
948
+ "step": 134
949
+ },
950
+ {
951
+ "epoch": 0.28662420382165604,
952
+ "grad_norm": 0.6870029740052253,
953
+ "learning_rate": 2.573624997138565e-05,
954
+ "loss": 1.0137,
955
+ "step": 135
956
+ },
957
+ {
958
+ "epoch": 0.28874734607218683,
959
+ "grad_norm": 0.6822500856445419,
960
+ "learning_rate": 2.5662362869906123e-05,
961
+ "loss": 1.0007,
962
+ "step": 136
963
+ },
964
+ {
965
+ "epoch": 0.2908704883227176,
966
+ "grad_norm": 0.6035427107718914,
967
+ "learning_rate": 2.558794910110761e-05,
968
+ "loss": 0.937,
969
+ "step": 137
970
+ },
971
+ {
972
+ "epoch": 0.2929936305732484,
973
+ "grad_norm": 0.6041202314277974,
974
+ "learning_rate": 2.5513012340657557e-05,
975
+ "loss": 0.9461,
976
+ "step": 138
977
+ },
978
+ {
979
+ "epoch": 0.2951167728237792,
980
+ "grad_norm": 0.6390470706425474,
981
+ "learning_rate": 2.5437556290056575e-05,
982
+ "loss": 0.9358,
983
+ "step": 139
984
+ },
985
+ {
986
+ "epoch": 0.29723991507430997,
987
+ "grad_norm": 0.7195254765489666,
988
+ "learning_rate": 2.5361584676455627e-05,
989
+ "loss": 0.9976,
990
+ "step": 140
991
+ },
992
+ {
993
+ "epoch": 0.29936305732484075,
994
+ "grad_norm": 0.6521311999355591,
995
+ "learning_rate": 2.5285101252471874e-05,
996
+ "loss": 0.9377,
997
+ "step": 141
998
+ },
999
+ {
1000
+ "epoch": 0.30148619957537154,
1001
+ "grad_norm": 0.6409749095351458,
1002
+ "learning_rate": 2.5208109796003364e-05,
1003
+ "loss": 1.0104,
1004
+ "step": 142
1005
+ },
1006
+ {
1007
+ "epoch": 0.3036093418259023,
1008
+ "grad_norm": 0.6315495351185857,
1009
+ "learning_rate": 2.5130614110042415e-05,
1010
+ "loss": 1.0316,
1011
+ "step": 143
1012
+ },
1013
+ {
1014
+ "epoch": 0.3057324840764331,
1015
+ "grad_norm": 0.6737333438485361,
1016
+ "learning_rate": 2.5052618022487733e-05,
1017
+ "loss": 0.9078,
1018
+ "step": 144
1019
+ },
1020
+ {
1021
+ "epoch": 0.3078556263269639,
1022
+ "grad_norm": 0.6808606797582761,
1023
+ "learning_rate": 2.4974125385955374e-05,
1024
+ "loss": 0.9745,
1025
+ "step": 145
1026
+ },
1027
+ {
1028
+ "epoch": 0.3099787685774947,
1029
+ "grad_norm": 0.6728298363507792,
1030
+ "learning_rate": 2.4895140077588412e-05,
1031
+ "loss": 0.9231,
1032
+ "step": 146
1033
+ },
1034
+ {
1035
+ "epoch": 0.31210191082802546,
1036
+ "grad_norm": 0.737270504862064,
1037
+ "learning_rate": 2.481566599886546e-05,
1038
+ "loss": 0.9499,
1039
+ "step": 147
1040
+ },
1041
+ {
1042
+ "epoch": 0.31422505307855625,
1043
+ "grad_norm": 0.6659360676868527,
1044
+ "learning_rate": 2.473570707540793e-05,
1045
+ "loss": 1.036,
1046
+ "step": 148
1047
+ },
1048
+ {
1049
+ "epoch": 0.31634819532908703,
1050
+ "grad_norm": 0.6279327692414004,
1051
+ "learning_rate": 2.4655267256786126e-05,
1052
+ "loss": 1.0277,
1053
+ "step": 149
1054
+ },
1055
+ {
1056
+ "epoch": 0.3184713375796178,
1057
+ "grad_norm": 0.6827718930790617,
1058
+ "learning_rate": 2.4574350516324176e-05,
1059
+ "loss": 0.9544,
1060
+ "step": 150
1061
+ },
1062
+ {
1063
+ "epoch": 0.3205944798301486,
1064
+ "grad_norm": 0.6764712245297005,
1065
+ "learning_rate": 2.4492960850903757e-05,
1066
+ "loss": 0.9915,
1067
+ "step": 151
1068
+ },
1069
+ {
1070
+ "epoch": 0.3227176220806794,
1071
+ "grad_norm": 0.6118211254231126,
1072
+ "learning_rate": 2.4411102280766658e-05,
1073
+ "loss": 0.9918,
1074
+ "step": 152
1075
+ },
1076
+ {
1077
+ "epoch": 0.3248407643312102,
1078
+ "grad_norm": 0.6445432947438029,
1079
+ "learning_rate": 2.432877884931623e-05,
1080
+ "loss": 1.0199,
1081
+ "step": 153
1082
+ },
1083
+ {
1084
+ "epoch": 0.32696390658174096,
1085
+ "grad_norm": 0.6555286244268101,
1086
+ "learning_rate": 2.4245994622917636e-05,
1087
+ "loss": 1.0144,
1088
+ "step": 154
1089
+ },
1090
+ {
1091
+ "epoch": 0.32908704883227174,
1092
+ "grad_norm": 0.5747726408332037,
1093
+ "learning_rate": 2.4162753690696998e-05,
1094
+ "loss": 1.0059,
1095
+ "step": 155
1096
+ },
1097
+ {
1098
+ "epoch": 0.33121019108280253,
1099
+ "grad_norm": 0.6633624122819982,
1100
+ "learning_rate": 2.4079060164339427e-05,
1101
+ "loss": 0.9892,
1102
+ "step": 156
1103
+ },
1104
+ {
1105
+ "epoch": 0.3333333333333333,
1106
+ "grad_norm": 0.624099565922787,
1107
+ "learning_rate": 2.3994918177885906e-05,
1108
+ "loss": 1.0363,
1109
+ "step": 157
1110
+ },
1111
+ {
1112
+ "epoch": 0.3354564755838641,
1113
+ "grad_norm": 0.5630337003726085,
1114
+ "learning_rate": 2.391033188752911e-05,
1115
+ "loss": 0.9432,
1116
+ "step": 158
1117
+ },
1118
+ {
1119
+ "epoch": 0.3375796178343949,
1120
+ "grad_norm": 0.6572321757159671,
1121
+ "learning_rate": 2.38253054714081e-05,
1122
+ "loss": 1.0231,
1123
+ "step": 159
1124
+ },
1125
+ {
1126
+ "epoch": 0.33970276008492567,
1127
+ "grad_norm": 0.6305040778279057,
1128
+ "learning_rate": 2.3739843129401932e-05,
1129
+ "loss": 0.9562,
1130
+ "step": 160
1131
+ },
1132
+ {
1133
+ "epoch": 0.34182590233545646,
1134
+ "grad_norm": 0.6727626811450059,
1135
+ "learning_rate": 2.365394908292224e-05,
1136
+ "loss": 0.9246,
1137
+ "step": 161
1138
+ },
1139
+ {
1140
+ "epoch": 0.34394904458598724,
1141
+ "grad_norm": 0.6145568336152458,
1142
+ "learning_rate": 2.356762757470468e-05,
1143
+ "loss": 0.965,
1144
+ "step": 162
1145
+ },
1146
+ {
1147
+ "epoch": 0.346072186836518,
1148
+ "grad_norm": 0.6416356795188216,
1149
+ "learning_rate": 2.3480882868599383e-05,
1150
+ "loss": 0.9732,
1151
+ "step": 163
1152
+ },
1153
+ {
1154
+ "epoch": 0.3481953290870488,
1155
+ "grad_norm": 0.6398547486961889,
1156
+ "learning_rate": 2.3393719249360335e-05,
1157
+ "loss": 1.0111,
1158
+ "step": 164
1159
+ },
1160
+ {
1161
+ "epoch": 0.3503184713375796,
1162
+ "grad_norm": 0.6143238222438724,
1163
+ "learning_rate": 2.3306141022433728e-05,
1164
+ "loss": 1.0175,
1165
+ "step": 165
1166
+ },
1167
+ {
1168
+ "epoch": 0.3524416135881104,
1169
+ "grad_norm": 0.6361075276958069,
1170
+ "learning_rate": 2.3218152513745306e-05,
1171
+ "loss": 0.9302,
1172
+ "step": 166
1173
+ },
1174
+ {
1175
+ "epoch": 0.35456475583864117,
1176
+ "grad_norm": 0.6901788737924308,
1177
+ "learning_rate": 2.3129758069486665e-05,
1178
+ "loss": 0.9629,
1179
+ "step": 167
1180
+ },
1181
+ {
1182
+ "epoch": 0.35668789808917195,
1183
+ "grad_norm": 0.5744122476891506,
1184
+ "learning_rate": 2.3040962055900598e-05,
1185
+ "loss": 1.0089,
1186
+ "step": 168
1187
+ },
1188
+ {
1189
+ "epoch": 0.35881104033970274,
1190
+ "grad_norm": 0.6397560453387058,
1191
+ "learning_rate": 2.2951768859065405e-05,
1192
+ "loss": 0.9834,
1193
+ "step": 169
1194
+ },
1195
+ {
1196
+ "epoch": 0.3609341825902335,
1197
+ "grad_norm": 0.6171130142316281,
1198
+ "learning_rate": 2.2862182884678243e-05,
1199
+ "loss": 0.9143,
1200
+ "step": 170
1201
+ },
1202
+ {
1203
+ "epoch": 0.3630573248407643,
1204
+ "grad_norm": 0.6105813496358233,
1205
+ "learning_rate": 2.2772208557837526e-05,
1206
+ "loss": 0.953,
1207
+ "step": 171
1208
+ },
1209
+ {
1210
+ "epoch": 0.3651804670912951,
1211
+ "grad_norm": 0.6094186393268805,
1212
+ "learning_rate": 2.2681850322824324e-05,
1213
+ "loss": 0.9423,
1214
+ "step": 172
1215
+ },
1216
+ {
1217
+ "epoch": 0.3673036093418259,
1218
+ "grad_norm": 0.6168713424561586,
1219
+ "learning_rate": 2.2591112642882853e-05,
1220
+ "loss": 0.9377,
1221
+ "step": 173
1222
+ },
1223
+ {
1224
+ "epoch": 0.36942675159235666,
1225
+ "grad_norm": 0.6038856999882359,
1226
+ "learning_rate": 2.25e-05,
1227
+ "loss": 0.9765,
1228
+ "step": 174
1229
+ },
1230
+ {
1231
+ "epoch": 0.37154989384288745,
1232
+ "grad_norm": 0.6042658108338912,
1233
+ "learning_rate": 2.2408516894683952e-05,
1234
+ "loss": 0.9511,
1235
+ "step": 175
1236
+ },
1237
+ {
1238
+ "epoch": 0.37367303609341823,
1239
+ "grad_norm": 0.6502768700665983,
1240
+ "learning_rate": 2.2316667845741885e-05,
1241
+ "loss": 0.989,
1242
+ "step": 176
1243
+ },
1244
+ {
1245
+ "epoch": 0.37579617834394907,
1246
+ "grad_norm": 0.6428706495908844,
1247
+ "learning_rate": 2.2224457390056747e-05,
1248
+ "loss": 0.9461,
1249
+ "step": 177
1250
+ },
1251
+ {
1252
+ "epoch": 0.37791932059447986,
1253
+ "grad_norm": 0.6077829967160175,
1254
+ "learning_rate": 2.2131890082363176e-05,
1255
+ "loss": 0.9845,
1256
+ "step": 178
1257
+ },
1258
+ {
1259
+ "epoch": 0.38004246284501064,
1260
+ "grad_norm": 0.6332362664782106,
1261
+ "learning_rate": 2.2038970495022515e-05,
1262
+ "loss": 0.9243,
1263
+ "step": 179
1264
+ },
1265
+ {
1266
+ "epoch": 0.3821656050955414,
1267
+ "grad_norm": 0.6871006568383716,
1268
+ "learning_rate": 2.194570321779695e-05,
1269
+ "loss": 1.0147,
1270
+ "step": 180
1271
+ },
1272
+ {
1273
+ "epoch": 0.3842887473460722,
1274
+ "grad_norm": 0.6463380640823357,
1275
+ "learning_rate": 2.185209285762281e-05,
1276
+ "loss": 0.9812,
1277
+ "step": 181
1278
+ },
1279
+ {
1280
+ "epoch": 0.386411889596603,
1281
+ "grad_norm": 0.5883115803971956,
1282
+ "learning_rate": 2.1758144038383e-05,
1283
+ "loss": 0.9982,
1284
+ "step": 182
1285
+ },
1286
+ {
1287
+ "epoch": 0.3885350318471338,
1288
+ "grad_norm": 0.6375181055091449,
1289
+ "learning_rate": 2.166386140067861e-05,
1290
+ "loss": 0.9368,
1291
+ "step": 183
1292
+ },
1293
+ {
1294
+ "epoch": 0.39065817409766457,
1295
+ "grad_norm": 0.6371811007750889,
1296
+ "learning_rate": 2.1569249601599697e-05,
1297
+ "loss": 0.9167,
1298
+ "step": 184
1299
+ },
1300
+ {
1301
+ "epoch": 0.39278131634819535,
1302
+ "grad_norm": 0.6062348447482547,
1303
+ "learning_rate": 2.147431331449522e-05,
1304
+ "loss": 0.9875,
1305
+ "step": 185
1306
+ },
1307
+ {
1308
+ "epoch": 0.39490445859872614,
1309
+ "grad_norm": 0.6671182861464395,
1310
+ "learning_rate": 2.1379057228742246e-05,
1311
+ "loss": 1.0217,
1312
+ "step": 186
1313
+ },
1314
+ {
1315
+ "epoch": 0.3970276008492569,
1316
+ "grad_norm": 0.6028813716348284,
1317
+ "learning_rate": 2.128348604951428e-05,
1318
+ "loss": 1.0129,
1319
+ "step": 187
1320
+ },
1321
+ {
1322
+ "epoch": 0.3991507430997877,
1323
+ "grad_norm": 0.5778363523300273,
1324
+ "learning_rate": 2.1187604497548862e-05,
1325
+ "loss": 1.0171,
1326
+ "step": 188
1327
+ },
1328
+ {
1329
+ "epoch": 0.4012738853503185,
1330
+ "grad_norm": 0.6855476054674353,
1331
+ "learning_rate": 2.1091417308914406e-05,
1332
+ "loss": 0.9339,
1333
+ "step": 189
1334
+ },
1335
+ {
1336
+ "epoch": 0.4033970276008493,
1337
+ "grad_norm": 0.55982548537731,
1338
+ "learning_rate": 2.0994929234776232e-05,
1339
+ "loss": 0.8762,
1340
+ "step": 190
1341
+ },
1342
+ {
1343
+ "epoch": 0.40552016985138006,
1344
+ "grad_norm": 0.6258582771861254,
1345
+ "learning_rate": 2.089814504116191e-05,
1346
+ "loss": 0.9444,
1347
+ "step": 191
1348
+ },
1349
+ {
1350
+ "epoch": 0.40764331210191085,
1351
+ "grad_norm": 0.6562202233796375,
1352
+ "learning_rate": 2.0801069508725815e-05,
1353
+ "loss": 0.9461,
1354
+ "step": 192
1355
+ },
1356
+ {
1357
+ "epoch": 0.40976645435244163,
1358
+ "grad_norm": 0.579424184880784,
1359
+ "learning_rate": 2.0703707432513006e-05,
1360
+ "loss": 0.9793,
1361
+ "step": 193
1362
+ },
1363
+ {
1364
+ "epoch": 0.4118895966029724,
1365
+ "grad_norm": 0.6330424612203424,
1366
+ "learning_rate": 2.0606063621722374e-05,
1367
+ "loss": 0.9634,
1368
+ "step": 194
1369
+ },
1370
+ {
1371
+ "epoch": 0.4140127388535032,
1372
+ "grad_norm": 0.6390702566723381,
1373
+ "learning_rate": 2.050814289946908e-05,
1374
+ "loss": 0.9219,
1375
+ "step": 195
1376
+ },
1377
+ {
1378
+ "epoch": 0.416135881104034,
1379
+ "grad_norm": 0.6275024889619232,
1380
+ "learning_rate": 2.0409950102546334e-05,
1381
+ "loss": 0.9155,
1382
+ "step": 196
1383
+ },
1384
+ {
1385
+ "epoch": 0.4182590233545648,
1386
+ "grad_norm": 0.6029024758044792,
1387
+ "learning_rate": 2.0311490081186458e-05,
1388
+ "loss": 0.9711,
1389
+ "step": 197
1390
+ },
1391
+ {
1392
+ "epoch": 0.42038216560509556,
1393
+ "grad_norm": 0.6725742996333739,
1394
+ "learning_rate": 2.021276769882133e-05,
1395
+ "loss": 1.0026,
1396
+ "step": 198
1397
+ },
1398
+ {
1399
+ "epoch": 0.42250530785562634,
1400
+ "grad_norm": 0.6705704166609441,
1401
+ "learning_rate": 2.0113787831842155e-05,
1402
+ "loss": 0.9382,
1403
+ "step": 199
1404
+ },
1405
+ {
1406
+ "epoch": 0.42462845010615713,
1407
+ "grad_norm": 0.6133264395984722,
1408
+ "learning_rate": 2.0014555369358576e-05,
1409
+ "loss": 0.9553,
1410
+ "step": 200
1411
+ },
1412
+ {
1413
+ "epoch": 0.4267515923566879,
1414
+ "grad_norm": 0.6353000261637869,
1415
+ "learning_rate": 1.9915075212957192e-05,
1416
+ "loss": 0.9745,
1417
+ "step": 201
1418
+ },
1419
+ {
1420
+ "epoch": 0.4288747346072187,
1421
+ "grad_norm": 0.6490705651396219,
1422
+ "learning_rate": 1.9815352276459447e-05,
1423
+ "loss": 0.9682,
1424
+ "step": 202
1425
+ },
1426
+ {
1427
+ "epoch": 0.4309978768577495,
1428
+ "grad_norm": 0.7067729195244077,
1429
+ "learning_rate": 1.9715391485678893e-05,
1430
+ "loss": 0.9225,
1431
+ "step": 203
1432
+ },
1433
+ {
1434
+ "epoch": 0.43312101910828027,
1435
+ "grad_norm": 0.6105521305677857,
1436
+ "learning_rate": 1.961519777817791e-05,
1437
+ "loss": 0.9571,
1438
+ "step": 204
1439
+ },
1440
+ {
1441
+ "epoch": 0.43524416135881105,
1442
+ "grad_norm": 0.5986113568625525,
1443
+ "learning_rate": 1.9514776103023783e-05,
1444
+ "loss": 1.0375,
1445
+ "step": 205
1446
+ },
1447
+ {
1448
+ "epoch": 0.43736730360934184,
1449
+ "grad_norm": 0.6239888084051822,
1450
+ "learning_rate": 1.9414131420544258e-05,
1451
+ "loss": 0.9442,
1452
+ "step": 206
1453
+ },
1454
+ {
1455
+ "epoch": 0.4394904458598726,
1456
+ "grad_norm": 0.6018088924811278,
1457
+ "learning_rate": 1.9313268702082536e-05,
1458
+ "loss": 0.9484,
1459
+ "step": 207
1460
+ },
1461
+ {
1462
+ "epoch": 0.4416135881104034,
1463
+ "grad_norm": 0.6351267682362137,
1464
+ "learning_rate": 1.921219292975169e-05,
1465
+ "loss": 0.9109,
1466
+ "step": 208
1467
+ },
1468
+ {
1469
+ "epoch": 0.4437367303609342,
1470
+ "grad_norm": 0.5797747650598362,
1471
+ "learning_rate": 1.9110909096188606e-05,
1472
+ "loss": 0.9167,
1473
+ "step": 209
1474
+ },
1475
+ {
1476
+ "epoch": 0.445859872611465,
1477
+ "grad_norm": 0.6326398300687381,
1478
+ "learning_rate": 1.900942220430733e-05,
1479
+ "loss": 0.9775,
1480
+ "step": 210
1481
+ },
1482
+ {
1483
+ "epoch": 0.44798301486199577,
1484
+ "grad_norm": 0.5993446508985663,
1485
+ "learning_rate": 1.890773726705198e-05,
1486
+ "loss": 0.9524,
1487
+ "step": 211
1488
+ },
1489
+ {
1490
+ "epoch": 0.45010615711252655,
1491
+ "grad_norm": 0.6109185912050061,
1492
+ "learning_rate": 1.880585930714914e-05,
1493
+ "loss": 0.9273,
1494
+ "step": 212
1495
+ },
1496
+ {
1497
+ "epoch": 0.45222929936305734,
1498
+ "grad_norm": 0.6385822979906733,
1499
+ "learning_rate": 1.8703793356859717e-05,
1500
+ "loss": 0.9269,
1501
+ "step": 213
1502
+ },
1503
+ {
1504
+ "epoch": 0.4543524416135881,
1505
+ "grad_norm": 0.607410319201568,
1506
+ "learning_rate": 1.8601544457730426e-05,
1507
+ "loss": 0.9085,
1508
+ "step": 214
1509
+ },
1510
+ {
1511
+ "epoch": 0.4564755838641189,
1512
+ "grad_norm": 0.5992615563122552,
1513
+ "learning_rate": 1.849911766034472e-05,
1514
+ "loss": 0.9203,
1515
+ "step": 215
1516
+ },
1517
+ {
1518
+ "epoch": 0.4585987261146497,
1519
+ "grad_norm": 0.6500875849339258,
1520
+ "learning_rate": 1.8396518024073356e-05,
1521
+ "loss": 0.968,
1522
+ "step": 216
1523
+ },
1524
+ {
1525
+ "epoch": 0.4607218683651805,
1526
+ "grad_norm": 0.6219814557801068,
1527
+ "learning_rate": 1.8293750616824443e-05,
1528
+ "loss": 1.0103,
1529
+ "step": 217
1530
+ },
1531
+ {
1532
+ "epoch": 0.46284501061571126,
1533
+ "grad_norm": 0.5719739307553183,
1534
+ "learning_rate": 1.819082051479315e-05,
1535
+ "loss": 0.9416,
1536
+ "step": 218
1537
+ },
1538
+ {
1539
+ "epoch": 0.46496815286624205,
1540
+ "grad_norm": 0.5794827261117855,
1541
+ "learning_rate": 1.8087732802210956e-05,
1542
+ "loss": 0.9242,
1543
+ "step": 219
1544
+ },
1545
+ {
1546
+ "epoch": 0.46709129511677283,
1547
+ "grad_norm": 0.5984472139940352,
1548
+ "learning_rate": 1.7984492571094497e-05,
1549
+ "loss": 0.9447,
1550
+ "step": 220
1551
+ },
1552
+ {
1553
+ "epoch": 0.4692144373673036,
1554
+ "grad_norm": 0.616893517178056,
1555
+ "learning_rate": 1.788110492099407e-05,
1556
+ "loss": 1.0119,
1557
+ "step": 221
1558
+ },
1559
+ {
1560
+ "epoch": 0.4713375796178344,
1561
+ "grad_norm": 0.5598209393737393,
1562
+ "learning_rate": 1.777757495874174e-05,
1563
+ "loss": 0.8852,
1564
+ "step": 222
1565
+ },
1566
+ {
1567
+ "epoch": 0.4734607218683652,
1568
+ "grad_norm": 0.6397664463775209,
1569
+ "learning_rate": 1.7673907798199054e-05,
1570
+ "loss": 0.9221,
1571
+ "step": 223
1572
+ },
1573
+ {
1574
+ "epoch": 0.47558386411889597,
1575
+ "grad_norm": 0.5813852755173831,
1576
+ "learning_rate": 1.75701085600045e-05,
1577
+ "loss": 0.9963,
1578
+ "step": 224
1579
+ },
1580
+ {
1581
+ "epoch": 0.47770700636942676,
1582
+ "grad_norm": 0.665489852109793,
1583
+ "learning_rate": 1.7466182371320518e-05,
1584
+ "loss": 0.926,
1585
+ "step": 225
1586
+ },
1587
+ {
1588
+ "epoch": 0.47983014861995754,
1589
+ "grad_norm": 0.5821224413128452,
1590
+ "learning_rate": 1.7362134365580268e-05,
1591
+ "loss": 0.922,
1592
+ "step": 226
1593
+ },
1594
+ {
1595
+ "epoch": 0.4819532908704883,
1596
+ "grad_norm": 0.5356404406560891,
1597
+ "learning_rate": 1.7257969682234073e-05,
1598
+ "loss": 0.9589,
1599
+ "step": 227
1600
+ },
1601
+ {
1602
+ "epoch": 0.4840764331210191,
1603
+ "grad_norm": 0.6108134895245437,
1604
+ "learning_rate": 1.7153693466495538e-05,
1605
+ "loss": 0.9597,
1606
+ "step": 228
1607
+ },
1608
+ {
1609
+ "epoch": 0.4861995753715499,
1610
+ "grad_norm": 0.6137774258222183,
1611
+ "learning_rate": 1.7049310869087402e-05,
1612
+ "loss": 0.9799,
1613
+ "step": 229
1614
+ },
1615
+ {
1616
+ "epoch": 0.4883227176220807,
1617
+ "grad_norm": 0.5726381735894963,
1618
+ "learning_rate": 1.6944827045987148e-05,
1619
+ "loss": 0.9488,
1620
+ "step": 230
1621
+ },
1622
+ {
1623
+ "epoch": 0.49044585987261147,
1624
+ "grad_norm": 0.6215657856126448,
1625
+ "learning_rate": 1.6840247158172277e-05,
1626
+ "loss": 0.9082,
1627
+ "step": 231
1628
+ },
1629
+ {
1630
+ "epoch": 0.49256900212314225,
1631
+ "grad_norm": 0.6328150266250187,
1632
+ "learning_rate": 1.673557637136542e-05,
1633
+ "loss": 1.0402,
1634
+ "step": 232
1635
+ },
1636
+ {
1637
+ "epoch": 0.49469214437367304,
1638
+ "grad_norm": 0.6045652853253233,
1639
+ "learning_rate": 1.663081985577916e-05,
1640
+ "loss": 0.9112,
1641
+ "step": 233
1642
+ },
1643
+ {
1644
+ "epoch": 0.4968152866242038,
1645
+ "grad_norm": 0.5785695616674981,
1646
+ "learning_rate": 1.652598278586065e-05,
1647
+ "loss": 0.8967,
1648
+ "step": 234
1649
+ },
1650
+ {
1651
+ "epoch": 0.4989384288747346,
1652
+ "grad_norm": 0.6276478280684502,
1653
+ "learning_rate": 1.6421070340036026e-05,
1654
+ "loss": 0.9626,
1655
+ "step": 235
1656
+ },
1657
+ {
1658
+ "epoch": 0.5010615711252654,
1659
+ "grad_norm": 0.5887038659784888,
1660
+ "learning_rate": 1.631608770045461e-05,
1661
+ "loss": 0.8641,
1662
+ "step": 236
1663
+ },
1664
+ {
1665
+ "epoch": 0.5031847133757962,
1666
+ "grad_norm": 0.6927396901880972,
1667
+ "learning_rate": 1.6211040052732958e-05,
1668
+ "loss": 0.9537,
1669
+ "step": 237
1670
+ },
1671
+ {
1672
+ "epoch": 0.505307855626327,
1673
+ "grad_norm": 0.5744893328350608,
1674
+ "learning_rate": 1.6105932585698687e-05,
1675
+ "loss": 0.9803,
1676
+ "step": 238
1677
+ },
1678
+ {
1679
+ "epoch": 0.5074309978768577,
1680
+ "grad_norm": 0.5870783428723387,
1681
+ "learning_rate": 1.6000770491134195e-05,
1682
+ "loss": 0.9281,
1683
+ "step": 239
1684
+ },
1685
+ {
1686
+ "epoch": 0.5095541401273885,
1687
+ "grad_norm": 0.5929932667698478,
1688
+ "learning_rate": 1.5895558963520207e-05,
1689
+ "loss": 1.0013,
1690
+ "step": 240
1691
+ },
1692
+ {
1693
+ "epoch": 0.5116772823779193,
1694
+ "grad_norm": 0.5725128495696129,
1695
+ "learning_rate": 1.5790303199779194e-05,
1696
+ "loss": 0.9386,
1697
+ "step": 241
1698
+ },
1699
+ {
1700
+ "epoch": 0.5138004246284501,
1701
+ "grad_norm": 0.6107066072742894,
1702
+ "learning_rate": 1.568500839901867e-05,
1703
+ "loss": 0.8998,
1704
+ "step": 242
1705
+ },
1706
+ {
1707
+ "epoch": 0.5159235668789809,
1708
+ "grad_norm": 0.5913797577531015,
1709
+ "learning_rate": 1.5579679762274377e-05,
1710
+ "loss": 0.9059,
1711
+ "step": 243
1712
+ },
1713
+ {
1714
+ "epoch": 0.5180467091295117,
1715
+ "grad_norm": 0.6181475328183207,
1716
+ "learning_rate": 1.5474322492253382e-05,
1717
+ "loss": 0.9877,
1718
+ "step": 244
1719
+ },
1720
+ {
1721
+ "epoch": 0.5201698513800425,
1722
+ "grad_norm": 0.5833190722915838,
1723
+ "learning_rate": 1.5368941793077115e-05,
1724
+ "loss": 0.9947,
1725
+ "step": 245
1726
+ },
1727
+ {
1728
+ "epoch": 0.5222929936305732,
1729
+ "grad_norm": 0.5771700964494837,
1730
+ "learning_rate": 1.5263542870024263e-05,
1731
+ "loss": 0.9787,
1732
+ "step": 246
1733
+ },
1734
+ {
1735
+ "epoch": 0.524416135881104,
1736
+ "grad_norm": 0.6069660458860243,
1737
+ "learning_rate": 1.5158130929273695e-05,
1738
+ "loss": 0.9581,
1739
+ "step": 247
1740
+ },
1741
+ {
1742
+ "epoch": 0.5265392781316348,
1743
+ "grad_norm": 0.5709532636436643,
1744
+ "learning_rate": 1.505271117764728e-05,
1745
+ "loss": 0.9278,
1746
+ "step": 248
1747
+ },
1748
+ {
1749
+ "epoch": 0.5286624203821656,
1750
+ "grad_norm": 0.6433938701377838,
1751
+ "learning_rate": 1.494728882235272e-05,
1752
+ "loss": 0.9655,
1753
+ "step": 249
1754
+ },
1755
+ {
1756
+ "epoch": 0.5307855626326964,
1757
+ "grad_norm": 0.5822393752360885,
1758
+ "learning_rate": 1.4841869070726307e-05,
1759
+ "loss": 0.9787,
1760
+ "step": 250
1761
+ },
1762
+ {
1763
+ "epoch": 0.5329087048832272,
1764
+ "grad_norm": 0.6267023147379772,
1765
+ "learning_rate": 1.473645712997574e-05,
1766
+ "loss": 0.9342,
1767
+ "step": 251
1768
+ },
1769
+ {
1770
+ "epoch": 0.535031847133758,
1771
+ "grad_norm": 0.6375126071613487,
1772
+ "learning_rate": 1.4631058206922886e-05,
1773
+ "loss": 0.9348,
1774
+ "step": 252
1775
+ },
1776
+ {
1777
+ "epoch": 0.5371549893842887,
1778
+ "grad_norm": 0.6127085617357599,
1779
+ "learning_rate": 1.4525677507746615e-05,
1780
+ "loss": 0.9611,
1781
+ "step": 253
1782
+ },
1783
+ {
1784
+ "epoch": 0.5392781316348195,
1785
+ "grad_norm": 0.5751592999711028,
1786
+ "learning_rate": 1.4420320237725632e-05,
1787
+ "loss": 1.0019,
1788
+ "step": 254
1789
+ },
1790
+ {
1791
+ "epoch": 0.5414012738853503,
1792
+ "grad_norm": 0.6048766878698145,
1793
+ "learning_rate": 1.4314991600981336e-05,
1794
+ "loss": 0.9246,
1795
+ "step": 255
1796
+ },
1797
+ {
1798
+ "epoch": 0.5435244161358811,
1799
+ "grad_norm": 0.585394770621169,
1800
+ "learning_rate": 1.4209696800220807e-05,
1801
+ "loss": 0.9185,
1802
+ "step": 256
1803
+ },
1804
+ {
1805
+ "epoch": 0.5456475583864119,
1806
+ "grad_norm": 0.6401236988459983,
1807
+ "learning_rate": 1.4104441036479797e-05,
1808
+ "loss": 0.9277,
1809
+ "step": 257
1810
+ },
1811
+ {
1812
+ "epoch": 0.5477707006369427,
1813
+ "grad_norm": 0.5987058316881022,
1814
+ "learning_rate": 1.399922950886581e-05,
1815
+ "loss": 0.9692,
1816
+ "step": 258
1817
+ },
1818
+ {
1819
+ "epoch": 0.5498938428874734,
1820
+ "grad_norm": 0.5572446710237258,
1821
+ "learning_rate": 1.3894067414301315e-05,
1822
+ "loss": 0.9375,
1823
+ "step": 259
1824
+ },
1825
+ {
1826
+ "epoch": 0.5520169851380042,
1827
+ "grad_norm": 0.5955717580516604,
1828
+ "learning_rate": 1.3788959947267042e-05,
1829
+ "loss": 0.9098,
1830
+ "step": 260
1831
+ },
1832
+ {
1833
+ "epoch": 0.554140127388535,
1834
+ "grad_norm": 0.6834272471980338,
1835
+ "learning_rate": 1.3683912299545391e-05,
1836
+ "loss": 0.9523,
1837
+ "step": 261
1838
+ },
1839
+ {
1840
+ "epoch": 0.5562632696390658,
1841
+ "grad_norm": 0.6256533610035157,
1842
+ "learning_rate": 1.3578929659963977e-05,
1843
+ "loss": 0.9969,
1844
+ "step": 262
1845
+ },
1846
+ {
1847
+ "epoch": 0.5583864118895966,
1848
+ "grad_norm": 0.5436695647032473,
1849
+ "learning_rate": 1.347401721413935e-05,
1850
+ "loss": 0.8784,
1851
+ "step": 263
1852
+ },
1853
+ {
1854
+ "epoch": 0.5605095541401274,
1855
+ "grad_norm": 0.5704479762497785,
1856
+ "learning_rate": 1.336918014422084e-05,
1857
+ "loss": 0.9338,
1858
+ "step": 264
1859
+ },
1860
+ {
1861
+ "epoch": 0.5626326963906582,
1862
+ "grad_norm": 0.6086202857937474,
1863
+ "learning_rate": 1.3264423628634583e-05,
1864
+ "loss": 0.9847,
1865
+ "step": 265
1866
+ },
1867
+ {
1868
+ "epoch": 0.564755838641189,
1869
+ "grad_norm": 0.6354163585809983,
1870
+ "learning_rate": 1.3159752841827724e-05,
1871
+ "loss": 0.9815,
1872
+ "step": 266
1873
+ },
1874
+ {
1875
+ "epoch": 0.5668789808917197,
1876
+ "grad_norm": 0.5785366526905389,
1877
+ "learning_rate": 1.3055172954012856e-05,
1878
+ "loss": 0.9393,
1879
+ "step": 267
1880
+ },
1881
+ {
1882
+ "epoch": 0.5690021231422505,
1883
+ "grad_norm": 0.5777363950316821,
1884
+ "learning_rate": 1.2950689130912599e-05,
1885
+ "loss": 1.0318,
1886
+ "step": 268
1887
+ },
1888
+ {
1889
+ "epoch": 0.5711252653927813,
1890
+ "grad_norm": 0.5400938772826588,
1891
+ "learning_rate": 1.2846306533504465e-05,
1892
+ "loss": 0.9302,
1893
+ "step": 269
1894
+ },
1895
+ {
1896
+ "epoch": 0.5732484076433121,
1897
+ "grad_norm": 0.5957886887990331,
1898
+ "learning_rate": 1.2742030317765933e-05,
1899
+ "loss": 0.947,
1900
+ "step": 270
1901
+ },
1902
+ {
1903
+ "epoch": 0.5753715498938429,
1904
+ "grad_norm": 0.5685633933725828,
1905
+ "learning_rate": 1.2637865634419735e-05,
1906
+ "loss": 0.934,
1907
+ "step": 271
1908
+ },
1909
+ {
1910
+ "epoch": 0.5774946921443737,
1911
+ "grad_norm": 0.6038992480186266,
1912
+ "learning_rate": 1.2533817628679485e-05,
1913
+ "loss": 0.9871,
1914
+ "step": 272
1915
+ },
1916
+ {
1917
+ "epoch": 0.5796178343949044,
1918
+ "grad_norm": 0.5531455689022556,
1919
+ "learning_rate": 1.24298914399955e-05,
1920
+ "loss": 0.909,
1921
+ "step": 273
1922
+ },
1923
+ {
1924
+ "epoch": 0.5817409766454352,
1925
+ "grad_norm": 0.5562580177389622,
1926
+ "learning_rate": 1.2326092201800948e-05,
1927
+ "loss": 0.9864,
1928
+ "step": 274
1929
+ },
1930
+ {
1931
+ "epoch": 0.583864118895966,
1932
+ "grad_norm": 0.5650599912328349,
1933
+ "learning_rate": 1.2222425041258267e-05,
1934
+ "loss": 0.9932,
1935
+ "step": 275
1936
+ },
1937
+ {
1938
+ "epoch": 0.5859872611464968,
1939
+ "grad_norm": 0.6128698371500075,
1940
+ "learning_rate": 1.2118895079005929e-05,
1941
+ "loss": 0.9663,
1942
+ "step": 276
1943
+ },
1944
+ {
1945
+ "epoch": 0.5881104033970276,
1946
+ "grad_norm": 0.6402876844624192,
1947
+ "learning_rate": 1.2015507428905509e-05,
1948
+ "loss": 0.9367,
1949
+ "step": 277
1950
+ },
1951
+ {
1952
+ "epoch": 0.5902335456475584,
1953
+ "grad_norm": 0.5802127210062712,
1954
+ "learning_rate": 1.1912267197789047e-05,
1955
+ "loss": 0.9369,
1956
+ "step": 278
1957
+ },
1958
+ {
1959
+ "epoch": 0.5923566878980892,
1960
+ "grad_norm": 0.6212326138735739,
1961
+ "learning_rate": 1.1809179485206847e-05,
1962
+ "loss": 0.9742,
1963
+ "step": 279
1964
+ },
1965
+ {
1966
+ "epoch": 0.5944798301486199,
1967
+ "grad_norm": 0.548301604024312,
1968
+ "learning_rate": 1.1706249383175558e-05,
1969
+ "loss": 0.9866,
1970
+ "step": 280
1971
+ },
1972
+ {
1973
+ "epoch": 0.5966029723991507,
1974
+ "grad_norm": 0.6101785900734475,
1975
+ "learning_rate": 1.1603481975926643e-05,
1976
+ "loss": 0.9784,
1977
+ "step": 281
1978
+ },
1979
+ {
1980
+ "epoch": 0.5987261146496815,
1981
+ "grad_norm": 0.6052900059845123,
1982
+ "learning_rate": 1.1500882339655278e-05,
1983
+ "loss": 0.9075,
1984
+ "step": 282
1985
+ },
1986
+ {
1987
+ "epoch": 0.6008492569002123,
1988
+ "grad_norm": 0.6185657143466954,
1989
+ "learning_rate": 1.1398455542269578e-05,
1990
+ "loss": 0.9706,
1991
+ "step": 283
1992
+ },
1993
+ {
1994
+ "epoch": 0.6029723991507431,
1995
+ "grad_norm": 0.5751738279124855,
1996
+ "learning_rate": 1.1296206643140284e-05,
1997
+ "loss": 0.9598,
1998
+ "step": 284
1999
+ },
2000
+ {
2001
+ "epoch": 0.6050955414012739,
2002
+ "grad_norm": 0.6416444090869639,
2003
+ "learning_rate": 1.1194140692850863e-05,
2004
+ "loss": 0.9788,
2005
+ "step": 285
2006
+ },
2007
+ {
2008
+ "epoch": 0.6072186836518046,
2009
+ "grad_norm": 0.5714386078956842,
2010
+ "learning_rate": 1.1092262732948017e-05,
2011
+ "loss": 0.919,
2012
+ "step": 286
2013
+ },
2014
+ {
2015
+ "epoch": 0.6093418259023354,
2016
+ "grad_norm": 0.545987242527638,
2017
+ "learning_rate": 1.0990577795692676e-05,
2018
+ "loss": 0.9136,
2019
+ "step": 287
2020
+ },
2021
+ {
2022
+ "epoch": 0.6114649681528662,
2023
+ "grad_norm": 0.5656751198434353,
2024
+ "learning_rate": 1.0889090903811397e-05,
2025
+ "loss": 0.9587,
2026
+ "step": 288
2027
+ },
2028
+ {
2029
+ "epoch": 0.613588110403397,
2030
+ "grad_norm": 0.5636926547779225,
2031
+ "learning_rate": 1.0787807070248306e-05,
2032
+ "loss": 0.8874,
2033
+ "step": 289
2034
+ },
2035
+ {
2036
+ "epoch": 0.6157112526539278,
2037
+ "grad_norm": 0.5700481388735775,
2038
+ "learning_rate": 1.068673129791747e-05,
2039
+ "loss": 0.9478,
2040
+ "step": 290
2041
+ },
2042
+ {
2043
+ "epoch": 0.6178343949044586,
2044
+ "grad_norm": 0.5614742249715488,
2045
+ "learning_rate": 1.0585868579455745e-05,
2046
+ "loss": 0.955,
2047
+ "step": 291
2048
+ },
2049
+ {
2050
+ "epoch": 0.6199575371549894,
2051
+ "grad_norm": 0.581521611639187,
2052
+ "learning_rate": 1.0485223896976221e-05,
2053
+ "loss": 0.9676,
2054
+ "step": 292
2055
+ },
2056
+ {
2057
+ "epoch": 0.6220806794055201,
2058
+ "grad_norm": 0.5903813523116045,
2059
+ "learning_rate": 1.0384802221822098e-05,
2060
+ "loss": 0.9815,
2061
+ "step": 293
2062
+ },
2063
+ {
2064
+ "epoch": 0.6242038216560509,
2065
+ "grad_norm": 0.5837585878828937,
2066
+ "learning_rate": 1.028460851432111e-05,
2067
+ "loss": 0.8784,
2068
+ "step": 294
2069
+ },
2070
+ {
2071
+ "epoch": 0.6263269639065817,
2072
+ "grad_norm": 0.5568116286168524,
2073
+ "learning_rate": 1.0184647723540557e-05,
2074
+ "loss": 0.9364,
2075
+ "step": 295
2076
+ },
2077
+ {
2078
+ "epoch": 0.6284501061571125,
2079
+ "grad_norm": 0.5990779103796753,
2080
+ "learning_rate": 1.0084924787042809e-05,
2081
+ "loss": 0.9763,
2082
+ "step": 296
2083
+ },
2084
+ {
2085
+ "epoch": 0.6305732484076433,
2086
+ "grad_norm": 0.5866020091761237,
2087
+ "learning_rate": 9.985444630641426e-06,
2088
+ "loss": 0.9582,
2089
+ "step": 297
2090
+ },
2091
+ {
2092
+ "epoch": 0.6326963906581741,
2093
+ "grad_norm": 0.5323296010758973,
2094
+ "learning_rate": 9.886212168157848e-06,
2095
+ "loss": 0.9254,
2096
+ "step": 298
2097
+ },
2098
+ {
2099
+ "epoch": 0.6348195329087049,
2100
+ "grad_norm": 0.5522784198698178,
2101
+ "learning_rate": 9.787232301178669e-06,
2102
+ "loss": 0.9657,
2103
+ "step": 299
2104
+ },
2105
+ {
2106
+ "epoch": 0.6369426751592356,
2107
+ "grad_norm": 0.575212640738695,
2108
+ "learning_rate": 9.688509918813547e-06,
2109
+ "loss": 0.9051,
2110
+ "step": 300
2111
+ },
2112
+ {
2113
+ "epoch": 0.6390658174097664,
2114
+ "grad_norm": 0.5674507026773249,
2115
+ "learning_rate": 9.590049897453668e-06,
2116
+ "loss": 0.984,
2117
+ "step": 301
2118
+ },
2119
+ {
2120
+ "epoch": 0.6411889596602972,
2121
+ "grad_norm": 0.55515175444595,
2122
+ "learning_rate": 9.491857100530919e-06,
2123
+ "loss": 0.9484,
2124
+ "step": 302
2125
+ },
2126
+ {
2127
+ "epoch": 0.643312101910828,
2128
+ "grad_norm": 0.5292179686500557,
2129
+ "learning_rate": 9.393936378277632e-06,
2130
+ "loss": 0.9365,
2131
+ "step": 303
2132
+ },
2133
+ {
2134
+ "epoch": 0.6454352441613588,
2135
+ "grad_norm": 0.5949560633293998,
2136
+ "learning_rate": 9.296292567486997e-06,
2137
+ "loss": 0.9013,
2138
+ "step": 304
2139
+ },
2140
+ {
2141
+ "epoch": 0.6475583864118896,
2142
+ "grad_norm": 0.5640508209822152,
2143
+ "learning_rate": 9.198930491274188e-06,
2144
+ "loss": 0.9224,
2145
+ "step": 305
2146
+ },
2147
+ {
2148
+ "epoch": 0.6496815286624203,
2149
+ "grad_norm": 0.564377192493895,
2150
+ "learning_rate": 9.10185495883809e-06,
2151
+ "loss": 0.9493,
2152
+ "step": 306
2153
+ },
2154
+ {
2155
+ "epoch": 0.6518046709129511,
2156
+ "grad_norm": 0.5436911185747707,
2157
+ "learning_rate": 9.005070765223768e-06,
2158
+ "loss": 0.9504,
2159
+ "step": 307
2160
+ },
2161
+ {
2162
+ "epoch": 0.6539278131634819,
2163
+ "grad_norm": 0.5364497163093522,
2164
+ "learning_rate": 8.908582691085593e-06,
2165
+ "loss": 0.9543,
2166
+ "step": 308
2167
+ },
2168
+ {
2169
+ "epoch": 0.6560509554140127,
2170
+ "grad_norm": 0.6063724960512262,
2171
+ "learning_rate": 8.812395502451139e-06,
2172
+ "loss": 1.0194,
2173
+ "step": 309
2174
+ },
2175
+ {
2176
+ "epoch": 0.6581740976645435,
2177
+ "grad_norm": 0.572682762237652,
2178
+ "learning_rate": 8.716513950485725e-06,
2179
+ "loss": 0.9761,
2180
+ "step": 310
2181
+ },
2182
+ {
2183
+ "epoch": 0.6602972399150743,
2184
+ "grad_norm": 0.6237775922204165,
2185
+ "learning_rate": 8.620942771257755e-06,
2186
+ "loss": 0.9262,
2187
+ "step": 311
2188
+ },
2189
+ {
2190
+ "epoch": 0.6624203821656051,
2191
+ "grad_norm": 0.5528221980335309,
2192
+ "learning_rate": 8.525686685504781e-06,
2193
+ "loss": 0.8953,
2194
+ "step": 312
2195
+ },
2196
+ {
2197
+ "epoch": 0.6645435244161358,
2198
+ "grad_norm": 0.5889044724013025,
2199
+ "learning_rate": 8.430750398400309e-06,
2200
+ "loss": 0.943,
2201
+ "step": 313
2202
+ },
2203
+ {
2204
+ "epoch": 0.6666666666666666,
2205
+ "grad_norm": 0.5125143671796547,
2206
+ "learning_rate": 8.336138599321391e-06,
2207
+ "loss": 0.9601,
2208
+ "step": 314
2209
+ },
2210
+ {
2211
+ "epoch": 0.6687898089171974,
2212
+ "grad_norm": 0.5476667961262259,
2213
+ "learning_rate": 8.241855961617e-06,
2214
+ "loss": 0.901,
2215
+ "step": 315
2216
+ },
2217
+ {
2218
+ "epoch": 0.6709129511677282,
2219
+ "grad_norm": 0.49845108048267994,
2220
+ "learning_rate": 8.147907142377198e-06,
2221
+ "loss": 0.9787,
2222
+ "step": 316
2223
+ },
2224
+ {
2225
+ "epoch": 0.673036093418259,
2226
+ "grad_norm": 0.5404151085945639,
2227
+ "learning_rate": 8.054296782203052e-06,
2228
+ "loss": 0.9426,
2229
+ "step": 317
2230
+ },
2231
+ {
2232
+ "epoch": 0.6751592356687898,
2233
+ "grad_norm": 0.5347124147295028,
2234
+ "learning_rate": 7.961029504977487e-06,
2235
+ "loss": 0.9228,
2236
+ "step": 318
2237
+ },
2238
+ {
2239
+ "epoch": 0.6772823779193206,
2240
+ "grad_norm": 0.5509814795088901,
2241
+ "learning_rate": 7.868109917636823e-06,
2242
+ "loss": 0.9289,
2243
+ "step": 319
2244
+ },
2245
+ {
2246
+ "epoch": 0.6794055201698513,
2247
+ "grad_norm": 0.5316099445221201,
2248
+ "learning_rate": 7.77554260994326e-06,
2249
+ "loss": 0.8699,
2250
+ "step": 320
2251
+ },
2252
+ {
2253
+ "epoch": 0.6815286624203821,
2254
+ "grad_norm": 0.49836894602961657,
2255
+ "learning_rate": 7.683332154258117e-06,
2256
+ "loss": 0.9747,
2257
+ "step": 321
2258
+ },
2259
+ {
2260
+ "epoch": 0.6836518046709129,
2261
+ "grad_norm": 0.5546979465633,
2262
+ "learning_rate": 7.591483105316048e-06,
2263
+ "loss": 0.8788,
2264
+ "step": 322
2265
+ },
2266
+ {
2267
+ "epoch": 0.6857749469214437,
2268
+ "grad_norm": 0.6054955853270848,
2269
+ "learning_rate": 7.500000000000004e-06,
2270
+ "loss": 0.9601,
2271
+ "step": 323
2272
+ },
2273
+ {
2274
+ "epoch": 0.6878980891719745,
2275
+ "grad_norm": 0.5434420921617582,
2276
+ "learning_rate": 7.408887357117147e-06,
2277
+ "loss": 0.9726,
2278
+ "step": 324
2279
+ },
2280
+ {
2281
+ "epoch": 0.6900212314225053,
2282
+ "grad_norm": 0.5502097893793918,
2283
+ "learning_rate": 7.3181496771756754e-06,
2284
+ "loss": 0.966,
2285
+ "step": 325
2286
+ },
2287
+ {
2288
+ "epoch": 0.692144373673036,
2289
+ "grad_norm": 0.5336428055938336,
2290
+ "learning_rate": 7.227791442162475e-06,
2291
+ "loss": 0.9168,
2292
+ "step": 326
2293
+ },
2294
+ {
2295
+ "epoch": 0.6942675159235668,
2296
+ "grad_norm": 0.5567158996740152,
2297
+ "learning_rate": 7.137817115321759e-06,
2298
+ "loss": 0.9536,
2299
+ "step": 327
2300
+ },
2301
+ {
2302
+ "epoch": 0.6963906581740976,
2303
+ "grad_norm": 0.5246357810088409,
2304
+ "learning_rate": 7.048231140934595e-06,
2305
+ "loss": 0.8912,
2306
+ "step": 328
2307
+ },
2308
+ {
2309
+ "epoch": 0.6985138004246284,
2310
+ "grad_norm": 0.564409375685434,
2311
+ "learning_rate": 6.959037944099402e-06,
2312
+ "loss": 0.9119,
2313
+ "step": 329
2314
+ },
2315
+ {
2316
+ "epoch": 0.7006369426751592,
2317
+ "grad_norm": 0.5533102306545692,
2318
+ "learning_rate": 6.870241930513338e-06,
2319
+ "loss": 0.9712,
2320
+ "step": 330
2321
+ },
2322
+ {
2323
+ "epoch": 0.70276008492569,
2324
+ "grad_norm": 0.539122288480235,
2325
+ "learning_rate": 6.781847486254698e-06,
2326
+ "loss": 0.9227,
2327
+ "step": 331
2328
+ },
2329
+ {
2330
+ "epoch": 0.7048832271762208,
2331
+ "grad_norm": 0.5382383698751078,
2332
+ "learning_rate": 6.6938589775662705e-06,
2333
+ "loss": 0.9448,
2334
+ "step": 332
2335
+ },
2336
+ {
2337
+ "epoch": 0.7070063694267515,
2338
+ "grad_norm": 0.5368990830270315,
2339
+ "learning_rate": 6.6062807506396696e-06,
2340
+ "loss": 0.9403,
2341
+ "step": 333
2342
+ },
2343
+ {
2344
+ "epoch": 0.7091295116772823,
2345
+ "grad_norm": 0.520929253144545,
2346
+ "learning_rate": 6.519117131400617e-06,
2347
+ "loss": 0.932,
2348
+ "step": 334
2349
+ },
2350
+ {
2351
+ "epoch": 0.7112526539278131,
2352
+ "grad_norm": 0.5251850810798755,
2353
+ "learning_rate": 6.432372425295321e-06,
2354
+ "loss": 0.9192,
2355
+ "step": 335
2356
+ },
2357
+ {
2358
+ "epoch": 0.7133757961783439,
2359
+ "grad_norm": 0.5421931278275105,
2360
+ "learning_rate": 6.346050917077762e-06,
2361
+ "loss": 0.9541,
2362
+ "step": 336
2363
+ },
2364
+ {
2365
+ "epoch": 0.7154989384288747,
2366
+ "grad_norm": 0.5229472361556049,
2367
+ "learning_rate": 6.260156870598072e-06,
2368
+ "loss": 0.9779,
2369
+ "step": 337
2370
+ },
2371
+ {
2372
+ "epoch": 0.7176220806794055,
2373
+ "grad_norm": 0.5400736058203549,
2374
+ "learning_rate": 6.174694528591902e-06,
2375
+ "loss": 0.8923,
2376
+ "step": 338
2377
+ },
2378
+ {
2379
+ "epoch": 0.7197452229299363,
2380
+ "grad_norm": 0.5085373634938479,
2381
+ "learning_rate": 6.089668112470892e-06,
2382
+ "loss": 0.9448,
2383
+ "step": 339
2384
+ },
2385
+ {
2386
+ "epoch": 0.721868365180467,
2387
+ "grad_norm": 0.5298949149149584,
2388
+ "learning_rate": 6.005081822114096e-06,
2389
+ "loss": 0.9276,
2390
+ "step": 340
2391
+ },
2392
+ {
2393
+ "epoch": 0.7239915074309978,
2394
+ "grad_norm": 0.5432948704397309,
2395
+ "learning_rate": 5.920939835660572e-06,
2396
+ "loss": 0.959,
2397
+ "step": 341
2398
+ },
2399
+ {
2400
+ "epoch": 0.7261146496815286,
2401
+ "grad_norm": 0.507224891568453,
2402
+ "learning_rate": 5.8372463093030006e-06,
2403
+ "loss": 0.9318,
2404
+ "step": 342
2405
+ },
2406
+ {
2407
+ "epoch": 0.7282377919320594,
2408
+ "grad_norm": 0.5063069044994013,
2409
+ "learning_rate": 5.754005377082365e-06,
2410
+ "loss": 0.9895,
2411
+ "step": 343
2412
+ },
2413
+ {
2414
+ "epoch": 0.7303609341825902,
2415
+ "grad_norm": 0.5008230814445663,
2416
+ "learning_rate": 5.671221150683772e-06,
2417
+ "loss": 0.9552,
2418
+ "step": 344
2419
+ },
2420
+ {
2421
+ "epoch": 0.732484076433121,
2422
+ "grad_norm": 0.5236977533272006,
2423
+ "learning_rate": 5.588897719233341e-06,
2424
+ "loss": 0.8969,
2425
+ "step": 345
2426
+ },
2427
+ {
2428
+ "epoch": 0.7346072186836518,
2429
+ "grad_norm": 0.5453574252356792,
2430
+ "learning_rate": 5.507039149096251e-06,
2431
+ "loss": 0.9645,
2432
+ "step": 346
2433
+ },
2434
+ {
2435
+ "epoch": 0.7367303609341825,
2436
+ "grad_norm": 0.5327242182882551,
2437
+ "learning_rate": 5.425649483675827e-06,
2438
+ "loss": 1.0094,
2439
+ "step": 347
2440
+ },
2441
+ {
2442
+ "epoch": 0.7388535031847133,
2443
+ "grad_norm": 0.5555867838219068,
2444
+ "learning_rate": 5.3447327432138755e-06,
2445
+ "loss": 0.9228,
2446
+ "step": 348
2447
+ },
2448
+ {
2449
+ "epoch": 0.7409766454352441,
2450
+ "grad_norm": 0.5412007429751795,
2451
+ "learning_rate": 5.264292924592074e-06,
2452
+ "loss": 0.938,
2453
+ "step": 349
2454
+ },
2455
+ {
2456
+ "epoch": 0.7430997876857749,
2457
+ "grad_norm": 0.5532186476228068,
2458
+ "learning_rate": 5.184334001134542e-06,
2459
+ "loss": 0.8919,
2460
+ "step": 350
2461
+ },
2462
+ {
2463
+ "epoch": 0.7452229299363057,
2464
+ "grad_norm": 0.5570955284278991,
2465
+ "learning_rate": 5.104859922411587e-06,
2466
+ "loss": 0.9117,
2467
+ "step": 351
2468
+ },
2469
+ {
2470
+ "epoch": 0.7473460721868365,
2471
+ "grad_norm": 0.5382963451516724,
2472
+ "learning_rate": 5.025874614044631e-06,
2473
+ "loss": 0.9468,
2474
+ "step": 352
2475
+ },
2476
+ {
2477
+ "epoch": 0.7494692144373672,
2478
+ "grad_norm": 0.5149195845272291,
2479
+ "learning_rate": 4.9473819775122716e-06,
2480
+ "loss": 0.9421,
2481
+ "step": 353
2482
+ },
2483
+ {
2484
+ "epoch": 0.7515923566878981,
2485
+ "grad_norm": 0.49481641390186526,
2486
+ "learning_rate": 4.86938588995759e-06,
2487
+ "loss": 1.0069,
2488
+ "step": 354
2489
+ },
2490
+ {
2491
+ "epoch": 0.7537154989384289,
2492
+ "grad_norm": 0.5531251592147758,
2493
+ "learning_rate": 4.791890203996634e-06,
2494
+ "loss": 0.8964,
2495
+ "step": 355
2496
+ },
2497
+ {
2498
+ "epoch": 0.7558386411889597,
2499
+ "grad_norm": 0.5334093734684512,
2500
+ "learning_rate": 4.714898747528129e-06,
2501
+ "loss": 0.9546,
2502
+ "step": 356
2503
+ },
2504
+ {
2505
+ "epoch": 0.7579617834394905,
2506
+ "grad_norm": 0.5251264229643601,
2507
+ "learning_rate": 4.638415323544376e-06,
2508
+ "loss": 0.9159,
2509
+ "step": 357
2510
+ },
2511
+ {
2512
+ "epoch": 0.7600849256900213,
2513
+ "grad_norm": 0.5276709219009906,
2514
+ "learning_rate": 4.562443709943424e-06,
2515
+ "loss": 0.9533,
2516
+ "step": 358
2517
+ },
2518
+ {
2519
+ "epoch": 0.7622080679405521,
2520
+ "grad_norm": 0.5538080314575125,
2521
+ "learning_rate": 4.4869876593424484e-06,
2522
+ "loss": 0.9681,
2523
+ "step": 359
2524
+ },
2525
+ {
2526
+ "epoch": 0.7643312101910829,
2527
+ "grad_norm": 0.5273232151286709,
2528
+ "learning_rate": 4.412050898892393e-06,
2529
+ "loss": 0.9337,
2530
+ "step": 360
2531
+ },
2532
+ {
2533
+ "epoch": 0.7664543524416136,
2534
+ "grad_norm": 0.5372645133897195,
2535
+ "learning_rate": 4.337637130093879e-06,
2536
+ "loss": 0.8776,
2537
+ "step": 361
2538
+ },
2539
+ {
2540
+ "epoch": 0.7685774946921444,
2541
+ "grad_norm": 0.5373725094136548,
2542
+ "learning_rate": 4.263750028614352e-06,
2543
+ "loss": 0.9626,
2544
+ "step": 362
2545
+ },
2546
+ {
2547
+ "epoch": 0.7707006369426752,
2548
+ "grad_norm": 0.561051915231661,
2549
+ "learning_rate": 4.1903932441065315e-06,
2550
+ "loss": 0.8999,
2551
+ "step": 363
2552
+ },
2553
+ {
2554
+ "epoch": 0.772823779193206,
2555
+ "grad_norm": 0.5629541189967254,
2556
+ "learning_rate": 4.117570400028129e-06,
2557
+ "loss": 0.9654,
2558
+ "step": 364
2559
+ },
2560
+ {
2561
+ "epoch": 0.7749469214437368,
2562
+ "grad_norm": 0.5304742998126838,
2563
+ "learning_rate": 4.045285093462887e-06,
2564
+ "loss": 0.9513,
2565
+ "step": 365
2566
+ },
2567
+ {
2568
+ "epoch": 0.7770700636942676,
2569
+ "grad_norm": 0.5490072502884541,
2570
+ "learning_rate": 3.973540894942876e-06,
2571
+ "loss": 0.8785,
2572
+ "step": 366
2573
+ },
2574
+ {
2575
+ "epoch": 0.7791932059447984,
2576
+ "grad_norm": 0.5405499109981703,
2577
+ "learning_rate": 3.902341348272144e-06,
2578
+ "loss": 0.9486,
2579
+ "step": 367
2580
+ },
2581
+ {
2582
+ "epoch": 0.7813163481953291,
2583
+ "grad_norm": 0.5447610621007355,
2584
+ "learning_rate": 3.831689970351659e-06,
2585
+ "loss": 0.9657,
2586
+ "step": 368
2587
+ },
2588
+ {
2589
+ "epoch": 0.7834394904458599,
2590
+ "grad_norm": 0.5648435971288772,
2591
+ "learning_rate": 3.7615902510056175e-06,
2592
+ "loss": 0.8971,
2593
+ "step": 369
2594
+ },
2595
+ {
2596
+ "epoch": 0.7855626326963907,
2597
+ "grad_norm": 0.5405051921246805,
2598
+ "learning_rate": 3.6920456528090147e-06,
2599
+ "loss": 0.9082,
2600
+ "step": 370
2601
+ },
2602
+ {
2603
+ "epoch": 0.7876857749469215,
2604
+ "grad_norm": 0.5598616702029527,
2605
+ "learning_rate": 3.6230596109166738e-06,
2606
+ "loss": 0.9141,
2607
+ "step": 371
2608
+ },
2609
+ {
2610
+ "epoch": 0.7898089171974523,
2611
+ "grad_norm": 0.5488453974007677,
2612
+ "learning_rate": 3.5546355328935113e-06,
2613
+ "loss": 0.9212,
2614
+ "step": 372
2615
+ },
2616
+ {
2617
+ "epoch": 0.7919320594479831,
2618
+ "grad_norm": 0.5273723147565813,
2619
+ "learning_rate": 3.4867767985462513e-06,
2620
+ "loss": 0.862,
2621
+ "step": 373
2622
+ },
2623
+ {
2624
+ "epoch": 0.7940552016985138,
2625
+ "grad_norm": 0.5678469468879229,
2626
+ "learning_rate": 3.4194867597564783e-06,
2627
+ "loss": 0.901,
2628
+ "step": 374
2629
+ },
2630
+ {
2631
+ "epoch": 0.7961783439490446,
2632
+ "grad_norm": 0.5168620463274789,
2633
+ "learning_rate": 3.352768740315055e-06,
2634
+ "loss": 0.9321,
2635
+ "step": 375
2636
+ },
2637
+ {
2638
+ "epoch": 0.7983014861995754,
2639
+ "grad_norm": 0.5283148075602601,
2640
+ "learning_rate": 3.28662603575796e-06,
2641
+ "loss": 0.9785,
2642
+ "step": 376
2643
+ },
2644
+ {
2645
+ "epoch": 0.8004246284501062,
2646
+ "grad_norm": 0.5926837734103355,
2647
+ "learning_rate": 3.2210619132034893e-06,
2648
+ "loss": 0.9131,
2649
+ "step": 377
2650
+ },
2651
+ {
2652
+ "epoch": 0.802547770700637,
2653
+ "grad_norm": 0.5476291313153387,
2654
+ "learning_rate": 3.1560796111909017e-06,
2655
+ "loss": 0.9441,
2656
+ "step": 378
2657
+ },
2658
+ {
2659
+ "epoch": 0.8046709129511678,
2660
+ "grad_norm": 0.5569899840466258,
2661
+ "learning_rate": 3.0916823395204204e-06,
2662
+ "loss": 0.9746,
2663
+ "step": 379
2664
+ },
2665
+ {
2666
+ "epoch": 0.8067940552016986,
2667
+ "grad_norm": 0.5276441512668693,
2668
+ "learning_rate": 3.027873279094709e-06,
2669
+ "loss": 0.9141,
2670
+ "step": 380
2671
+ },
2672
+ {
2673
+ "epoch": 0.8089171974522293,
2674
+ "grad_norm": 0.5128633309076918,
2675
+ "learning_rate": 2.964655581761732e-06,
2676
+ "loss": 1.0081,
2677
+ "step": 381
2678
+ },
2679
+ {
2680
+ "epoch": 0.8110403397027601,
2681
+ "grad_norm": 0.5247424426249943,
2682
+ "learning_rate": 2.9020323701590984e-06,
2683
+ "loss": 0.9706,
2684
+ "step": 382
2685
+ },
2686
+ {
2687
+ "epoch": 0.8131634819532909,
2688
+ "grad_norm": 0.5210955810775265,
2689
+ "learning_rate": 2.8400067375597737e-06,
2690
+ "loss": 0.9451,
2691
+ "step": 383
2692
+ },
2693
+ {
2694
+ "epoch": 0.8152866242038217,
2695
+ "grad_norm": 0.5074415330649746,
2696
+ "learning_rate": 2.7785817477193393e-06,
2697
+ "loss": 0.9037,
2698
+ "step": 384
2699
+ },
2700
+ {
2701
+ "epoch": 0.8174097664543525,
2702
+ "grad_norm": 0.5239683128122566,
2703
+ "learning_rate": 2.7177604347246133e-06,
2704
+ "loss": 0.8987,
2705
+ "step": 385
2706
+ },
2707
+ {
2708
+ "epoch": 0.8195329087048833,
2709
+ "grad_norm": 0.5646191562969649,
2710
+ "learning_rate": 2.657545802843815e-06,
2711
+ "loss": 0.8748,
2712
+ "step": 386
2713
+ },
2714
+ {
2715
+ "epoch": 0.821656050955414,
2716
+ "grad_norm": 0.5317319375012074,
2717
+ "learning_rate": 2.597940826378141e-06,
2718
+ "loss": 0.9628,
2719
+ "step": 387
2720
+ },
2721
+ {
2722
+ "epoch": 0.8237791932059448,
2723
+ "grad_norm": 0.546387093554132,
2724
+ "learning_rate": 2.5389484495148845e-06,
2725
+ "loss": 0.9247,
2726
+ "step": 388
2727
+ },
2728
+ {
2729
+ "epoch": 0.8259023354564756,
2730
+ "grad_norm": 0.5277851982282334,
2731
+ "learning_rate": 2.480571586181969e-06,
2732
+ "loss": 1.006,
2733
+ "step": 389
2734
+ },
2735
+ {
2736
+ "epoch": 0.8280254777070064,
2737
+ "grad_norm": 0.5353277977152705,
2738
+ "learning_rate": 2.422813119904035e-06,
2739
+ "loss": 0.9211,
2740
+ "step": 390
2741
+ },
2742
+ {
2743
+ "epoch": 0.8301486199575372,
2744
+ "grad_norm": 0.49924730578167487,
2745
+ "learning_rate": 2.365675903660019e-06,
2746
+ "loss": 0.9882,
2747
+ "step": 391
2748
+ },
2749
+ {
2750
+ "epoch": 0.832271762208068,
2751
+ "grad_norm": 0.5456822409035776,
2752
+ "learning_rate": 2.309162759742203e-06,
2753
+ "loss": 0.9151,
2754
+ "step": 392
2755
+ },
2756
+ {
2757
+ "epoch": 0.8343949044585988,
2758
+ "grad_norm": 0.5124444624168185,
2759
+ "learning_rate": 2.2532764796168293e-06,
2760
+ "loss": 0.9209,
2761
+ "step": 393
2762
+ },
2763
+ {
2764
+ "epoch": 0.8365180467091295,
2765
+ "grad_norm": 0.5304159814259841,
2766
+ "learning_rate": 2.1980198237862003e-06,
2767
+ "loss": 0.9031,
2768
+ "step": 394
2769
+ },
2770
+ {
2771
+ "epoch": 0.8386411889596603,
2772
+ "grad_norm": 0.5485951227041947,
2773
+ "learning_rate": 2.143395521652352e-06,
2774
+ "loss": 0.9073,
2775
+ "step": 395
2776
+ },
2777
+ {
2778
+ "epoch": 0.8407643312101911,
2779
+ "grad_norm": 0.5327985525474135,
2780
+ "learning_rate": 2.0894062713821875e-06,
2781
+ "loss": 0.9278,
2782
+ "step": 396
2783
+ },
2784
+ {
2785
+ "epoch": 0.8428874734607219,
2786
+ "grad_norm": 0.5634270489913519,
2787
+ "learning_rate": 2.036054739774252e-06,
2788
+ "loss": 0.9634,
2789
+ "step": 397
2790
+ },
2791
+ {
2792
+ "epoch": 0.8450106157112527,
2793
+ "grad_norm": 0.5667711068580208,
2794
+ "learning_rate": 1.983343562126969e-06,
2795
+ "loss": 1.0032,
2796
+ "step": 398
2797
+ },
2798
+ {
2799
+ "epoch": 0.8471337579617835,
2800
+ "grad_norm": 0.5139510204694832,
2801
+ "learning_rate": 1.931275342108497e-06,
2802
+ "loss": 0.9276,
2803
+ "step": 399
2804
+ },
2805
+ {
2806
+ "epoch": 0.8492569002123143,
2807
+ "grad_norm": 0.5235132713958444,
2808
+ "learning_rate": 1.8798526516280873e-06,
2809
+ "loss": 0.982,
2810
+ "step": 400
2811
+ },
2812
+ {
2813
+ "epoch": 0.851380042462845,
2814
+ "grad_norm": 0.5791809289796096,
2815
+ "learning_rate": 1.8290780307090893e-06,
2816
+ "loss": 0.9705,
2817
+ "step": 401
2818
+ },
2819
+ {
2820
+ "epoch": 0.8535031847133758,
2821
+ "grad_norm": 0.5472732839017603,
2822
+ "learning_rate": 1.7789539873634465e-06,
2823
+ "loss": 0.8861,
2824
+ "step": 402
2825
+ },
2826
+ {
2827
+ "epoch": 0.8556263269639066,
2828
+ "grad_norm": 0.5337802205731331,
2829
+ "learning_rate": 1.7294829974678338e-06,
2830
+ "loss": 0.9718,
2831
+ "step": 403
2832
+ },
2833
+ {
2834
+ "epoch": 0.8577494692144374,
2835
+ "grad_norm": 0.4961616533163996,
2836
+ "learning_rate": 1.6806675046413523e-06,
2837
+ "loss": 0.9298,
2838
+ "step": 404
2839
+ },
2840
+ {
2841
+ "epoch": 0.8598726114649682,
2842
+ "grad_norm": 0.5153845139562472,
2843
+ "learning_rate": 1.6325099201248434e-06,
2844
+ "loss": 0.9034,
2845
+ "step": 405
2846
+ },
2847
+ {
2848
+ "epoch": 0.861995753715499,
2849
+ "grad_norm": 0.5218172282337198,
2850
+ "learning_rate": 1.5850126226617611e-06,
2851
+ "loss": 0.9617,
2852
+ "step": 406
2853
+ },
2854
+ {
2855
+ "epoch": 0.8641188959660298,
2856
+ "grad_norm": 0.5285316346557032,
2857
+ "learning_rate": 1.538177958380692e-06,
2858
+ "loss": 0.9333,
2859
+ "step": 407
2860
+ },
2861
+ {
2862
+ "epoch": 0.8662420382165605,
2863
+ "grad_norm": 0.5290650405446068,
2864
+ "learning_rate": 1.4920082406794577e-06,
2865
+ "loss": 0.9675,
2866
+ "step": 408
2867
+ },
2868
+ {
2869
+ "epoch": 0.8683651804670913,
2870
+ "grad_norm": 0.5152626273461832,
2871
+ "learning_rate": 1.4465057501108547e-06,
2872
+ "loss": 0.9525,
2873
+ "step": 409
2874
+ },
2875
+ {
2876
+ "epoch": 0.8704883227176221,
2877
+ "grad_norm": 0.5541821991065954,
2878
+ "learning_rate": 1.4016727342700013e-06,
2879
+ "loss": 0.9728,
2880
+ "step": 410
2881
+ },
2882
+ {
2883
+ "epoch": 0.8726114649681529,
2884
+ "grad_norm": 0.5180251216693375,
2885
+ "learning_rate": 1.35751140768331e-06,
2886
+ "loss": 0.9356,
2887
+ "step": 411
2888
+ },
2889
+ {
2890
+ "epoch": 0.8747346072186837,
2891
+ "grad_norm": 0.5315632109606441,
2892
+ "learning_rate": 1.314023951699126e-06,
2893
+ "loss": 0.9481,
2894
+ "step": 412
2895
+ },
2896
+ {
2897
+ "epoch": 0.8768577494692145,
2898
+ "grad_norm": 0.5317476915375534,
2899
+ "learning_rate": 1.2712125143799352e-06,
2900
+ "loss": 0.944,
2901
+ "step": 413
2902
+ },
2903
+ {
2904
+ "epoch": 0.8789808917197452,
2905
+ "grad_norm": 0.5101783632443054,
2906
+ "learning_rate": 1.2290792103963134e-06,
2907
+ "loss": 0.9386,
2908
+ "step": 414
2909
+ },
2910
+ {
2911
+ "epoch": 0.881104033970276,
2912
+ "grad_norm": 0.5161699094910599,
2913
+ "learning_rate": 1.1876261209224315e-06,
2914
+ "loss": 0.9739,
2915
+ "step": 415
2916
+ },
2917
+ {
2918
+ "epoch": 0.8832271762208068,
2919
+ "grad_norm": 0.5069008558918029,
2920
+ "learning_rate": 1.146855293533276e-06,
2921
+ "loss": 0.9697,
2922
+ "step": 416
2923
+ },
2924
+ {
2925
+ "epoch": 0.8853503184713376,
2926
+ "grad_norm": 0.5169934743179082,
2927
+ "learning_rate": 1.1067687421034988e-06,
2928
+ "loss": 0.9522,
2929
+ "step": 417
2930
+ },
2931
+ {
2932
+ "epoch": 0.8874734607218684,
2933
+ "grad_norm": 0.5526064666443606,
2934
+ "learning_rate": 1.0673684467079593e-06,
2935
+ "loss": 0.9658,
2936
+ "step": 418
2937
+ },
2938
+ {
2939
+ "epoch": 0.8895966029723992,
2940
+ "grad_norm": 0.558402647849203,
2941
+ "learning_rate": 1.028656353523888e-06,
2942
+ "loss": 0.8869,
2943
+ "step": 419
2944
+ },
2945
+ {
2946
+ "epoch": 0.89171974522293,
2947
+ "grad_norm": 0.5155561997802292,
2948
+ "learning_rate": 9.906343747347884e-07,
2949
+ "loss": 0.8905,
2950
+ "step": 420
2951
+ },
2952
+ {
2953
+ "epoch": 0.8938428874734607,
2954
+ "grad_norm": 0.5037480840863279,
2955
+ "learning_rate": 9.533043884359616e-07,
2956
+ "loss": 0.9004,
2957
+ "step": 421
2958
+ },
2959
+ {
2960
+ "epoch": 0.8959660297239915,
2961
+ "grad_norm": 0.5310521562339193,
2962
+ "learning_rate": 9.166682385417518e-07,
2963
+ "loss": 0.9336,
2964
+ "step": 422
2965
+ },
2966
+ {
2967
+ "epoch": 0.8980891719745223,
2968
+ "grad_norm": 0.4870982236860482,
2969
+ "learning_rate": 8.807277346944536e-07,
2970
+ "loss": 0.9222,
2971
+ "step": 423
2972
+ },
2973
+ {
2974
+ "epoch": 0.9002123142250531,
2975
+ "grad_norm": 0.560683937579732,
2976
+ "learning_rate": 8.454846521749359e-07,
2977
+ "loss": 0.9421,
2978
+ "step": 424
2979
+ },
2980
+ {
2981
+ "epoch": 0.9023354564755839,
2982
+ "grad_norm": 0.5397196499293764,
2983
+ "learning_rate": 8.109407318149458e-07,
2984
+ "loss": 0.9597,
2985
+ "step": 425
2986
+ },
2987
+ {
2988
+ "epoch": 0.9044585987261147,
2989
+ "grad_norm": 0.5386667740753814,
2990
+ "learning_rate": 7.770976799111173e-07,
2991
+ "loss": 0.9355,
2992
+ "step": 426
2993
+ },
2994
+ {
2995
+ "epoch": 0.9065817409766455,
2996
+ "grad_norm": 0.5256283563805639,
2997
+ "learning_rate": 7.439571681407054e-07,
2998
+ "loss": 0.9276,
2999
+ "step": 427
3000
+ },
3001
+ {
3002
+ "epoch": 0.9087048832271762,
3003
+ "grad_norm": 0.5150091072669828,
3004
+ "learning_rate": 7.115208334789902e-07,
3005
+ "loss": 0.929,
3006
+ "step": 428
3007
+ },
3008
+ {
3009
+ "epoch": 0.910828025477707,
3010
+ "grad_norm": 0.47871606744915557,
3011
+ "learning_rate": 6.797902781184323e-07,
3012
+ "loss": 0.9375,
3013
+ "step": 429
3014
+ },
3015
+ {
3016
+ "epoch": 0.9129511677282378,
3017
+ "grad_norm": 0.5108982128127894,
3018
+ "learning_rate": 6.487670693895303e-07,
3019
+ "loss": 0.9055,
3020
+ "step": 430
3021
+ },
3022
+ {
3023
+ "epoch": 0.9150743099787686,
3024
+ "grad_norm": 0.5129525617567522,
3025
+ "learning_rate": 6.184527396834083e-07,
3026
+ "loss": 0.9465,
3027
+ "step": 431
3028
+ },
3029
+ {
3030
+ "epoch": 0.9171974522292994,
3031
+ "grad_norm": 0.5275723160353611,
3032
+ "learning_rate": 5.888487863761044e-07,
3033
+ "loss": 0.9447,
3034
+ "step": 432
3035
+ },
3036
+ {
3037
+ "epoch": 0.9193205944798302,
3038
+ "grad_norm": 0.4945517459629921,
3039
+ "learning_rate": 5.599566717546351e-07,
3040
+ "loss": 0.9416,
3041
+ "step": 433
3042
+ },
3043
+ {
3044
+ "epoch": 0.921443736730361,
3045
+ "grad_norm": 0.5278346054176051,
3046
+ "learning_rate": 5.317778229447412e-07,
3047
+ "loss": 0.9072,
3048
+ "step": 434
3049
+ },
3050
+ {
3051
+ "epoch": 0.9235668789808917,
3052
+ "grad_norm": 0.4860681928212429,
3053
+ "learning_rate": 5.043136318404129e-07,
3054
+ "loss": 0.8765,
3055
+ "step": 435
3056
+ },
3057
+ {
3058
+ "epoch": 0.9256900212314225,
3059
+ "grad_norm": 0.5135706402057871,
3060
+ "learning_rate": 4.775654550351194e-07,
3061
+ "loss": 0.9753,
3062
+ "step": 436
3063
+ },
3064
+ {
3065
+ "epoch": 0.9278131634819533,
3066
+ "grad_norm": 0.5260121053711417,
3067
+ "learning_rate": 4.515346137548193e-07,
3068
+ "loss": 0.9039,
3069
+ "step": 437
3070
+ },
3071
+ {
3072
+ "epoch": 0.9299363057324841,
3073
+ "grad_norm": 0.5456543202246997,
3074
+ "learning_rate": 4.2622239379268457e-07,
3075
+ "loss": 0.8885,
3076
+ "step": 438
3077
+ },
3078
+ {
3079
+ "epoch": 0.9320594479830149,
3080
+ "grad_norm": 0.5282444147947248,
3081
+ "learning_rate": 4.016300454455946e-07,
3082
+ "loss": 0.9193,
3083
+ "step": 439
3084
+ },
3085
+ {
3086
+ "epoch": 0.9341825902335457,
3087
+ "grad_norm": 0.5418531883223643,
3088
+ "learning_rate": 3.777587834523788e-07,
3089
+ "loss": 0.9541,
3090
+ "step": 440
3091
+ },
3092
+ {
3093
+ "epoch": 0.9363057324840764,
3094
+ "grad_norm": 0.5087399292427347,
3095
+ "learning_rate": 3.546097869338083e-07,
3096
+ "loss": 0.9162,
3097
+ "step": 441
3098
+ },
3099
+ {
3100
+ "epoch": 0.9384288747346072,
3101
+ "grad_norm": 0.4906370994458251,
3102
+ "learning_rate": 3.3218419933436217e-07,
3103
+ "loss": 0.8623,
3104
+ "step": 442
3105
+ },
3106
+ {
3107
+ "epoch": 0.940552016985138,
3108
+ "grad_norm": 0.5153741738005715,
3109
+ "learning_rate": 3.104831283657378e-07,
3110
+ "loss": 0.9199,
3111
+ "step": 443
3112
+ },
3113
+ {
3114
+ "epoch": 0.9426751592356688,
3115
+ "grad_norm": 0.5175526473310568,
3116
+ "learning_rate": 2.8950764595214284e-07,
3117
+ "loss": 0.891,
3118
+ "step": 444
3119
+ },
3120
+ {
3121
+ "epoch": 0.9447983014861996,
3122
+ "grad_norm": 0.5274728670609353,
3123
+ "learning_rate": 2.6925878817734786e-07,
3124
+ "loss": 0.929,
3125
+ "step": 445
3126
+ },
3127
+ {
3128
+ "epoch": 0.9469214437367304,
3129
+ "grad_norm": 0.5510020089756117,
3130
+ "learning_rate": 2.4973755523349684e-07,
3131
+ "loss": 0.9207,
3132
+ "step": 446
3133
+ },
3134
+ {
3135
+ "epoch": 0.9490445859872612,
3136
+ "grad_norm": 0.5452919257619138,
3137
+ "learning_rate": 2.3094491137172046e-07,
3138
+ "loss": 0.9215,
3139
+ "step": 447
3140
+ },
3141
+ {
3142
+ "epoch": 0.9511677282377919,
3143
+ "grad_norm": 0.4989565927307046,
3144
+ "learning_rate": 2.128817848544956e-07,
3145
+ "loss": 0.9364,
3146
+ "step": 448
3147
+ },
3148
+ {
3149
+ "epoch": 0.9532908704883227,
3150
+ "grad_norm": 0.49733089547176756,
3151
+ "learning_rate": 1.955490679097921e-07,
3152
+ "loss": 0.9647,
3153
+ "step": 449
3154
+ },
3155
+ {
3156
+ "epoch": 0.9554140127388535,
3157
+ "grad_norm": 0.5314718507978706,
3158
+ "learning_rate": 1.7894761668701297e-07,
3159
+ "loss": 0.9407,
3160
+ "step": 450
3161
+ },
3162
+ {
3163
+ "epoch": 0.9575371549893843,
3164
+ "grad_norm": 0.5233578815604037,
3165
+ "learning_rate": 1.6307825121469165e-07,
3166
+ "loss": 0.9486,
3167
+ "step": 451
3168
+ },
3169
+ {
3170
+ "epoch": 0.9596602972399151,
3171
+ "grad_norm": 0.5394446108476952,
3172
+ "learning_rate": 1.4794175535999266e-07,
3173
+ "loss": 0.9446,
3174
+ "step": 452
3175
+ },
3176
+ {
3177
+ "epoch": 0.9617834394904459,
3178
+ "grad_norm": 0.5403944209516118,
3179
+ "learning_rate": 1.3353887678999588e-07,
3180
+ "loss": 0.9515,
3181
+ "step": 453
3182
+ },
3183
+ {
3184
+ "epoch": 0.9639065817409767,
3185
+ "grad_norm": 0.4814718907548529,
3186
+ "learning_rate": 1.198703269347612e-07,
3187
+ "loss": 0.9452,
3188
+ "step": 454
3189
+ },
3190
+ {
3191
+ "epoch": 0.9660297239915074,
3192
+ "grad_norm": 0.5267438283654036,
3193
+ "learning_rate": 1.0693678095218484e-07,
3194
+ "loss": 0.9335,
3195
+ "step": 455
3196
+ },
3197
+ {
3198
+ "epoch": 0.9681528662420382,
3199
+ "grad_norm": 0.5007166014022263,
3200
+ "learning_rate": 9.473887769465617e-08,
3201
+ "loss": 0.9017,
3202
+ "step": 456
3203
+ },
3204
+ {
3205
+ "epoch": 0.970276008492569,
3206
+ "grad_norm": 0.4955960410973204,
3207
+ "learning_rate": 8.327721967749779e-08,
3208
+ "loss": 0.891,
3209
+ "step": 457
3210
+ },
3211
+ {
3212
+ "epoch": 0.9723991507430998,
3213
+ "grad_norm": 0.5564203179114615,
3214
+ "learning_rate": 7.255237304920448e-08,
3215
+ "loss": 0.8917,
3216
+ "step": 458
3217
+ },
3218
+ {
3219
+ "epoch": 0.9745222929936306,
3220
+ "grad_norm": 0.522629078249321,
3221
+ "learning_rate": 6.256486756348212e-08,
3222
+ "loss": 0.9278,
3223
+ "step": 459
3224
+ },
3225
+ {
3226
+ "epoch": 0.9766454352441614,
3227
+ "grad_norm": 0.5165538019449568,
3228
+ "learning_rate": 5.331519655307371e-08,
3229
+ "loss": 0.9608,
3230
+ "step": 460
3231
+ },
3232
+ {
3233
+ "epoch": 0.9787685774946921,
3234
+ "grad_norm": 0.5160598267580098,
3235
+ "learning_rate": 4.4803816905397147e-08,
3236
+ "loss": 0.9291,
3237
+ "step": 461
3238
+ },
3239
+ {
3240
+ "epoch": 0.9808917197452229,
3241
+ "grad_norm": 0.5438197694625472,
3242
+ "learning_rate": 3.7031149039971624e-08,
3243
+ "loss": 0.9563,
3244
+ "step": 462
3245
+ },
3246
+ {
3247
+ "epoch": 0.9830148619957537,
3248
+ "grad_norm": 0.5181344718101011,
3249
+ "learning_rate": 2.9997576887660915e-08,
3250
+ "loss": 0.8855,
3251
+ "step": 463
3252
+ },
3253
+ {
3254
+ "epoch": 0.9851380042462845,
3255
+ "grad_norm": 0.5431722389214804,
3256
+ "learning_rate": 2.3703447871698538e-08,
3257
+ "loss": 0.9591,
3258
+ "step": 464
3259
+ },
3260
+ {
3261
+ "epoch": 0.9872611464968153,
3262
+ "grad_norm": 0.5187571644495663,
3263
+ "learning_rate": 1.814907289052814e-08,
3264
+ "loss": 0.9953,
3265
+ "step": 465
3266
+ },
3267
+ {
3268
+ "epoch": 0.9893842887473461,
3269
+ "grad_norm": 0.5927364512159669,
3270
+ "learning_rate": 1.3334726302454136e-08,
3271
+ "loss": 0.9342,
3272
+ "step": 466
3273
+ },
3274
+ {
3275
+ "epoch": 0.9915074309978769,
3276
+ "grad_norm": 0.5096371256028509,
3277
+ "learning_rate": 9.260645912084198e-09,
3278
+ "loss": 0.9076,
3279
+ "step": 467
3280
+ },
3281
+ {
3282
+ "epoch": 0.9936305732484076,
3283
+ "grad_norm": 0.4981275603649081,
3284
+ "learning_rate": 5.927032958580325e-09,
3285
+ "loss": 0.9197,
3286
+ "step": 468
3287
+ },
3288
+ {
3289
+ "epoch": 0.9957537154989384,
3290
+ "grad_norm": 0.4782521123129465,
3291
+ "learning_rate": 3.3340521057284577e-09,
3292
+ "loss": 0.9014,
3293
+ "step": 469
3294
+ },
3295
+ {
3296
+ "epoch": 0.9978768577494692,
3297
+ "grad_norm": 0.5314495327090503,
3298
+ "learning_rate": 1.4818314337916584e-09,
3299
+ "loss": 0.9241,
3300
+ "step": 470
3301
+ },
3302
+ {
3303
+ "epoch": 1.0,
3304
+ "grad_norm": 0.4933970721941701,
3305
+ "learning_rate": 3.704624331951623e-10,
3306
+ "loss": 0.9263,
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:cd681504643138a679e55133a50cd258b4e3cf9ca5f57dfb9fcdc5045782b5d3
3
+ size 8017
vocab.json ADDED
The diff for this file is too large to render. See raw diff