Lite-Coder commited on
Commit
030e687
·
verified ·
1 Parent(s): b82954b

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,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- for message in messages %}
18
+ {%- if message.content is string %}
19
+ {%- set content = message.content %}
20
+ {%- else %}
21
+ {%- set content = '' %}
22
+ {%- endif %}
23
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
24
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
25
+ {%- elif message.role == "assistant" %}
26
+ {{- '<|im_start|>' + message.role + '\n' + content }}
27
+ {%- if message.tool_calls %}
28
+ {%- for tool_call in message.tool_calls %}
29
+ {%- if (loop.first and content) or (not loop.first) %}
30
+ {{- '\n' }}
31
+ {%- endif %}
32
+ {%- if tool_call.function %}
33
+ {%- set tool_call = tool_call.function %}
34
+ {%- endif %}
35
+ {{- '<tool_call>\n{"name": "' }}
36
+ {{- tool_call.name }}
37
+ {{- '", "arguments": ' }}
38
+ {%- if tool_call.arguments is string %}
39
+ {{- tool_call.arguments }}
40
+ {%- else %}
41
+ {{- tool_call.arguments | tojson }}
42
+ {%- endif %}
43
+ {{- '}\n</tool_call>' }}
44
+ {%- endfor %}
45
+ {%- endif %}
46
+ {{- '<|im_end|>\n' }}
47
+ {%- elif message.role == "tool" %}
48
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
49
+ {{- '<|im_start|>user' }}
50
+ {%- endif %}
51
+ {{- '\n<tool_response>\n' }}
52
+ {{- content }}
53
+ {{- '\n</tool_response>' }}
54
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
55
+ {{- '<|im_end|>\n' }}
56
+ {%- endif %}
57
+ {%- endif %}
58
+ {%- endfor %}
59
+ {%- if add_generation_prompt %}
60
+ {{- '<|im_start|>assistant\n' }}
61
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3MoeForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151644,
8
+ "decoder_sparse_step": 1,
9
+ "eos_token_id": 151645,
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": 262144,
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
+ "pad_token_id": 151645,
28
+ "rms_norm_eps": 1e-06,
29
+ "rope_scaling": null,
30
+ "rope_theta": 10000000,
31
+ "router_aux_loss_coef": 0.001,
32
+ "sliding_window": null,
33
+ "tie_word_embeddings": false,
34
+ "torch_dtype": "bfloat16",
35
+ "transformers_version": "4.52.4",
36
+ "use_cache": true,
37
+ "use_sliding_window": false,
38
+ "vocab_size": 151936
39
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151644,
3
+ "do_sample": true,
4
+ "eos_token_id": 151645,
5
+ "pad_token_id": 151643,
6
+ "temperature": 0.7,
7
+ "top_k": 20,
8
+ "top_p": 0.8,
9
+ "transformers_version": "4.52.4"
10
+ }
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:a2db94b3783dec0ade10d45e010bd1c41af6916d5a78b0bcac5ad71212fb81a4
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:a395363d19334a1cd94ad65a7899e4360122899b451211d8ebe392eae7427f03
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:4d872b5d2178c702a9ef7ac611ac1ec26d4b86f6733f9cd57212cd0166996c6f
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:6665c751e86254e3af2aed212af6da5f6a7f4adde08e8f1840605b8da08617b1
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:fa711dcca894ae074c0543b3579f713209a1a35eb5c1844cd9a39dc52b534d84
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:82bc78dc66aef8279ac1f7ba851156fe754caa2bcca5336e6af7ee3fedb3241f
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:4e7255a4dea8d7e8be084d919f7ff5eb3170946b2c46c40a4492abb4ce0635b9
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:1b8403cda24cabb037e4a7d85748bc88ec90361c60fae088fcca501943c04bfc
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:bb62f93ee34830905e5541c1cc025ea963687ec184b380201ba144eaf73d6f5c
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:6cbbe1035d00031373c413d3cec8cb21a607f080178042d30c9bffc3657b21be
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:160946733cabe8c57c74ec5e8a836e335345a92b3502c241a4e458e9065a78c5
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:75cdc9b259cb1aec199044983f93c91811dae1e4a1b10ddf35258bdb761a7789
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:4ec5fddbff519abc8886a12224fbe5623fbd71aad95a1d302c669b96c57d82a4
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,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "bos_token": "<|im_start|>",
18
+ "eos_token": "<|im_end|>",
19
+ "pad_token": "<|im_end|>"
20
+ }
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,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<|im_start|>",
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 1010000,
235
+ "pad_token": "<|im_end|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
trainer_state.json ADDED
@@ -0,0 +1,3739 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 528,
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.005681818181818182,
14
+ "grad_norm": 4.13636899582678,
15
+ "learning_rate": 0.0,
16
+ "loss": 0.427,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.011363636363636364,
21
+ "grad_norm": 5.690904269421442,
22
+ "learning_rate": 2.2727272727272729e-07,
23
+ "loss": 0.4263,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.017045454545454544,
28
+ "grad_norm": 3.8643937954330965,
29
+ "learning_rate": 4.5454545454545457e-07,
30
+ "loss": 0.3878,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.022727272727272728,
35
+ "grad_norm": 3.869278700723408,
36
+ "learning_rate": 6.818181818181818e-07,
37
+ "loss": 0.3965,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.028409090909090908,
42
+ "grad_norm": 4.9499247122631065,
43
+ "learning_rate": 9.090909090909091e-07,
44
+ "loss": 0.5151,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.03409090909090909,
49
+ "grad_norm": 4.008175065559179,
50
+ "learning_rate": 1.1363636363636364e-06,
51
+ "loss": 0.3988,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.03977272727272727,
56
+ "grad_norm": 3.802187440592589,
57
+ "learning_rate": 1.3636363636363636e-06,
58
+ "loss": 0.3982,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.045454545454545456,
63
+ "grad_norm": 3.5944086963537805,
64
+ "learning_rate": 1.590909090909091e-06,
65
+ "loss": 0.4356,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.05113636363636364,
70
+ "grad_norm": 3.300357884289983,
71
+ "learning_rate": 1.8181818181818183e-06,
72
+ "loss": 0.3881,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.056818181818181816,
77
+ "grad_norm": 2.419752440718465,
78
+ "learning_rate": 2.0454545454545457e-06,
79
+ "loss": 0.3891,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.0625,
84
+ "grad_norm": 2.376164291933713,
85
+ "learning_rate": 2.2727272727272728e-06,
86
+ "loss": 0.4075,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.06818181818181818,
91
+ "grad_norm": 1.8451276554587914,
92
+ "learning_rate": 2.5e-06,
93
+ "loss": 0.3605,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.07386363636363637,
98
+ "grad_norm": 1.6725738451562537,
99
+ "learning_rate": 2.7272727272727272e-06,
100
+ "loss": 0.3423,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.07954545454545454,
105
+ "grad_norm": 0.7493280852305411,
106
+ "learning_rate": 2.954545454545455e-06,
107
+ "loss": 0.3163,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.08522727272727272,
112
+ "grad_norm": 0.6405813170837762,
113
+ "learning_rate": 3.181818181818182e-06,
114
+ "loss": 0.3241,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.09090909090909091,
119
+ "grad_norm": 0.6010914848016558,
120
+ "learning_rate": 3.409090909090909e-06,
121
+ "loss": 0.351,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.09659090909090909,
126
+ "grad_norm": 0.49883812733122435,
127
+ "learning_rate": 3.6363636363636366e-06,
128
+ "loss": 0.3153,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.10227272727272728,
133
+ "grad_norm": 0.3797160566248851,
134
+ "learning_rate": 3.863636363636364e-06,
135
+ "loss": 0.3291,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.10795454545454546,
140
+ "grad_norm": 0.6583932591823167,
141
+ "learning_rate": 4.0909090909090915e-06,
142
+ "loss": 0.3324,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.11363636363636363,
147
+ "grad_norm": 0.7109283198888129,
148
+ "learning_rate": 4.3181818181818185e-06,
149
+ "loss": 0.2966,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.11931818181818182,
154
+ "grad_norm": 0.7599768039513521,
155
+ "learning_rate": 4.5454545454545455e-06,
156
+ "loss": 0.3554,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.125,
161
+ "grad_norm": 0.6406620909580979,
162
+ "learning_rate": 4.772727272727273e-06,
163
+ "loss": 0.3214,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.13068181818181818,
168
+ "grad_norm": 0.6002184638663769,
169
+ "learning_rate": 5e-06,
170
+ "loss": 0.3522,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.13636363636363635,
175
+ "grad_norm": 0.5064858699473549,
176
+ "learning_rate": 4.999951815503011e-06,
177
+ "loss": 0.315,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.14204545454545456,
182
+ "grad_norm": 0.4253893803928414,
183
+ "learning_rate": 4.999807263869441e-06,
184
+ "loss": 0.3258,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.14772727272727273,
189
+ "grad_norm": 0.3692592226306194,
190
+ "learning_rate": 4.999566350671405e-06,
191
+ "loss": 0.3332,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.1534090909090909,
196
+ "grad_norm": 0.3351959335334293,
197
+ "learning_rate": 4.999229085195532e-06,
198
+ "loss": 0.3226,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.1590909090909091,
203
+ "grad_norm": 0.3078710542803697,
204
+ "learning_rate": 4.998795480442595e-06,
205
+ "loss": 0.2877,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.16477272727272727,
210
+ "grad_norm": 0.3717545484104801,
211
+ "learning_rate": 4.998265553127013e-06,
212
+ "loss": 0.2903,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.17045454545454544,
217
+ "grad_norm": 0.3050884065792019,
218
+ "learning_rate": 4.997639323676214e-06,
219
+ "loss": 0.2902,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.17613636363636365,
224
+ "grad_norm": 0.3009538798031033,
225
+ "learning_rate": 4.996916816229838e-06,
226
+ "loss": 0.2978,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.18181818181818182,
231
+ "grad_norm": 0.34861390917413415,
232
+ "learning_rate": 4.99609805863881e-06,
233
+ "loss": 0.2778,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.1875,
238
+ "grad_norm": 0.2884008619731284,
239
+ "learning_rate": 4.995183082464269e-06,
240
+ "loss": 0.2942,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.19318181818181818,
245
+ "grad_norm": 0.2901730865490431,
246
+ "learning_rate": 4.994171922976349e-06,
247
+ "loss": 0.2987,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.19886363636363635,
252
+ "grad_norm": 0.29290478785731666,
253
+ "learning_rate": 4.993064619152818e-06,
254
+ "loss": 0.3209,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.20454545454545456,
259
+ "grad_norm": 0.35688808962883994,
260
+ "learning_rate": 4.991861213677578e-06,
261
+ "loss": 0.2962,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.21022727272727273,
266
+ "grad_norm": 0.24675751243710786,
267
+ "learning_rate": 4.99056175293902e-06,
268
+ "loss": 0.2766,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.2159090909090909,
273
+ "grad_norm": 0.3267376051155682,
274
+ "learning_rate": 4.989166287028234e-06,
275
+ "loss": 0.308,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.2215909090909091,
280
+ "grad_norm": 0.22493166793665828,
281
+ "learning_rate": 4.987674869737078e-06,
282
+ "loss": 0.2742,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.22727272727272727,
287
+ "grad_norm": 0.5317875361368901,
288
+ "learning_rate": 4.986087558556104e-06,
289
+ "loss": 0.2888,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.23295454545454544,
294
+ "grad_norm": 0.29801026545030884,
295
+ "learning_rate": 4.984404414672346e-06,
296
+ "loss": 0.2924,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.23863636363636365,
301
+ "grad_norm": 0.25799269953369336,
302
+ "learning_rate": 4.9826255029669575e-06,
303
+ "loss": 0.2816,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.24431818181818182,
308
+ "grad_norm": 0.22240409365014543,
309
+ "learning_rate": 4.980750892012711e-06,
310
+ "loss": 0.2758,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.25,
315
+ "grad_norm": 0.2799907974670139,
316
+ "learning_rate": 4.978780654071355e-06,
317
+ "loss": 0.3098,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.2556818181818182,
322
+ "grad_norm": 0.28876080918518277,
323
+ "learning_rate": 4.976714865090827e-06,
324
+ "loss": 0.2802,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.26136363636363635,
329
+ "grad_norm": 0.24583878016647032,
330
+ "learning_rate": 4.974553604702332e-06,
331
+ "loss": 0.3026,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.26704545454545453,
336
+ "grad_norm": 0.2656598065177574,
337
+ "learning_rate": 4.972296956217265e-06,
338
+ "loss": 0.2961,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.2727272727272727,
343
+ "grad_norm": 0.21012707248222598,
344
+ "learning_rate": 4.969945006624003e-06,
345
+ "loss": 0.2861,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.2784090909090909,
350
+ "grad_norm": 0.2943742503501893,
351
+ "learning_rate": 4.967497846584552e-06,
352
+ "loss": 0.2948,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.2840909090909091,
357
+ "grad_norm": 0.20799525994994228,
358
+ "learning_rate": 4.9649555704310545e-06,
359
+ "loss": 0.3063,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.2897727272727273,
364
+ "grad_norm": 0.3249940372924672,
365
+ "learning_rate": 4.962318276162148e-06,
366
+ "loss": 0.2503,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.29545454545454547,
371
+ "grad_norm": 0.3426841066756318,
372
+ "learning_rate": 4.959586065439189e-06,
373
+ "loss": 0.2914,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.30113636363636365,
378
+ "grad_norm": 0.22855678787775643,
379
+ "learning_rate": 4.956759043582339e-06,
380
+ "loss": 0.2823,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.3068181818181818,
385
+ "grad_norm": 0.247964442806115,
386
+ "learning_rate": 4.953837319566498e-06,
387
+ "loss": 0.2796,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.3125,
392
+ "grad_norm": 0.2332518969431367,
393
+ "learning_rate": 4.950821006017107e-06,
394
+ "loss": 0.2611,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.3181818181818182,
399
+ "grad_norm": 0.21011622253491574,
400
+ "learning_rate": 4.947710219205808e-06,
401
+ "loss": 0.2738,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.32386363636363635,
406
+ "grad_norm": 0.3365637065974888,
407
+ "learning_rate": 4.9445050790459585e-06,
408
+ "loss": 0.2984,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.32954545454545453,
413
+ "grad_norm": 0.2539746858405654,
414
+ "learning_rate": 4.9412057090880115e-06,
415
+ "loss": 0.2725,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.3352272727272727,
420
+ "grad_norm": 0.3967914747485111,
421
+ "learning_rate": 4.937812236514754e-06,
422
+ "loss": 0.2752,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.3409090909090909,
427
+ "grad_norm": 0.2392453733971367,
428
+ "learning_rate": 4.9343247921364e-06,
429
+ "loss": 0.2608,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.3465909090909091,
434
+ "grad_norm": 0.24816417648181116,
435
+ "learning_rate": 4.930743510385551e-06,
436
+ "loss": 0.2968,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.3522727272727273,
441
+ "grad_norm": 0.19303548298632028,
442
+ "learning_rate": 4.927068529312017e-06,
443
+ "loss": 0.2766,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.35795454545454547,
448
+ "grad_norm": 0.31205417275979963,
449
+ "learning_rate": 4.923299990577488e-06,
450
+ "loss": 0.2646,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.36363636363636365,
455
+ "grad_norm": 0.27131751442758495,
456
+ "learning_rate": 4.919438039450079e-06,
457
+ "loss": 0.294,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.3693181818181818,
462
+ "grad_norm": 0.22222852606773144,
463
+ "learning_rate": 4.915482824798728e-06,
464
+ "loss": 0.2781,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.375,
469
+ "grad_norm": 0.2118792282893684,
470
+ "learning_rate": 4.911434499087457e-06,
471
+ "loss": 0.2741,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.3806818181818182,
476
+ "grad_norm": 0.5758672380246893,
477
+ "learning_rate": 4.907293218369499e-06,
478
+ "loss": 0.2896,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.38636363636363635,
483
+ "grad_norm": 0.20085333233060845,
484
+ "learning_rate": 4.903059142281273e-06,
485
+ "loss": 0.2884,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.39204545454545453,
490
+ "grad_norm": 0.2654667792604945,
491
+ "learning_rate": 4.8987324340362445e-06,
492
+ "loss": 0.2972,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.3977272727272727,
497
+ "grad_norm": 0.19331704344701295,
498
+ "learning_rate": 4.894313260418617e-06,
499
+ "loss": 0.2667,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.4034090909090909,
504
+ "grad_norm": 0.2171929345597126,
505
+ "learning_rate": 4.889801791776921e-06,
506
+ "loss": 0.2781,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.4090909090909091,
511
+ "grad_norm": 0.2684319221291861,
512
+ "learning_rate": 4.885198202017431e-06,
513
+ "loss": 0.282,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.4147727272727273,
518
+ "grad_norm": 0.23776136068594306,
519
+ "learning_rate": 4.880502668597475e-06,
520
+ "loss": 0.2863,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.42045454545454547,
525
+ "grad_norm": 0.2198068186762879,
526
+ "learning_rate": 4.875715372518585e-06,
527
+ "loss": 0.2791,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.42613636363636365,
532
+ "grad_norm": 0.21520734900564198,
533
+ "learning_rate": 4.870836498319523e-06,
534
+ "loss": 0.2857,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.4318181818181818,
539
+ "grad_norm": 0.43054319607393365,
540
+ "learning_rate": 4.865866234069169e-06,
541
+ "loss": 0.2907,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.4375,
546
+ "grad_norm": 0.26218468258954264,
547
+ "learning_rate": 4.86080477135927e-06,
548
+ "loss": 0.2798,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.4431818181818182,
553
+ "grad_norm": 0.24308410366408476,
554
+ "learning_rate": 4.855652305297052e-06,
555
+ "loss": 0.2886,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.44886363636363635,
560
+ "grad_norm": 0.17664891091831125,
561
+ "learning_rate": 4.8504090344977036e-06,
562
+ "loss": 0.2511,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.45454545454545453,
567
+ "grad_norm": 0.197319451098218,
568
+ "learning_rate": 4.84507516107672e-06,
569
+ "loss": 0.2749,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.4602272727272727,
574
+ "grad_norm": 0.6302897592568023,
575
+ "learning_rate": 4.839650890642104e-06,
576
+ "loss": 0.2869,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.4659090909090909,
581
+ "grad_norm": 0.23377209749002553,
582
+ "learning_rate": 4.834136432286452e-06,
583
+ "loss": 0.2939,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.4715909090909091,
588
+ "grad_norm": 0.25817574948385447,
589
+ "learning_rate": 4.828531998578885e-06,
590
+ "loss": 0.2802,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.4772727272727273,
595
+ "grad_norm": 0.27536793241671365,
596
+ "learning_rate": 4.822837805556858e-06,
597
+ "loss": 0.289,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.48295454545454547,
602
+ "grad_norm": 0.25733930454992526,
603
+ "learning_rate": 4.817054072717833e-06,
604
+ "loss": 0.2574,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.48863636363636365,
609
+ "grad_norm": 0.19536546286609527,
610
+ "learning_rate": 4.811181023010815e-06,
611
+ "loss": 0.2692,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.4943181818181818,
616
+ "grad_norm": 0.227177625973573,
617
+ "learning_rate": 4.805218882827761e-06,
618
+ "loss": 0.254,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.5,
623
+ "grad_norm": 0.22612797471836377,
624
+ "learning_rate": 4.799167881994852e-06,
625
+ "loss": 0.2716,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.5056818181818182,
630
+ "grad_norm": 0.3023768741873149,
631
+ "learning_rate": 4.793028253763633e-06,
632
+ "loss": 0.2911,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.5113636363636364,
637
+ "grad_norm": 0.22087623835911116,
638
+ "learning_rate": 4.786800234802022e-06,
639
+ "loss": 0.2821,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.5170454545454546,
644
+ "grad_norm": 0.21731422655095442,
645
+ "learning_rate": 4.780484065185188e-06,
646
+ "loss": 0.2695,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.5227272727272727,
651
+ "grad_norm": 0.2979687908352143,
652
+ "learning_rate": 4.7740799883862966e-06,
653
+ "loss": 0.2956,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.5284090909090909,
658
+ "grad_norm": 0.24392237794403746,
659
+ "learning_rate": 4.767588251267121e-06,
660
+ "loss": 0.2448,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.5340909090909091,
665
+ "grad_norm": 0.49788496215188893,
666
+ "learning_rate": 4.761009104068533e-06,
667
+ "loss": 0.2829,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.5397727272727273,
672
+ "grad_norm": 0.18919038139111577,
673
+ "learning_rate": 4.754342800400852e-06,
674
+ "loss": 0.2617,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.5454545454545454,
679
+ "grad_norm": 0.2422601005721465,
680
+ "learning_rate": 4.747589597234068e-06,
681
+ "loss": 0.2511,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.5511363636363636,
686
+ "grad_norm": 0.22463058582826498,
687
+ "learning_rate": 4.740749754887939e-06,
688
+ "loss": 0.2551,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.5568181818181818,
693
+ "grad_norm": 0.24946343736182136,
694
+ "learning_rate": 4.7338235370219556e-06,
695
+ "loss": 0.2568,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.5625,
700
+ "grad_norm": 0.22126538984664773,
701
+ "learning_rate": 4.726811210625176e-06,
702
+ "loss": 0.245,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.5681818181818182,
707
+ "grad_norm": 0.20738868709242012,
708
+ "learning_rate": 4.7197130460059385e-06,
709
+ "loss": 0.2622,
710
+ "step": 100
711
+ },
712
+ {
713
+ "epoch": 0.5738636363636364,
714
+ "grad_norm": 0.2683170690250489,
715
+ "learning_rate": 4.712529316781435e-06,
716
+ "loss": 0.2514,
717
+ "step": 101
718
+ },
719
+ {
720
+ "epoch": 0.5795454545454546,
721
+ "grad_norm": 0.23542588925837882,
722
+ "learning_rate": 4.705260299867169e-06,
723
+ "loss": 0.2845,
724
+ "step": 102
725
+ },
726
+ {
727
+ "epoch": 0.5852272727272727,
728
+ "grad_norm": 0.24502311943242538,
729
+ "learning_rate": 4.697906275466279e-06,
730
+ "loss": 0.2776,
731
+ "step": 103
732
+ },
733
+ {
734
+ "epoch": 0.5909090909090909,
735
+ "grad_norm": 0.20760065932738048,
736
+ "learning_rate": 4.69046752705874e-06,
737
+ "loss": 0.2466,
738
+ "step": 104
739
+ },
740
+ {
741
+ "epoch": 0.5965909090909091,
742
+ "grad_norm": 0.20102638793251298,
743
+ "learning_rate": 4.682944341390431e-06,
744
+ "loss": 0.2525,
745
+ "step": 105
746
+ },
747
+ {
748
+ "epoch": 0.6022727272727273,
749
+ "grad_norm": 0.2065096502849592,
750
+ "learning_rate": 4.675337008462085e-06,
751
+ "loss": 0.2868,
752
+ "step": 106
753
+ },
754
+ {
755
+ "epoch": 0.6079545454545454,
756
+ "grad_norm": 0.2508016307640096,
757
+ "learning_rate": 4.667645821518111e-06,
758
+ "loss": 0.3024,
759
+ "step": 107
760
+ },
761
+ {
762
+ "epoch": 0.6136363636363636,
763
+ "grad_norm": 0.21666808347183772,
764
+ "learning_rate": 4.659871077035289e-06,
765
+ "loss": 0.2734,
766
+ "step": 108
767
+ },
768
+ {
769
+ "epoch": 0.6193181818181818,
770
+ "grad_norm": 0.23182976627931445,
771
+ "learning_rate": 4.65201307471134e-06,
772
+ "loss": 0.2647,
773
+ "step": 109
774
+ },
775
+ {
776
+ "epoch": 0.625,
777
+ "grad_norm": 0.20981496328273563,
778
+ "learning_rate": 4.644072117453377e-06,
779
+ "loss": 0.2754,
780
+ "step": 110
781
+ },
782
+ {
783
+ "epoch": 0.6306818181818182,
784
+ "grad_norm": 0.26326725184511524,
785
+ "learning_rate": 4.636048511366222e-06,
786
+ "loss": 0.2919,
787
+ "step": 111
788
+ },
789
+ {
790
+ "epoch": 0.6363636363636364,
791
+ "grad_norm": 0.262563807536366,
792
+ "learning_rate": 4.6279425657406154e-06,
793
+ "loss": 0.2926,
794
+ "step": 112
795
+ },
796
+ {
797
+ "epoch": 0.6420454545454546,
798
+ "grad_norm": 0.19306379242380328,
799
+ "learning_rate": 4.619754593041287e-06,
800
+ "loss": 0.2881,
801
+ "step": 113
802
+ },
803
+ {
804
+ "epoch": 0.6477272727272727,
805
+ "grad_norm": 0.26239388814091164,
806
+ "learning_rate": 4.6114849088949146e-06,
807
+ "loss": 0.2784,
808
+ "step": 114
809
+ },
810
+ {
811
+ "epoch": 0.6534090909090909,
812
+ "grad_norm": 0.2843429012137256,
813
+ "learning_rate": 4.603133832077953e-06,
814
+ "loss": 0.2596,
815
+ "step": 115
816
+ },
817
+ {
818
+ "epoch": 0.6590909090909091,
819
+ "grad_norm": 0.21245751576381866,
820
+ "learning_rate": 4.594701684504352e-06,
821
+ "loss": 0.2398,
822
+ "step": 116
823
+ },
824
+ {
825
+ "epoch": 0.6647727272727273,
826
+ "grad_norm": 0.22787695260596558,
827
+ "learning_rate": 4.586188791213143e-06,
828
+ "loss": 0.2711,
829
+ "step": 117
830
+ },
831
+ {
832
+ "epoch": 0.6704545454545454,
833
+ "grad_norm": 0.3818816711935563,
834
+ "learning_rate": 4.577595480355911e-06,
835
+ "loss": 0.2661,
836
+ "step": 118
837
+ },
838
+ {
839
+ "epoch": 0.6761363636363636,
840
+ "grad_norm": 0.23355384107293414,
841
+ "learning_rate": 4.568922083184144e-06,
842
+ "loss": 0.234,
843
+ "step": 119
844
+ },
845
+ {
846
+ "epoch": 0.6818181818181818,
847
+ "grad_norm": 0.18288553831071802,
848
+ "learning_rate": 4.560168934036467e-06,
849
+ "loss": 0.2552,
850
+ "step": 120
851
+ },
852
+ {
853
+ "epoch": 0.6875,
854
+ "grad_norm": 0.24924773346049447,
855
+ "learning_rate": 4.55133637032575e-06,
856
+ "loss": 0.2653,
857
+ "step": 121
858
+ },
859
+ {
860
+ "epoch": 0.6931818181818182,
861
+ "grad_norm": 0.20852872060779476,
862
+ "learning_rate": 4.542424732526105e-06,
863
+ "loss": 0.2505,
864
+ "step": 122
865
+ },
866
+ {
867
+ "epoch": 0.6988636363636364,
868
+ "grad_norm": 0.24118571168870664,
869
+ "learning_rate": 4.533434364159761e-06,
870
+ "loss": 0.2399,
871
+ "step": 123
872
+ },
873
+ {
874
+ "epoch": 0.7045454545454546,
875
+ "grad_norm": 0.20144416490181125,
876
+ "learning_rate": 4.524365611783818e-06,
877
+ "loss": 0.2417,
878
+ "step": 124
879
+ },
880
+ {
881
+ "epoch": 0.7102272727272727,
882
+ "grad_norm": 0.2262954076430847,
883
+ "learning_rate": 4.515218824976895e-06,
884
+ "loss": 0.2672,
885
+ "step": 125
886
+ },
887
+ {
888
+ "epoch": 0.7159090909090909,
889
+ "grad_norm": 0.20857659711513643,
890
+ "learning_rate": 4.505994356325648e-06,
891
+ "loss": 0.2413,
892
+ "step": 126
893
+ },
894
+ {
895
+ "epoch": 0.7215909090909091,
896
+ "grad_norm": 0.1840485932451498,
897
+ "learning_rate": 4.496692561411182e-06,
898
+ "loss": 0.2431,
899
+ "step": 127
900
+ },
901
+ {
902
+ "epoch": 0.7272727272727273,
903
+ "grad_norm": 0.21559446578225816,
904
+ "learning_rate": 4.487313798795347e-06,
905
+ "loss": 0.2266,
906
+ "step": 128
907
+ },
908
+ {
909
+ "epoch": 0.7329545454545454,
910
+ "grad_norm": 0.31855427106346423,
911
+ "learning_rate": 4.477858430006906e-06,
912
+ "loss": 0.2578,
913
+ "step": 129
914
+ },
915
+ {
916
+ "epoch": 0.7386363636363636,
917
+ "grad_norm": 0.2327594094385503,
918
+ "learning_rate": 4.468326819527613e-06,
919
+ "loss": 0.2493,
920
+ "step": 130
921
+ },
922
+ {
923
+ "epoch": 0.7443181818181818,
924
+ "grad_norm": 0.27069782646168544,
925
+ "learning_rate": 4.458719334778153e-06,
926
+ "loss": 0.2853,
927
+ "step": 131
928
+ },
929
+ {
930
+ "epoch": 0.75,
931
+ "grad_norm": 0.20290888911590216,
932
+ "learning_rate": 4.449036346103982e-06,
933
+ "loss": 0.2525,
934
+ "step": 132
935
+ },
936
+ {
937
+ "epoch": 0.7556818181818182,
938
+ "grad_norm": 0.38497870978848986,
939
+ "learning_rate": 4.43927822676105e-06,
940
+ "loss": 0.2573,
941
+ "step": 133
942
+ },
943
+ {
944
+ "epoch": 0.7613636363636364,
945
+ "grad_norm": 0.2134895810331637,
946
+ "learning_rate": 4.429445352901415e-06,
947
+ "loss": 0.2681,
948
+ "step": 134
949
+ },
950
+ {
951
+ "epoch": 0.7670454545454546,
952
+ "grad_norm": 0.18517860586217338,
953
+ "learning_rate": 4.419538103558742e-06,
954
+ "loss": 0.2199,
955
+ "step": 135
956
+ },
957
+ {
958
+ "epoch": 0.7727272727272727,
959
+ "grad_norm": 0.30958029717950675,
960
+ "learning_rate": 4.409556860633692e-06,
961
+ "loss": 0.2784,
962
+ "step": 136
963
+ },
964
+ {
965
+ "epoch": 0.7784090909090909,
966
+ "grad_norm": 0.21154899257882034,
967
+ "learning_rate": 4.3995020088792e-06,
968
+ "loss": 0.2684,
969
+ "step": 137
970
+ },
971
+ {
972
+ "epoch": 0.7840909090909091,
973
+ "grad_norm": 0.23099439084231488,
974
+ "learning_rate": 4.3893739358856465e-06,
975
+ "loss": 0.3017,
976
+ "step": 138
977
+ },
978
+ {
979
+ "epoch": 0.7897727272727273,
980
+ "grad_norm": 0.2319823375879864,
981
+ "learning_rate": 4.379173032065912e-06,
982
+ "loss": 0.2368,
983
+ "step": 139
984
+ },
985
+ {
986
+ "epoch": 0.7954545454545454,
987
+ "grad_norm": 0.36801732527860587,
988
+ "learning_rate": 4.368899690640333e-06,
989
+ "loss": 0.2699,
990
+ "step": 140
991
+ },
992
+ {
993
+ "epoch": 0.8011363636363636,
994
+ "grad_norm": 0.23529268911329576,
995
+ "learning_rate": 4.3585543076215405e-06,
996
+ "loss": 0.2698,
997
+ "step": 141
998
+ },
999
+ {
1000
+ "epoch": 0.8068181818181818,
1001
+ "grad_norm": 0.2184490414418197,
1002
+ "learning_rate": 4.3481372817991976e-06,
1003
+ "loss": 0.2631,
1004
+ "step": 142
1005
+ },
1006
+ {
1007
+ "epoch": 0.8125,
1008
+ "grad_norm": 0.439487873206488,
1009
+ "learning_rate": 4.3376490147246205e-06,
1010
+ "loss": 0.2673,
1011
+ "step": 143
1012
+ },
1013
+ {
1014
+ "epoch": 0.8181818181818182,
1015
+ "grad_norm": 0.26855989609963915,
1016
+ "learning_rate": 4.32708991069531e-06,
1017
+ "loss": 0.2698,
1018
+ "step": 144
1019
+ },
1020
+ {
1021
+ "epoch": 0.8238636363636364,
1022
+ "grad_norm": 0.3543130370224819,
1023
+ "learning_rate": 4.31646037673936e-06,
1024
+ "loss": 0.2627,
1025
+ "step": 145
1026
+ },
1027
+ {
1028
+ "epoch": 0.8295454545454546,
1029
+ "grad_norm": 0.20174717662069117,
1030
+ "learning_rate": 4.305760822599766e-06,
1031
+ "loss": 0.2806,
1032
+ "step": 146
1033
+ },
1034
+ {
1035
+ "epoch": 0.8352272727272727,
1036
+ "grad_norm": 0.21956421754738986,
1037
+ "learning_rate": 4.294991660718636e-06,
1038
+ "loss": 0.2592,
1039
+ "step": 147
1040
+ },
1041
+ {
1042
+ "epoch": 0.8409090909090909,
1043
+ "grad_norm": 0.2101546633291597,
1044
+ "learning_rate": 4.284153306221289e-06,
1045
+ "loss": 0.272,
1046
+ "step": 148
1047
+ },
1048
+ {
1049
+ "epoch": 0.8465909090909091,
1050
+ "grad_norm": 0.20128651667264633,
1051
+ "learning_rate": 4.273246176900252e-06,
1052
+ "loss": 0.236,
1053
+ "step": 149
1054
+ },
1055
+ {
1056
+ "epoch": 0.8522727272727273,
1057
+ "grad_norm": 0.24737021101483003,
1058
+ "learning_rate": 4.262270693199159e-06,
1059
+ "loss": 0.2634,
1060
+ "step": 150
1061
+ },
1062
+ {
1063
+ "epoch": 0.8579545454545454,
1064
+ "grad_norm": 0.22448605023421997,
1065
+ "learning_rate": 4.2512272781965355e-06,
1066
+ "loss": 0.2438,
1067
+ "step": 151
1068
+ },
1069
+ {
1070
+ "epoch": 0.8636363636363636,
1071
+ "grad_norm": 0.34900609419270606,
1072
+ "learning_rate": 4.240116357589502e-06,
1073
+ "loss": 0.2514,
1074
+ "step": 152
1075
+ },
1076
+ {
1077
+ "epoch": 0.8693181818181818,
1078
+ "grad_norm": 0.1935622280843455,
1079
+ "learning_rate": 4.228938359677354e-06,
1080
+ "loss": 0.2388,
1081
+ "step": 153
1082
+ },
1083
+ {
1084
+ "epoch": 0.875,
1085
+ "grad_norm": 0.25773072503962624,
1086
+ "learning_rate": 4.217693715345057e-06,
1087
+ "loss": 0.2531,
1088
+ "step": 154
1089
+ },
1090
+ {
1091
+ "epoch": 0.8806818181818182,
1092
+ "grad_norm": 0.22041420459104752,
1093
+ "learning_rate": 4.206382858046636e-06,
1094
+ "loss": 0.2636,
1095
+ "step": 155
1096
+ },
1097
+ {
1098
+ "epoch": 0.8863636363636364,
1099
+ "grad_norm": 0.22347272836568208,
1100
+ "learning_rate": 4.195006223788466e-06,
1101
+ "loss": 0.3136,
1102
+ "step": 156
1103
+ },
1104
+ {
1105
+ "epoch": 0.8920454545454546,
1106
+ "grad_norm": 0.23516522146462165,
1107
+ "learning_rate": 4.183564251112466e-06,
1108
+ "loss": 0.2627,
1109
+ "step": 157
1110
+ },
1111
+ {
1112
+ "epoch": 0.8977272727272727,
1113
+ "grad_norm": 0.2245388610780939,
1114
+ "learning_rate": 4.172057381079196e-06,
1115
+ "loss": 0.2652,
1116
+ "step": 158
1117
+ },
1118
+ {
1119
+ "epoch": 0.9034090909090909,
1120
+ "grad_norm": 0.26988373559964796,
1121
+ "learning_rate": 4.160486057250849e-06,
1122
+ "loss": 0.2557,
1123
+ "step": 159
1124
+ },
1125
+ {
1126
+ "epoch": 0.9090909090909091,
1127
+ "grad_norm": 0.6872792618362236,
1128
+ "learning_rate": 4.148850725674162e-06,
1129
+ "loss": 0.2839,
1130
+ "step": 160
1131
+ },
1132
+ {
1133
+ "epoch": 0.9147727272727273,
1134
+ "grad_norm": 0.20758056768557093,
1135
+ "learning_rate": 4.137151834863213e-06,
1136
+ "loss": 0.2677,
1137
+ "step": 161
1138
+ },
1139
+ {
1140
+ "epoch": 0.9204545454545454,
1141
+ "grad_norm": 0.19698361252403598,
1142
+ "learning_rate": 4.125389835782138e-06,
1143
+ "loss": 0.2611,
1144
+ "step": 162
1145
+ },
1146
+ {
1147
+ "epoch": 0.9261363636363636,
1148
+ "grad_norm": 0.2634401952443913,
1149
+ "learning_rate": 4.113565181827745e-06,
1150
+ "loss": 0.2541,
1151
+ "step": 163
1152
+ },
1153
+ {
1154
+ "epoch": 0.9318181818181818,
1155
+ "grad_norm": 0.22955498966434157,
1156
+ "learning_rate": 4.101678328812035e-06,
1157
+ "loss": 0.2519,
1158
+ "step": 164
1159
+ },
1160
+ {
1161
+ "epoch": 0.9375,
1162
+ "grad_norm": 0.21505253408914526,
1163
+ "learning_rate": 4.0897297349446345e-06,
1164
+ "loss": 0.2366,
1165
+ "step": 165
1166
+ },
1167
+ {
1168
+ "epoch": 0.9431818181818182,
1169
+ "grad_norm": 0.22541600048527471,
1170
+ "learning_rate": 4.077719860815132e-06,
1171
+ "loss": 0.2787,
1172
+ "step": 166
1173
+ },
1174
+ {
1175
+ "epoch": 0.9488636363636364,
1176
+ "grad_norm": 0.2270297479035574,
1177
+ "learning_rate": 4.065649169375324e-06,
1178
+ "loss": 0.2745,
1179
+ "step": 167
1180
+ },
1181
+ {
1182
+ "epoch": 0.9545454545454546,
1183
+ "grad_norm": 0.21939653618157418,
1184
+ "learning_rate": 4.053518125921365e-06,
1185
+ "loss": 0.2381,
1186
+ "step": 168
1187
+ },
1188
+ {
1189
+ "epoch": 0.9602272727272727,
1190
+ "grad_norm": 0.23630408488271606,
1191
+ "learning_rate": 4.041327198075838e-06,
1192
+ "loss": 0.2524,
1193
+ "step": 169
1194
+ },
1195
+ {
1196
+ "epoch": 0.9659090909090909,
1197
+ "grad_norm": 1.0985204504913177,
1198
+ "learning_rate": 4.029076855769722e-06,
1199
+ "loss": 0.2398,
1200
+ "step": 170
1201
+ },
1202
+ {
1203
+ "epoch": 0.9715909090909091,
1204
+ "grad_norm": 0.20401818951431577,
1205
+ "learning_rate": 4.016767571224285e-06,
1206
+ "loss": 0.2618,
1207
+ "step": 171
1208
+ },
1209
+ {
1210
+ "epoch": 0.9772727272727273,
1211
+ "grad_norm": 0.27265229854495676,
1212
+ "learning_rate": 4.0043998189328705e-06,
1213
+ "loss": 0.2384,
1214
+ "step": 172
1215
+ },
1216
+ {
1217
+ "epoch": 0.9829545454545454,
1218
+ "grad_norm": 0.18755154669027838,
1219
+ "learning_rate": 3.991974075642621e-06,
1220
+ "loss": 0.2105,
1221
+ "step": 173
1222
+ },
1223
+ {
1224
+ "epoch": 0.9886363636363636,
1225
+ "grad_norm": 0.23111041332184715,
1226
+ "learning_rate": 3.9794908203360865e-06,
1227
+ "loss": 0.2796,
1228
+ "step": 174
1229
+ },
1230
+ {
1231
+ "epoch": 0.9943181818181818,
1232
+ "grad_norm": 0.22836211042533255,
1233
+ "learning_rate": 3.966950534212769e-06,
1234
+ "loss": 0.2476,
1235
+ "step": 175
1236
+ },
1237
+ {
1238
+ "epoch": 1.0,
1239
+ "grad_norm": 0.25532820133220246,
1240
+ "learning_rate": 3.954353700670573e-06,
1241
+ "loss": 0.2407,
1242
+ "step": 176
1243
+ },
1244
+ {
1245
+ "epoch": 1.0056818181818181,
1246
+ "grad_norm": 0.3070527658349344,
1247
+ "learning_rate": 3.941700805287169e-06,
1248
+ "loss": 0.2739,
1249
+ "step": 177
1250
+ },
1251
+ {
1252
+ "epoch": 1.0113636363636365,
1253
+ "grad_norm": 0.27024017776926557,
1254
+ "learning_rate": 3.9289923358012735e-06,
1255
+ "loss": 0.2906,
1256
+ "step": 178
1257
+ },
1258
+ {
1259
+ "epoch": 1.0170454545454546,
1260
+ "grad_norm": 0.3601678496407945,
1261
+ "learning_rate": 3.9162287820938575e-06,
1262
+ "loss": 0.2576,
1263
+ "step": 179
1264
+ },
1265
+ {
1266
+ "epoch": 1.0227272727272727,
1267
+ "grad_norm": 0.234846494439447,
1268
+ "learning_rate": 3.903410636169252e-06,
1269
+ "loss": 0.2721,
1270
+ "step": 180
1271
+ },
1272
+ {
1273
+ "epoch": 1.0284090909090908,
1274
+ "grad_norm": 0.21894893703936477,
1275
+ "learning_rate": 3.890538392136188e-06,
1276
+ "loss": 0.2204,
1277
+ "step": 181
1278
+ },
1279
+ {
1280
+ "epoch": 1.0340909090909092,
1281
+ "grad_norm": 0.23511239991354554,
1282
+ "learning_rate": 3.877612546188749e-06,
1283
+ "loss": 0.2821,
1284
+ "step": 182
1285
+ },
1286
+ {
1287
+ "epoch": 1.0397727272727273,
1288
+ "grad_norm": 0.26371937696669423,
1289
+ "learning_rate": 3.864633596587242e-06,
1290
+ "loss": 0.2992,
1291
+ "step": 183
1292
+ },
1293
+ {
1294
+ "epoch": 1.0454545454545454,
1295
+ "grad_norm": 0.21822331732453468,
1296
+ "learning_rate": 3.8516020436389945e-06,
1297
+ "loss": 0.2366,
1298
+ "step": 184
1299
+ },
1300
+ {
1301
+ "epoch": 1.0511363636363635,
1302
+ "grad_norm": 0.19304217881994865,
1303
+ "learning_rate": 3.838518389679065e-06,
1304
+ "loss": 0.2236,
1305
+ "step": 185
1306
+ },
1307
+ {
1308
+ "epoch": 1.0568181818181819,
1309
+ "grad_norm": 0.46074983555399596,
1310
+ "learning_rate": 3.825383139050881e-06,
1311
+ "loss": 0.2579,
1312
+ "step": 186
1313
+ },
1314
+ {
1315
+ "epoch": 1.0625,
1316
+ "grad_norm": 0.3864313032500556,
1317
+ "learning_rate": 3.812196798086799e-06,
1318
+ "loss": 0.2604,
1319
+ "step": 187
1320
+ },
1321
+ {
1322
+ "epoch": 1.0681818181818181,
1323
+ "grad_norm": 0.22907818535523758,
1324
+ "learning_rate": 3.798959875088584e-06,
1325
+ "loss": 0.2429,
1326
+ "step": 188
1327
+ },
1328
+ {
1329
+ "epoch": 1.0738636363636365,
1330
+ "grad_norm": 0.4564861968720899,
1331
+ "learning_rate": 3.7856728803078168e-06,
1332
+ "loss": 0.288,
1333
+ "step": 189
1334
+ },
1335
+ {
1336
+ "epoch": 1.0795454545454546,
1337
+ "grad_norm": 0.21128235148404068,
1338
+ "learning_rate": 3.7723363259262253e-06,
1339
+ "loss": 0.2596,
1340
+ "step": 190
1341
+ },
1342
+ {
1343
+ "epoch": 1.0852272727272727,
1344
+ "grad_norm": 0.24544408764038442,
1345
+ "learning_rate": 3.75895072603594e-06,
1346
+ "loss": 0.2966,
1347
+ "step": 191
1348
+ },
1349
+ {
1350
+ "epoch": 1.0909090909090908,
1351
+ "grad_norm": 0.4425637441419803,
1352
+ "learning_rate": 3.7455165966196817e-06,
1353
+ "loss": 0.2813,
1354
+ "step": 192
1355
+ },
1356
+ {
1357
+ "epoch": 1.0965909090909092,
1358
+ "grad_norm": 0.23114254677192722,
1359
+ "learning_rate": 3.732034455530863e-06,
1360
+ "loss": 0.2416,
1361
+ "step": 193
1362
+ },
1363
+ {
1364
+ "epoch": 1.1022727272727273,
1365
+ "grad_norm": 0.5892208013523996,
1366
+ "learning_rate": 3.718504822473634e-06,
1367
+ "loss": 0.2575,
1368
+ "step": 194
1369
+ },
1370
+ {
1371
+ "epoch": 1.1079545454545454,
1372
+ "grad_norm": 0.27120988659913997,
1373
+ "learning_rate": 3.704928218982845e-06,
1374
+ "loss": 0.2483,
1375
+ "step": 195
1376
+ },
1377
+ {
1378
+ "epoch": 1.1136363636363635,
1379
+ "grad_norm": 0.27030517090763195,
1380
+ "learning_rate": 3.6913051684039435e-06,
1381
+ "loss": 0.2869,
1382
+ "step": 196
1383
+ },
1384
+ {
1385
+ "epoch": 1.1193181818181819,
1386
+ "grad_norm": 0.24721081702866537,
1387
+ "learning_rate": 3.6776361958728025e-06,
1388
+ "loss": 0.2536,
1389
+ "step": 197
1390
+ },
1391
+ {
1392
+ "epoch": 1.125,
1393
+ "grad_norm": 0.2257562078807439,
1394
+ "learning_rate": 3.663921828295474e-06,
1395
+ "loss": 0.2498,
1396
+ "step": 198
1397
+ },
1398
+ {
1399
+ "epoch": 1.1306818181818181,
1400
+ "grad_norm": 0.2599699973969289,
1401
+ "learning_rate": 3.650162594327881e-06,
1402
+ "loss": 0.2632,
1403
+ "step": 199
1404
+ },
1405
+ {
1406
+ "epoch": 1.1363636363636362,
1407
+ "grad_norm": 0.29494278610069274,
1408
+ "learning_rate": 3.6363590243554362e-06,
1409
+ "loss": 0.2758,
1410
+ "step": 200
1411
+ },
1412
+ {
1413
+ "epoch": 1.1420454545454546,
1414
+ "grad_norm": 0.250508527226537,
1415
+ "learning_rate": 3.6225116504726014e-06,
1416
+ "loss": 0.2579,
1417
+ "step": 201
1418
+ },
1419
+ {
1420
+ "epoch": 1.1477272727272727,
1421
+ "grad_norm": 0.24509958653162817,
1422
+ "learning_rate": 3.6086210064623735e-06,
1423
+ "loss": 0.2694,
1424
+ "step": 202
1425
+ },
1426
+ {
1427
+ "epoch": 1.1534090909090908,
1428
+ "grad_norm": 0.22830303655343187,
1429
+ "learning_rate": 3.5946876277757066e-06,
1430
+ "loss": 0.2417,
1431
+ "step": 203
1432
+ },
1433
+ {
1434
+ "epoch": 1.1590909090909092,
1435
+ "grad_norm": 0.2886944456973541,
1436
+ "learning_rate": 3.580712051510876e-06,
1437
+ "loss": 0.2581,
1438
+ "step": 204
1439
+ },
1440
+ {
1441
+ "epoch": 1.1647727272727273,
1442
+ "grad_norm": 0.27254932607772603,
1443
+ "learning_rate": 3.5666948163927716e-06,
1444
+ "loss": 0.2663,
1445
+ "step": 205
1446
+ },
1447
+ {
1448
+ "epoch": 1.1704545454545454,
1449
+ "grad_norm": 0.30632533777086607,
1450
+ "learning_rate": 3.5526364627521322e-06,
1451
+ "loss": 0.302,
1452
+ "step": 206
1453
+ },
1454
+ {
1455
+ "epoch": 1.1761363636363638,
1456
+ "grad_norm": 0.22063246630024258,
1457
+ "learning_rate": 3.5385375325047167e-06,
1458
+ "loss": 0.2541,
1459
+ "step": 207
1460
+ },
1461
+ {
1462
+ "epoch": 1.1818181818181819,
1463
+ "grad_norm": 0.2199009929510123,
1464
+ "learning_rate": 3.5243985691304146e-06,
1465
+ "loss": 0.2785,
1466
+ "step": 208
1467
+ },
1468
+ {
1469
+ "epoch": 1.1875,
1470
+ "grad_norm": 0.22508931676812532,
1471
+ "learning_rate": 3.5102201176522966e-06,
1472
+ "loss": 0.254,
1473
+ "step": 209
1474
+ },
1475
+ {
1476
+ "epoch": 1.1931818181818181,
1477
+ "grad_norm": 0.2655168492080692,
1478
+ "learning_rate": 3.4960027246156043e-06,
1479
+ "loss": 0.2734,
1480
+ "step": 210
1481
+ },
1482
+ {
1483
+ "epoch": 1.1988636363636362,
1484
+ "grad_norm": 0.2397043633507901,
1485
+ "learning_rate": 3.4817469380666834e-06,
1486
+ "loss": 0.2434,
1487
+ "step": 211
1488
+ },
1489
+ {
1490
+ "epoch": 1.2045454545454546,
1491
+ "grad_norm": 0.2219952128067738,
1492
+ "learning_rate": 3.467453307531858e-06,
1493
+ "loss": 0.2268,
1494
+ "step": 212
1495
+ },
1496
+ {
1497
+ "epoch": 1.2102272727272727,
1498
+ "grad_norm": 0.27311261074430904,
1499
+ "learning_rate": 3.453122383996245e-06,
1500
+ "loss": 0.2644,
1501
+ "step": 213
1502
+ },
1503
+ {
1504
+ "epoch": 1.2159090909090908,
1505
+ "grad_norm": 0.3734046673169832,
1506
+ "learning_rate": 3.4387547198825187e-06,
1507
+ "loss": 0.2354,
1508
+ "step": 214
1509
+ },
1510
+ {
1511
+ "epoch": 1.2215909090909092,
1512
+ "grad_norm": 0.21182889889501536,
1513
+ "learning_rate": 3.4243508690296133e-06,
1514
+ "loss": 0.2515,
1515
+ "step": 215
1516
+ },
1517
+ {
1518
+ "epoch": 1.2272727272727273,
1519
+ "grad_norm": 0.21938148808558747,
1520
+ "learning_rate": 3.409911386671375e-06,
1521
+ "loss": 0.2414,
1522
+ "step": 216
1523
+ },
1524
+ {
1525
+ "epoch": 1.2329545454545454,
1526
+ "grad_norm": 0.22588281820458495,
1527
+ "learning_rate": 3.3954368294151603e-06,
1528
+ "loss": 0.251,
1529
+ "step": 217
1530
+ },
1531
+ {
1532
+ "epoch": 1.2386363636363638,
1533
+ "grad_norm": 0.29774703377407774,
1534
+ "learning_rate": 3.380927755220376e-06,
1535
+ "loss": 0.234,
1536
+ "step": 218
1537
+ },
1538
+ {
1539
+ "epoch": 1.2443181818181819,
1540
+ "grad_norm": 0.21627968204006795,
1541
+ "learning_rate": 3.366384723376977e-06,
1542
+ "loss": 0.2522,
1543
+ "step": 219
1544
+ },
1545
+ {
1546
+ "epoch": 1.25,
1547
+ "grad_norm": 0.3187385148259123,
1548
+ "learning_rate": 3.351808294483902e-06,
1549
+ "loss": 0.2542,
1550
+ "step": 220
1551
+ },
1552
+ {
1553
+ "epoch": 1.2556818181818181,
1554
+ "grad_norm": 0.24935352708926728,
1555
+ "learning_rate": 3.3371990304274654e-06,
1556
+ "loss": 0.2394,
1557
+ "step": 221
1558
+ },
1559
+ {
1560
+ "epoch": 1.2613636363636362,
1561
+ "grad_norm": 0.23693314587613898,
1562
+ "learning_rate": 3.3225574943597005e-06,
1563
+ "loss": 0.2469,
1564
+ "step": 222
1565
+ },
1566
+ {
1567
+ "epoch": 1.2670454545454546,
1568
+ "grad_norm": 0.28110255475362683,
1569
+ "learning_rate": 3.3078842506766484e-06,
1570
+ "loss": 0.2603,
1571
+ "step": 223
1572
+ },
1573
+ {
1574
+ "epoch": 1.2727272727272727,
1575
+ "grad_norm": 0.2625043471276174,
1576
+ "learning_rate": 3.2931798649966e-06,
1577
+ "loss": 0.2593,
1578
+ "step": 224
1579
+ },
1580
+ {
1581
+ "epoch": 1.2784090909090908,
1582
+ "grad_norm": 0.2540347477642736,
1583
+ "learning_rate": 3.2784449041382973e-06,
1584
+ "loss": 0.2752,
1585
+ "step": 225
1586
+ },
1587
+ {
1588
+ "epoch": 1.2840909090909092,
1589
+ "grad_norm": 0.22673580657535364,
1590
+ "learning_rate": 3.263679936099083e-06,
1591
+ "loss": 0.2496,
1592
+ "step": 226
1593
+ },
1594
+ {
1595
+ "epoch": 1.2897727272727273,
1596
+ "grad_norm": 0.2504539013854373,
1597
+ "learning_rate": 3.248885530033004e-06,
1598
+ "loss": 0.2578,
1599
+ "step": 227
1600
+ },
1601
+ {
1602
+ "epoch": 1.2954545454545454,
1603
+ "grad_norm": 0.2181778867441864,
1604
+ "learning_rate": 3.2340622562288717e-06,
1605
+ "loss": 0.2394,
1606
+ "step": 228
1607
+ },
1608
+ {
1609
+ "epoch": 1.3011363636363638,
1610
+ "grad_norm": 0.33020816509435613,
1611
+ "learning_rate": 3.2192106860882782e-06,
1612
+ "loss": 0.2733,
1613
+ "step": 229
1614
+ },
1615
+ {
1616
+ "epoch": 1.3068181818181819,
1617
+ "grad_norm": 0.42372937786391984,
1618
+ "learning_rate": 3.2043313921035747e-06,
1619
+ "loss": 0.2602,
1620
+ "step": 230
1621
+ },
1622
+ {
1623
+ "epoch": 1.3125,
1624
+ "grad_norm": 0.25468090847913644,
1625
+ "learning_rate": 3.189424947835797e-06,
1626
+ "loss": 0.2716,
1627
+ "step": 231
1628
+ },
1629
+ {
1630
+ "epoch": 1.3181818181818181,
1631
+ "grad_norm": 0.2215655194050218,
1632
+ "learning_rate": 3.174491927892561e-06,
1633
+ "loss": 0.2718,
1634
+ "step": 232
1635
+ },
1636
+ {
1637
+ "epoch": 1.3238636363636362,
1638
+ "grad_norm": 0.2754635828663956,
1639
+ "learning_rate": 3.1595329079059102e-06,
1640
+ "loss": 0.272,
1641
+ "step": 233
1642
+ },
1643
+ {
1644
+ "epoch": 1.3295454545454546,
1645
+ "grad_norm": 0.2024807906225442,
1646
+ "learning_rate": 3.144548464510127e-06,
1647
+ "loss": 0.2466,
1648
+ "step": 234
1649
+ },
1650
+ {
1651
+ "epoch": 1.3352272727272727,
1652
+ "grad_norm": 0.20548663623518323,
1653
+ "learning_rate": 3.129539175319505e-06,
1654
+ "loss": 0.2582,
1655
+ "step": 235
1656
+ },
1657
+ {
1658
+ "epoch": 1.3409090909090908,
1659
+ "grad_norm": 0.23352172661093246,
1660
+ "learning_rate": 3.114505618906086e-06,
1661
+ "loss": 0.2434,
1662
+ "step": 236
1663
+ },
1664
+ {
1665
+ "epoch": 1.3465909090909092,
1666
+ "grad_norm": 0.2916666966380751,
1667
+ "learning_rate": 3.0994483747773508e-06,
1668
+ "loss": 0.2602,
1669
+ "step": 237
1670
+ },
1671
+ {
1672
+ "epoch": 1.3522727272727273,
1673
+ "grad_norm": 0.23761083831599722,
1674
+ "learning_rate": 3.0843680233538885e-06,
1675
+ "loss": 0.2702,
1676
+ "step": 238
1677
+ },
1678
+ {
1679
+ "epoch": 1.3579545454545454,
1680
+ "grad_norm": 0.219481280373593,
1681
+ "learning_rate": 3.0692651459470164e-06,
1682
+ "loss": 0.2532,
1683
+ "step": 239
1684
+ },
1685
+ {
1686
+ "epoch": 1.3636363636363638,
1687
+ "grad_norm": 0.2285839114976421,
1688
+ "learning_rate": 3.0541403247363756e-06,
1689
+ "loss": 0.2387,
1690
+ "step": 240
1691
+ },
1692
+ {
1693
+ "epoch": 1.3693181818181819,
1694
+ "grad_norm": 0.24095505608449277,
1695
+ "learning_rate": 3.0389941427474873e-06,
1696
+ "loss": 0.2509,
1697
+ "step": 241
1698
+ },
1699
+ {
1700
+ "epoch": 1.375,
1701
+ "grad_norm": 0.4493662508268078,
1702
+ "learning_rate": 3.0238271838292815e-06,
1703
+ "loss": 0.2595,
1704
+ "step": 242
1705
+ },
1706
+ {
1707
+ "epoch": 1.3806818181818181,
1708
+ "grad_norm": 0.23328787857171382,
1709
+ "learning_rate": 3.0086400326315853e-06,
1710
+ "loss": 0.231,
1711
+ "step": 243
1712
+ },
1713
+ {
1714
+ "epoch": 1.3863636363636362,
1715
+ "grad_norm": 0.5159195368293701,
1716
+ "learning_rate": 2.9934332745825924e-06,
1717
+ "loss": 0.2559,
1718
+ "step": 244
1719
+ },
1720
+ {
1721
+ "epoch": 1.3920454545454546,
1722
+ "grad_norm": 0.4703634817361865,
1723
+ "learning_rate": 2.9782074958662923e-06,
1724
+ "loss": 0.2704,
1725
+ "step": 245
1726
+ },
1727
+ {
1728
+ "epoch": 1.3977272727272727,
1729
+ "grad_norm": 0.2062134175125288,
1730
+ "learning_rate": 2.962963283399877e-06,
1731
+ "loss": 0.2478,
1732
+ "step": 246
1733
+ },
1734
+ {
1735
+ "epoch": 1.4034090909090908,
1736
+ "grad_norm": 0.21282792221823255,
1737
+ "learning_rate": 2.947701224811113e-06,
1738
+ "loss": 0.2507,
1739
+ "step": 247
1740
+ },
1741
+ {
1742
+ "epoch": 1.4090909090909092,
1743
+ "grad_norm": 0.29276392029658793,
1744
+ "learning_rate": 2.932421908415694e-06,
1745
+ "loss": 0.2277,
1746
+ "step": 248
1747
+ },
1748
+ {
1749
+ "epoch": 1.4147727272727273,
1750
+ "grad_norm": 0.24683118700261866,
1751
+ "learning_rate": 2.9171259231945598e-06,
1752
+ "loss": 0.2607,
1753
+ "step": 249
1754
+ },
1755
+ {
1756
+ "epoch": 1.4204545454545454,
1757
+ "grad_norm": 0.22971842427970574,
1758
+ "learning_rate": 2.901813858771193e-06,
1759
+ "loss": 0.2782,
1760
+ "step": 250
1761
+ },
1762
+ {
1763
+ "epoch": 1.4261363636363638,
1764
+ "grad_norm": 0.22116314296102615,
1765
+ "learning_rate": 2.8864863053888927e-06,
1766
+ "loss": 0.2441,
1767
+ "step": 251
1768
+ },
1769
+ {
1770
+ "epoch": 1.4318181818181819,
1771
+ "grad_norm": 0.19906723333631912,
1772
+ "learning_rate": 2.871143853888017e-06,
1773
+ "loss": 0.2461,
1774
+ "step": 252
1775
+ },
1776
+ {
1777
+ "epoch": 1.4375,
1778
+ "grad_norm": 0.23452835492911767,
1779
+ "learning_rate": 2.8557870956832135e-06,
1780
+ "loss": 0.2511,
1781
+ "step": 253
1782
+ },
1783
+ {
1784
+ "epoch": 1.4431818181818181,
1785
+ "grad_norm": 0.2146671991697931,
1786
+ "learning_rate": 2.840416622740617e-06,
1787
+ "loss": 0.2408,
1788
+ "step": 254
1789
+ },
1790
+ {
1791
+ "epoch": 1.4488636363636362,
1792
+ "grad_norm": 0.262172959878327,
1793
+ "learning_rate": 2.8250330275550337e-06,
1794
+ "loss": 0.2803,
1795
+ "step": 255
1796
+ },
1797
+ {
1798
+ "epoch": 1.4545454545454546,
1799
+ "grad_norm": 0.21360936224318358,
1800
+ "learning_rate": 2.8096369031271e-06,
1801
+ "loss": 0.2175,
1802
+ "step": 256
1803
+ },
1804
+ {
1805
+ "epoch": 1.4602272727272727,
1806
+ "grad_norm": 0.2120651082005393,
1807
+ "learning_rate": 2.7942288429404256e-06,
1808
+ "loss": 0.2451,
1809
+ "step": 257
1810
+ },
1811
+ {
1812
+ "epoch": 1.4659090909090908,
1813
+ "grad_norm": 0.21958260295487422,
1814
+ "learning_rate": 2.778809440938714e-06,
1815
+ "loss": 0.2781,
1816
+ "step": 258
1817
+ },
1818
+ {
1819
+ "epoch": 1.4715909090909092,
1820
+ "grad_norm": 0.22983903008037593,
1821
+ "learning_rate": 2.763379291502868e-06,
1822
+ "loss": 0.2665,
1823
+ "step": 259
1824
+ },
1825
+ {
1826
+ "epoch": 1.4772727272727273,
1827
+ "grad_norm": 0.19467024370331582,
1828
+ "learning_rate": 2.7479389894280793e-06,
1829
+ "loss": 0.2375,
1830
+ "step": 260
1831
+ },
1832
+ {
1833
+ "epoch": 1.4829545454545454,
1834
+ "grad_norm": 0.21667848301184672,
1835
+ "learning_rate": 2.7324891299008987e-06,
1836
+ "loss": 0.2493,
1837
+ "step": 261
1838
+ },
1839
+ {
1840
+ "epoch": 1.4886363636363638,
1841
+ "grad_norm": 0.24658186742801239,
1842
+ "learning_rate": 2.7170303084762958e-06,
1843
+ "loss": 0.2238,
1844
+ "step": 262
1845
+ },
1846
+ {
1847
+ "epoch": 1.4943181818181819,
1848
+ "grad_norm": 0.48492645337740303,
1849
+ "learning_rate": 2.701563121054695e-06,
1850
+ "loss": 0.2307,
1851
+ "step": 263
1852
+ },
1853
+ {
1854
+ "epoch": 1.5,
1855
+ "grad_norm": 0.23128616464818613,
1856
+ "learning_rate": 2.6860881638590146e-06,
1857
+ "loss": 0.2505,
1858
+ "step": 264
1859
+ },
1860
+ {
1861
+ "epoch": 1.5056818181818183,
1862
+ "grad_norm": 0.2546561917759946,
1863
+ "learning_rate": 2.670606033411678e-06,
1864
+ "loss": 0.2528,
1865
+ "step": 265
1866
+ },
1867
+ {
1868
+ "epoch": 1.5113636363636362,
1869
+ "grad_norm": 0.24741495860424792,
1870
+ "learning_rate": 2.6551173265116182e-06,
1871
+ "loss": 0.2508,
1872
+ "step": 266
1873
+ },
1874
+ {
1875
+ "epoch": 1.5170454545454546,
1876
+ "grad_norm": 0.2692088472000367,
1877
+ "learning_rate": 2.6396226402112768e-06,
1878
+ "loss": 0.2601,
1879
+ "step": 267
1880
+ },
1881
+ {
1882
+ "epoch": 1.5227272727272727,
1883
+ "grad_norm": 0.20089589499919636,
1884
+ "learning_rate": 2.624122571793586e-06,
1885
+ "loss": 0.2254,
1886
+ "step": 268
1887
+ },
1888
+ {
1889
+ "epoch": 1.5284090909090908,
1890
+ "grad_norm": 0.2857287556843859,
1891
+ "learning_rate": 2.6086177187489453e-06,
1892
+ "loss": 0.2487,
1893
+ "step": 269
1894
+ },
1895
+ {
1896
+ "epoch": 1.5340909090909092,
1897
+ "grad_norm": 0.2432557344935323,
1898
+ "learning_rate": 2.593108678752191e-06,
1899
+ "loss": 0.2688,
1900
+ "step": 270
1901
+ },
1902
+ {
1903
+ "epoch": 1.5397727272727273,
1904
+ "grad_norm": 0.24063084990361086,
1905
+ "learning_rate": 2.5775960496395565e-06,
1906
+ "loss": 0.2277,
1907
+ "step": 271
1908
+ },
1909
+ {
1910
+ "epoch": 1.5454545454545454,
1911
+ "grad_norm": 0.216657762192942,
1912
+ "learning_rate": 2.562080429385626e-06,
1913
+ "loss": 0.257,
1914
+ "step": 272
1915
+ },
1916
+ {
1917
+ "epoch": 1.5511363636363638,
1918
+ "grad_norm": 0.35847342618755507,
1919
+ "learning_rate": 2.5465624160802847e-06,
1920
+ "loss": 0.238,
1921
+ "step": 273
1922
+ },
1923
+ {
1924
+ "epoch": 1.5568181818181817,
1925
+ "grad_norm": 0.369555743490675,
1926
+ "learning_rate": 2.531042607905665e-06,
1927
+ "loss": 0.2354,
1928
+ "step": 274
1929
+ },
1930
+ {
1931
+ "epoch": 1.5625,
1932
+ "grad_norm": 0.24361226061790756,
1933
+ "learning_rate": 2.5155216031130882e-06,
1934
+ "loss": 0.2816,
1935
+ "step": 275
1936
+ },
1937
+ {
1938
+ "epoch": 1.5681818181818183,
1939
+ "grad_norm": 0.1922285560902828,
1940
+ "learning_rate": 2.5e-06,
1941
+ "loss": 0.2157,
1942
+ "step": 276
1943
+ },
1944
+ {
1945
+ "epoch": 1.5738636363636362,
1946
+ "grad_norm": 0.21414334547048944,
1947
+ "learning_rate": 2.4844783968869126e-06,
1948
+ "loss": 0.2267,
1949
+ "step": 277
1950
+ },
1951
+ {
1952
+ "epoch": 1.5795454545454546,
1953
+ "grad_norm": 1.2184972998385,
1954
+ "learning_rate": 2.4689573920943358e-06,
1955
+ "loss": 0.2626,
1956
+ "step": 278
1957
+ },
1958
+ {
1959
+ "epoch": 1.5852272727272727,
1960
+ "grad_norm": 0.2756105324536501,
1961
+ "learning_rate": 2.4534375839197166e-06,
1962
+ "loss": 0.2925,
1963
+ "step": 279
1964
+ },
1965
+ {
1966
+ "epoch": 1.5909090909090908,
1967
+ "grad_norm": 0.2494305680424624,
1968
+ "learning_rate": 2.4379195706143755e-06,
1969
+ "loss": 0.284,
1970
+ "step": 280
1971
+ },
1972
+ {
1973
+ "epoch": 1.5965909090909092,
1974
+ "grad_norm": 0.4449397002609527,
1975
+ "learning_rate": 2.422403950360444e-06,
1976
+ "loss": 0.2277,
1977
+ "step": 281
1978
+ },
1979
+ {
1980
+ "epoch": 1.6022727272727273,
1981
+ "grad_norm": 0.262193720551146,
1982
+ "learning_rate": 2.406891321247809e-06,
1983
+ "loss": 0.2748,
1984
+ "step": 282
1985
+ },
1986
+ {
1987
+ "epoch": 1.6079545454545454,
1988
+ "grad_norm": 0.1902602150146509,
1989
+ "learning_rate": 2.391382281251055e-06,
1990
+ "loss": 0.2275,
1991
+ "step": 283
1992
+ },
1993
+ {
1994
+ "epoch": 1.6136363636363638,
1995
+ "grad_norm": 0.22553747837476507,
1996
+ "learning_rate": 2.375877428206415e-06,
1997
+ "loss": 0.2385,
1998
+ "step": 284
1999
+ },
2000
+ {
2001
+ "epoch": 1.6193181818181817,
2002
+ "grad_norm": 0.19774421293388952,
2003
+ "learning_rate": 2.360377359788724e-06,
2004
+ "loss": 0.2294,
2005
+ "step": 285
2006
+ },
2007
+ {
2008
+ "epoch": 1.625,
2009
+ "grad_norm": 0.246379182223565,
2010
+ "learning_rate": 2.3448826734883826e-06,
2011
+ "loss": 0.2153,
2012
+ "step": 286
2013
+ },
2014
+ {
2015
+ "epoch": 1.6306818181818183,
2016
+ "grad_norm": 0.25298356695474494,
2017
+ "learning_rate": 2.3293939665883233e-06,
2018
+ "loss": 0.2776,
2019
+ "step": 287
2020
+ },
2021
+ {
2022
+ "epoch": 1.6363636363636362,
2023
+ "grad_norm": 0.2701672778631383,
2024
+ "learning_rate": 2.313911836140986e-06,
2025
+ "loss": 0.2717,
2026
+ "step": 288
2027
+ },
2028
+ {
2029
+ "epoch": 1.6420454545454546,
2030
+ "grad_norm": 0.20559053992614199,
2031
+ "learning_rate": 2.298436878945306e-06,
2032
+ "loss": 0.2386,
2033
+ "step": 289
2034
+ },
2035
+ {
2036
+ "epoch": 1.6477272727272727,
2037
+ "grad_norm": 0.3382944574936427,
2038
+ "learning_rate": 2.2829696915237055e-06,
2039
+ "loss": 0.2499,
2040
+ "step": 290
2041
+ },
2042
+ {
2043
+ "epoch": 1.6534090909090908,
2044
+ "grad_norm": 0.3486190206377146,
2045
+ "learning_rate": 2.267510870099101e-06,
2046
+ "loss": 0.2363,
2047
+ "step": 291
2048
+ },
2049
+ {
2050
+ "epoch": 1.6590909090909092,
2051
+ "grad_norm": 0.20281777636510792,
2052
+ "learning_rate": 2.252061010571921e-06,
2053
+ "loss": 0.2402,
2054
+ "step": 292
2055
+ },
2056
+ {
2057
+ "epoch": 1.6647727272727273,
2058
+ "grad_norm": 0.20620257894673166,
2059
+ "learning_rate": 2.2366207084971326e-06,
2060
+ "loss": 0.2383,
2061
+ "step": 293
2062
+ },
2063
+ {
2064
+ "epoch": 1.6704545454545454,
2065
+ "grad_norm": 0.43286460952304634,
2066
+ "learning_rate": 2.2211905590612864e-06,
2067
+ "loss": 0.2494,
2068
+ "step": 294
2069
+ },
2070
+ {
2071
+ "epoch": 1.6761363636363638,
2072
+ "grad_norm": 0.3012071629038352,
2073
+ "learning_rate": 2.205771157059575e-06,
2074
+ "loss": 0.2076,
2075
+ "step": 295
2076
+ },
2077
+ {
2078
+ "epoch": 1.6818181818181817,
2079
+ "grad_norm": 0.27532102490196564,
2080
+ "learning_rate": 2.1903630968729003e-06,
2081
+ "loss": 0.2554,
2082
+ "step": 296
2083
+ },
2084
+ {
2085
+ "epoch": 1.6875,
2086
+ "grad_norm": 0.21603766103964822,
2087
+ "learning_rate": 2.174966972444967e-06,
2088
+ "loss": 0.2313,
2089
+ "step": 297
2090
+ },
2091
+ {
2092
+ "epoch": 1.6931818181818183,
2093
+ "grad_norm": 0.2267972545695054,
2094
+ "learning_rate": 2.159583377259384e-06,
2095
+ "loss": 0.2647,
2096
+ "step": 298
2097
+ },
2098
+ {
2099
+ "epoch": 1.6988636363636362,
2100
+ "grad_norm": 0.23145153019790213,
2101
+ "learning_rate": 2.1442129043167877e-06,
2102
+ "loss": 0.2488,
2103
+ "step": 299
2104
+ },
2105
+ {
2106
+ "epoch": 1.7045454545454546,
2107
+ "grad_norm": 0.30814691128071964,
2108
+ "learning_rate": 2.1288561461119837e-06,
2109
+ "loss": 0.2278,
2110
+ "step": 300
2111
+ },
2112
+ {
2113
+ "epoch": 1.7102272727272727,
2114
+ "grad_norm": 0.2934543144230605,
2115
+ "learning_rate": 2.1135136946111077e-06,
2116
+ "loss": 0.2753,
2117
+ "step": 301
2118
+ },
2119
+ {
2120
+ "epoch": 1.7159090909090908,
2121
+ "grad_norm": 0.20303068805720303,
2122
+ "learning_rate": 2.098186141228807e-06,
2123
+ "loss": 0.2416,
2124
+ "step": 302
2125
+ },
2126
+ {
2127
+ "epoch": 1.7215909090909092,
2128
+ "grad_norm": 0.20739352247286236,
2129
+ "learning_rate": 2.0828740768054406e-06,
2130
+ "loss": 0.2639,
2131
+ "step": 303
2132
+ },
2133
+ {
2134
+ "epoch": 1.7272727272727273,
2135
+ "grad_norm": 0.2217270011433331,
2136
+ "learning_rate": 2.0675780915843068e-06,
2137
+ "loss": 0.2441,
2138
+ "step": 304
2139
+ },
2140
+ {
2141
+ "epoch": 1.7329545454545454,
2142
+ "grad_norm": 0.19345781924887342,
2143
+ "learning_rate": 2.052298775188888e-06,
2144
+ "loss": 0.2378,
2145
+ "step": 305
2146
+ },
2147
+ {
2148
+ "epoch": 1.7386363636363638,
2149
+ "grad_norm": 0.25373894853099455,
2150
+ "learning_rate": 2.0370367166001245e-06,
2151
+ "loss": 0.2592,
2152
+ "step": 306
2153
+ },
2154
+ {
2155
+ "epoch": 1.7443181818181817,
2156
+ "grad_norm": 0.22910464762227148,
2157
+ "learning_rate": 2.021792504133709e-06,
2158
+ "loss": 0.2264,
2159
+ "step": 307
2160
+ },
2161
+ {
2162
+ "epoch": 1.75,
2163
+ "grad_norm": 0.2303297961637058,
2164
+ "learning_rate": 2.006566725417409e-06,
2165
+ "loss": 0.2554,
2166
+ "step": 308
2167
+ },
2168
+ {
2169
+ "epoch": 1.7556818181818183,
2170
+ "grad_norm": 0.21711583814497334,
2171
+ "learning_rate": 1.991359967368416e-06,
2172
+ "loss": 0.2456,
2173
+ "step": 309
2174
+ },
2175
+ {
2176
+ "epoch": 1.7613636363636362,
2177
+ "grad_norm": 0.26241126899754347,
2178
+ "learning_rate": 1.97617281617072e-06,
2179
+ "loss": 0.2753,
2180
+ "step": 310
2181
+ },
2182
+ {
2183
+ "epoch": 1.7670454545454546,
2184
+ "grad_norm": 0.22750312954422816,
2185
+ "learning_rate": 1.9610058572525127e-06,
2186
+ "loss": 0.2871,
2187
+ "step": 311
2188
+ },
2189
+ {
2190
+ "epoch": 1.7727272727272727,
2191
+ "grad_norm": 0.18431040551647146,
2192
+ "learning_rate": 1.945859675263625e-06,
2193
+ "loss": 0.2486,
2194
+ "step": 312
2195
+ },
2196
+ {
2197
+ "epoch": 1.7784090909090908,
2198
+ "grad_norm": 0.27552518413839977,
2199
+ "learning_rate": 1.9307348540529845e-06,
2200
+ "loss": 0.2422,
2201
+ "step": 313
2202
+ },
2203
+ {
2204
+ "epoch": 1.7840909090909092,
2205
+ "grad_norm": 0.24464895994518496,
2206
+ "learning_rate": 1.9156319766461124e-06,
2207
+ "loss": 0.2463,
2208
+ "step": 314
2209
+ },
2210
+ {
2211
+ "epoch": 1.7897727272727273,
2212
+ "grad_norm": 0.2382418996025972,
2213
+ "learning_rate": 1.90055162522265e-06,
2214
+ "loss": 0.2789,
2215
+ "step": 315
2216
+ },
2217
+ {
2218
+ "epoch": 1.7954545454545454,
2219
+ "grad_norm": 0.28239156175807245,
2220
+ "learning_rate": 1.8854943810939152e-06,
2221
+ "loss": 0.2531,
2222
+ "step": 316
2223
+ },
2224
+ {
2225
+ "epoch": 1.8011363636363638,
2226
+ "grad_norm": 0.2895263471358066,
2227
+ "learning_rate": 1.8704608246804956e-06,
2228
+ "loss": 0.2405,
2229
+ "step": 317
2230
+ },
2231
+ {
2232
+ "epoch": 1.8068181818181817,
2233
+ "grad_norm": 0.20758099301934713,
2234
+ "learning_rate": 1.8554515354898744e-06,
2235
+ "loss": 0.2248,
2236
+ "step": 318
2237
+ },
2238
+ {
2239
+ "epoch": 1.8125,
2240
+ "grad_norm": 0.22705536402699977,
2241
+ "learning_rate": 1.840467092094091e-06,
2242
+ "loss": 0.2684,
2243
+ "step": 319
2244
+ },
2245
+ {
2246
+ "epoch": 1.8181818181818183,
2247
+ "grad_norm": 0.1928306955966746,
2248
+ "learning_rate": 1.8255080721074391e-06,
2249
+ "loss": 0.2298,
2250
+ "step": 320
2251
+ },
2252
+ {
2253
+ "epoch": 1.8238636363636362,
2254
+ "grad_norm": 0.20499241539562923,
2255
+ "learning_rate": 1.8105750521642035e-06,
2256
+ "loss": 0.2207,
2257
+ "step": 321
2258
+ },
2259
+ {
2260
+ "epoch": 1.8295454545454546,
2261
+ "grad_norm": 0.20797732732157784,
2262
+ "learning_rate": 1.7956686078964257e-06,
2263
+ "loss": 0.2474,
2264
+ "step": 322
2265
+ },
2266
+ {
2267
+ "epoch": 1.8352272727272727,
2268
+ "grad_norm": 0.21542074815945023,
2269
+ "learning_rate": 1.7807893139117222e-06,
2270
+ "loss": 0.2331,
2271
+ "step": 323
2272
+ },
2273
+ {
2274
+ "epoch": 1.8409090909090908,
2275
+ "grad_norm": 0.2118090262141367,
2276
+ "learning_rate": 1.7659377437711294e-06,
2277
+ "loss": 0.2546,
2278
+ "step": 324
2279
+ },
2280
+ {
2281
+ "epoch": 1.8465909090909092,
2282
+ "grad_norm": 0.2841859057779013,
2283
+ "learning_rate": 1.7511144699669967e-06,
2284
+ "loss": 0.2749,
2285
+ "step": 325
2286
+ },
2287
+ {
2288
+ "epoch": 1.8522727272727273,
2289
+ "grad_norm": 0.2987554078016277,
2290
+ "learning_rate": 1.7363200639009176e-06,
2291
+ "loss": 0.2288,
2292
+ "step": 326
2293
+ },
2294
+ {
2295
+ "epoch": 1.8579545454545454,
2296
+ "grad_norm": 0.18732882489325686,
2297
+ "learning_rate": 1.7215550958617036e-06,
2298
+ "loss": 0.2289,
2299
+ "step": 327
2300
+ },
2301
+ {
2302
+ "epoch": 1.8636363636363638,
2303
+ "grad_norm": 0.2608504460685447,
2304
+ "learning_rate": 1.7068201350034017e-06,
2305
+ "loss": 0.2631,
2306
+ "step": 328
2307
+ },
2308
+ {
2309
+ "epoch": 1.8693181818181817,
2310
+ "grad_norm": 0.2721253524262622,
2311
+ "learning_rate": 1.692115749323353e-06,
2312
+ "loss": 0.2271,
2313
+ "step": 329
2314
+ },
2315
+ {
2316
+ "epoch": 1.875,
2317
+ "grad_norm": 0.2379430708667795,
2318
+ "learning_rate": 1.6774425056402993e-06,
2319
+ "loss": 0.2412,
2320
+ "step": 330
2321
+ },
2322
+ {
2323
+ "epoch": 1.8806818181818183,
2324
+ "grad_norm": 0.24257409750516146,
2325
+ "learning_rate": 1.6628009695725348e-06,
2326
+ "loss": 0.2683,
2327
+ "step": 331
2328
+ },
2329
+ {
2330
+ "epoch": 1.8863636363636362,
2331
+ "grad_norm": 0.19301492232724798,
2332
+ "learning_rate": 1.648191705516099e-06,
2333
+ "loss": 0.2026,
2334
+ "step": 332
2335
+ },
2336
+ {
2337
+ "epoch": 1.8920454545454546,
2338
+ "grad_norm": 0.25069740638984933,
2339
+ "learning_rate": 1.6336152766230235e-06,
2340
+ "loss": 0.2714,
2341
+ "step": 333
2342
+ },
2343
+ {
2344
+ "epoch": 1.8977272727272727,
2345
+ "grad_norm": 0.24153255545005992,
2346
+ "learning_rate": 1.6190722447796242e-06,
2347
+ "loss": 0.2445,
2348
+ "step": 334
2349
+ },
2350
+ {
2351
+ "epoch": 1.9034090909090908,
2352
+ "grad_norm": 0.21336850539372973,
2353
+ "learning_rate": 1.6045631705848405e-06,
2354
+ "loss": 0.2662,
2355
+ "step": 335
2356
+ },
2357
+ {
2358
+ "epoch": 1.9090909090909092,
2359
+ "grad_norm": 0.2435556265678761,
2360
+ "learning_rate": 1.5900886133286254e-06,
2361
+ "loss": 0.2626,
2362
+ "step": 336
2363
+ },
2364
+ {
2365
+ "epoch": 1.9147727272727273,
2366
+ "grad_norm": 0.19661831324809856,
2367
+ "learning_rate": 1.5756491309703875e-06,
2368
+ "loss": 0.228,
2369
+ "step": 337
2370
+ },
2371
+ {
2372
+ "epoch": 1.9204545454545454,
2373
+ "grad_norm": 0.20715327562589703,
2374
+ "learning_rate": 1.561245280117482e-06,
2375
+ "loss": 0.2377,
2376
+ "step": 338
2377
+ },
2378
+ {
2379
+ "epoch": 1.9261363636363638,
2380
+ "grad_norm": 0.2546762373725108,
2381
+ "learning_rate": 1.5468776160037558e-06,
2382
+ "loss": 0.2378,
2383
+ "step": 339
2384
+ },
2385
+ {
2386
+ "epoch": 1.9318181818181817,
2387
+ "grad_norm": 0.21893927747495043,
2388
+ "learning_rate": 1.5325466924681425e-06,
2389
+ "loss": 0.2542,
2390
+ "step": 340
2391
+ },
2392
+ {
2393
+ "epoch": 1.9375,
2394
+ "grad_norm": 0.29705395872406126,
2395
+ "learning_rate": 1.5182530619333168e-06,
2396
+ "loss": 0.2536,
2397
+ "step": 341
2398
+ },
2399
+ {
2400
+ "epoch": 1.9431818181818183,
2401
+ "grad_norm": 0.2627707493027739,
2402
+ "learning_rate": 1.5039972753843966e-06,
2403
+ "loss": 0.2462,
2404
+ "step": 342
2405
+ },
2406
+ {
2407
+ "epoch": 1.9488636363636362,
2408
+ "grad_norm": 0.196727357906668,
2409
+ "learning_rate": 1.4897798823477045e-06,
2410
+ "loss": 0.2417,
2411
+ "step": 343
2412
+ },
2413
+ {
2414
+ "epoch": 1.9545454545454546,
2415
+ "grad_norm": 0.18765721167603922,
2416
+ "learning_rate": 1.4756014308695865e-06,
2417
+ "loss": 0.2371,
2418
+ "step": 344
2419
+ },
2420
+ {
2421
+ "epoch": 1.9602272727272727,
2422
+ "grad_norm": 0.2169021146401285,
2423
+ "learning_rate": 1.4614624674952843e-06,
2424
+ "loss": 0.2417,
2425
+ "step": 345
2426
+ },
2427
+ {
2428
+ "epoch": 1.9659090909090908,
2429
+ "grad_norm": 0.1724333522092845,
2430
+ "learning_rate": 1.4473635372478692e-06,
2431
+ "loss": 0.2252,
2432
+ "step": 346
2433
+ },
2434
+ {
2435
+ "epoch": 1.9715909090909092,
2436
+ "grad_norm": 0.27729471470089767,
2437
+ "learning_rate": 1.4333051836072298e-06,
2438
+ "loss": 0.2072,
2439
+ "step": 347
2440
+ },
2441
+ {
2442
+ "epoch": 1.9772727272727273,
2443
+ "grad_norm": 0.21309523464495775,
2444
+ "learning_rate": 1.4192879484891253e-06,
2445
+ "loss": 0.2423,
2446
+ "step": 348
2447
+ },
2448
+ {
2449
+ "epoch": 1.9829545454545454,
2450
+ "grad_norm": 0.2579270534818131,
2451
+ "learning_rate": 1.405312372224294e-06,
2452
+ "loss": 0.2463,
2453
+ "step": 349
2454
+ },
2455
+ {
2456
+ "epoch": 1.9886363636363638,
2457
+ "grad_norm": 0.20458929831058947,
2458
+ "learning_rate": 1.3913789935376271e-06,
2459
+ "loss": 0.2382,
2460
+ "step": 350
2461
+ },
2462
+ {
2463
+ "epoch": 1.9943181818181817,
2464
+ "grad_norm": 0.264219593485995,
2465
+ "learning_rate": 1.3774883495273986e-06,
2466
+ "loss": 0.2306,
2467
+ "step": 351
2468
+ },
2469
+ {
2470
+ "epoch": 2.0,
2471
+ "grad_norm": 0.20532725547286926,
2472
+ "learning_rate": 1.363640975644564e-06,
2473
+ "loss": 0.2116,
2474
+ "step": 352
2475
+ },
2476
+ {
2477
+ "epoch": 2.0056818181818183,
2478
+ "grad_norm": 0.2992343797336132,
2479
+ "learning_rate": 1.3498374056721198e-06,
2480
+ "loss": 0.2604,
2481
+ "step": 353
2482
+ },
2483
+ {
2484
+ "epoch": 2.0113636363636362,
2485
+ "grad_norm": 0.2029411119629725,
2486
+ "learning_rate": 1.3360781717045266e-06,
2487
+ "loss": 0.2295,
2488
+ "step": 354
2489
+ },
2490
+ {
2491
+ "epoch": 2.0170454545454546,
2492
+ "grad_norm": 0.20429497877305577,
2493
+ "learning_rate": 1.322363804127198e-06,
2494
+ "loss": 0.2384,
2495
+ "step": 355
2496
+ },
2497
+ {
2498
+ "epoch": 2.022727272727273,
2499
+ "grad_norm": 0.26030944241332393,
2500
+ "learning_rate": 1.3086948315960567e-06,
2501
+ "loss": 0.2289,
2502
+ "step": 356
2503
+ },
2504
+ {
2505
+ "epoch": 2.028409090909091,
2506
+ "grad_norm": 0.23879201027045563,
2507
+ "learning_rate": 1.295071781017156e-06,
2508
+ "loss": 0.2489,
2509
+ "step": 357
2510
+ },
2511
+ {
2512
+ "epoch": 2.034090909090909,
2513
+ "grad_norm": 0.2065949866931435,
2514
+ "learning_rate": 1.2814951775263671e-06,
2515
+ "loss": 0.2402,
2516
+ "step": 358
2517
+ },
2518
+ {
2519
+ "epoch": 2.039772727272727,
2520
+ "grad_norm": 0.3304715872732868,
2521
+ "learning_rate": 1.267965544469137e-06,
2522
+ "loss": 0.2621,
2523
+ "step": 359
2524
+ },
2525
+ {
2526
+ "epoch": 2.0454545454545454,
2527
+ "grad_norm": 0.19051837959097934,
2528
+ "learning_rate": 1.2544834033803183e-06,
2529
+ "loss": 0.2213,
2530
+ "step": 360
2531
+ },
2532
+ {
2533
+ "epoch": 2.0511363636363638,
2534
+ "grad_norm": 0.23880675922567549,
2535
+ "learning_rate": 1.2410492739640592e-06,
2536
+ "loss": 0.2269,
2537
+ "step": 361
2538
+ },
2539
+ {
2540
+ "epoch": 2.0568181818181817,
2541
+ "grad_norm": 0.2018598929268875,
2542
+ "learning_rate": 1.227663674073775e-06,
2543
+ "loss": 0.2267,
2544
+ "step": 362
2545
+ },
2546
+ {
2547
+ "epoch": 2.0625,
2548
+ "grad_norm": 0.25110946606632356,
2549
+ "learning_rate": 1.2143271196921832e-06,
2550
+ "loss": 0.2415,
2551
+ "step": 363
2552
+ },
2553
+ {
2554
+ "epoch": 2.0681818181818183,
2555
+ "grad_norm": 0.22102547627853814,
2556
+ "learning_rate": 1.2010401249114166e-06,
2557
+ "loss": 0.2262,
2558
+ "step": 364
2559
+ },
2560
+ {
2561
+ "epoch": 2.0738636363636362,
2562
+ "grad_norm": 0.21927465830616452,
2563
+ "learning_rate": 1.1878032019132016e-06,
2564
+ "loss": 0.2304,
2565
+ "step": 365
2566
+ },
2567
+ {
2568
+ "epoch": 2.0795454545454546,
2569
+ "grad_norm": 0.23137588236465315,
2570
+ "learning_rate": 1.1746168609491198e-06,
2571
+ "loss": 0.2409,
2572
+ "step": 366
2573
+ },
2574
+ {
2575
+ "epoch": 2.085227272727273,
2576
+ "grad_norm": 0.26540697815717607,
2577
+ "learning_rate": 1.1614816103209363e-06,
2578
+ "loss": 0.2491,
2579
+ "step": 367
2580
+ },
2581
+ {
2582
+ "epoch": 2.090909090909091,
2583
+ "grad_norm": 0.2240465647803614,
2584
+ "learning_rate": 1.148397956361007e-06,
2585
+ "loss": 0.2676,
2586
+ "step": 368
2587
+ },
2588
+ {
2589
+ "epoch": 2.096590909090909,
2590
+ "grad_norm": 0.21344405314643286,
2591
+ "learning_rate": 1.1353664034127585e-06,
2592
+ "loss": 0.2315,
2593
+ "step": 369
2594
+ },
2595
+ {
2596
+ "epoch": 2.102272727272727,
2597
+ "grad_norm": 0.3017527199834084,
2598
+ "learning_rate": 1.122387453811252e-06,
2599
+ "loss": 0.2246,
2600
+ "step": 370
2601
+ },
2602
+ {
2603
+ "epoch": 2.1079545454545454,
2604
+ "grad_norm": 0.22871251640001977,
2605
+ "learning_rate": 1.1094616078638123e-06,
2606
+ "loss": 0.2263,
2607
+ "step": 371
2608
+ },
2609
+ {
2610
+ "epoch": 2.1136363636363638,
2611
+ "grad_norm": 0.22922429353524632,
2612
+ "learning_rate": 1.0965893638307484e-06,
2613
+ "loss": 0.2479,
2614
+ "step": 372
2615
+ },
2616
+ {
2617
+ "epoch": 2.1193181818181817,
2618
+ "grad_norm": 0.23625823763756973,
2619
+ "learning_rate": 1.083771217906143e-06,
2620
+ "loss": 0.2654,
2621
+ "step": 373
2622
+ },
2623
+ {
2624
+ "epoch": 2.125,
2625
+ "grad_norm": 0.27625305972483133,
2626
+ "learning_rate": 1.071007664198727e-06,
2627
+ "loss": 0.2365,
2628
+ "step": 374
2629
+ },
2630
+ {
2631
+ "epoch": 2.1306818181818183,
2632
+ "grad_norm": 0.22438286954207515,
2633
+ "learning_rate": 1.0582991947128324e-06,
2634
+ "loss": 0.2549,
2635
+ "step": 375
2636
+ },
2637
+ {
2638
+ "epoch": 2.1363636363636362,
2639
+ "grad_norm": 0.3702343135252277,
2640
+ "learning_rate": 1.0456462993294273e-06,
2641
+ "loss": 0.2296,
2642
+ "step": 376
2643
+ },
2644
+ {
2645
+ "epoch": 2.1420454545454546,
2646
+ "grad_norm": 0.22114715704005006,
2647
+ "learning_rate": 1.0330494657872312e-06,
2648
+ "loss": 0.2502,
2649
+ "step": 377
2650
+ },
2651
+ {
2652
+ "epoch": 2.147727272727273,
2653
+ "grad_norm": 0.30333787634431497,
2654
+ "learning_rate": 1.0205091796639143e-06,
2655
+ "loss": 0.2736,
2656
+ "step": 378
2657
+ },
2658
+ {
2659
+ "epoch": 2.153409090909091,
2660
+ "grad_norm": 0.20447974690727722,
2661
+ "learning_rate": 1.008025924357379e-06,
2662
+ "loss": 0.2405,
2663
+ "step": 379
2664
+ },
2665
+ {
2666
+ "epoch": 2.159090909090909,
2667
+ "grad_norm": 0.20209966437613497,
2668
+ "learning_rate": 9.95600181067129e-07,
2669
+ "loss": 0.2413,
2670
+ "step": 380
2671
+ },
2672
+ {
2673
+ "epoch": 2.164772727272727,
2674
+ "grad_norm": 0.232405336227515,
2675
+ "learning_rate": 9.832324287757158e-07,
2676
+ "loss": 0.2573,
2677
+ "step": 381
2678
+ },
2679
+ {
2680
+ "epoch": 2.1704545454545454,
2681
+ "grad_norm": 0.27892846481633526,
2682
+ "learning_rate": 9.709231442302777e-07,
2683
+ "loss": 0.2314,
2684
+ "step": 382
2685
+ },
2686
+ {
2687
+ "epoch": 2.1761363636363638,
2688
+ "grad_norm": 0.23501245795670683,
2689
+ "learning_rate": 9.586728019241622e-07,
2690
+ "loss": 0.2375,
2691
+ "step": 383
2692
+ },
2693
+ {
2694
+ "epoch": 2.1818181818181817,
2695
+ "grad_norm": 0.23046728304284175,
2696
+ "learning_rate": 9.464818740786357e-07,
2697
+ "loss": 0.2514,
2698
+ "step": 384
2699
+ },
2700
+ {
2701
+ "epoch": 2.1875,
2702
+ "grad_norm": 0.23024328925839851,
2703
+ "learning_rate": 9.343508306246771e-07,
2704
+ "loss": 0.2562,
2705
+ "step": 385
2706
+ },
2707
+ {
2708
+ "epoch": 2.1931818181818183,
2709
+ "grad_norm": 0.21907595115075354,
2710
+ "learning_rate": 9.222801391848688e-07,
2711
+ "loss": 0.2364,
2712
+ "step": 386
2713
+ },
2714
+ {
2715
+ "epoch": 2.1988636363636362,
2716
+ "grad_norm": 0.2577759642925678,
2717
+ "learning_rate": 9.102702650553672e-07,
2718
+ "loss": 0.2452,
2719
+ "step": 387
2720
+ },
2721
+ {
2722
+ "epoch": 2.2045454545454546,
2723
+ "grad_norm": 0.20572031186271958,
2724
+ "learning_rate": 8.983216711879663e-07,
2725
+ "loss": 0.2366,
2726
+ "step": 388
2727
+ },
2728
+ {
2729
+ "epoch": 2.210227272727273,
2730
+ "grad_norm": 0.21329319069858652,
2731
+ "learning_rate": 8.86434818172256e-07,
2732
+ "loss": 0.2332,
2733
+ "step": 389
2734
+ },
2735
+ {
2736
+ "epoch": 2.215909090909091,
2737
+ "grad_norm": 0.26280014382816824,
2738
+ "learning_rate": 8.746101642178623e-07,
2739
+ "loss": 0.2731,
2740
+ "step": 390
2741
+ },
2742
+ {
2743
+ "epoch": 2.221590909090909,
2744
+ "grad_norm": 0.23251275990425788,
2745
+ "learning_rate": 8.628481651367876e-07,
2746
+ "loss": 0.2285,
2747
+ "step": 391
2748
+ },
2749
+ {
2750
+ "epoch": 2.227272727272727,
2751
+ "grad_norm": 0.213052782052081,
2752
+ "learning_rate": 8.51149274325839e-07,
2753
+ "loss": 0.269,
2754
+ "step": 392
2755
+ },
2756
+ {
2757
+ "epoch": 2.2329545454545454,
2758
+ "grad_norm": 0.2390787111598495,
2759
+ "learning_rate": 8.395139427491517e-07,
2760
+ "loss": 0.228,
2761
+ "step": 393
2762
+ },
2763
+ {
2764
+ "epoch": 2.2386363636363638,
2765
+ "grad_norm": 0.2801854339324972,
2766
+ "learning_rate": 8.279426189208057e-07,
2767
+ "loss": 0.2496,
2768
+ "step": 394
2769
+ },
2770
+ {
2771
+ "epoch": 2.2443181818181817,
2772
+ "grad_norm": 0.21989720758556128,
2773
+ "learning_rate": 8.164357488875349e-07,
2774
+ "loss": 0.2335,
2775
+ "step": 395
2776
+ },
2777
+ {
2778
+ "epoch": 2.25,
2779
+ "grad_norm": 0.22453398641005057,
2780
+ "learning_rate": 8.049937762115354e-07,
2781
+ "loss": 0.2299,
2782
+ "step": 396
2783
+ },
2784
+ {
2785
+ "epoch": 2.2556818181818183,
2786
+ "grad_norm": 0.22778711590056566,
2787
+ "learning_rate": 7.936171419533653e-07,
2788
+ "loss": 0.2274,
2789
+ "step": 397
2790
+ },
2791
+ {
2792
+ "epoch": 2.2613636363636362,
2793
+ "grad_norm": 0.22100874802253603,
2794
+ "learning_rate": 7.823062846549432e-07,
2795
+ "loss": 0.2501,
2796
+ "step": 398
2797
+ },
2798
+ {
2799
+ "epoch": 2.2670454545454546,
2800
+ "grad_norm": 0.2234622648942781,
2801
+ "learning_rate": 7.71061640322646e-07,
2802
+ "loss": 0.2592,
2803
+ "step": 399
2804
+ },
2805
+ {
2806
+ "epoch": 2.2727272727272725,
2807
+ "grad_norm": 0.19533941288191214,
2808
+ "learning_rate": 7.59883642410498e-07,
2809
+ "loss": 0.2433,
2810
+ "step": 400
2811
+ },
2812
+ {
2813
+ "epoch": 2.278409090909091,
2814
+ "grad_norm": 0.2611615221654739,
2815
+ "learning_rate": 7.487727218034646e-07,
2816
+ "loss": 0.2463,
2817
+ "step": 401
2818
+ },
2819
+ {
2820
+ "epoch": 2.284090909090909,
2821
+ "grad_norm": 0.227647391322542,
2822
+ "learning_rate": 7.377293068008421e-07,
2823
+ "loss": 0.2293,
2824
+ "step": 402
2825
+ },
2826
+ {
2827
+ "epoch": 2.2897727272727275,
2828
+ "grad_norm": 0.2765238173548462,
2829
+ "learning_rate": 7.267538230997487e-07,
2830
+ "loss": 0.2458,
2831
+ "step": 403
2832
+ },
2833
+ {
2834
+ "epoch": 2.2954545454545454,
2835
+ "grad_norm": 0.2736767495641602,
2836
+ "learning_rate": 7.15846693778712e-07,
2837
+ "loss": 0.2244,
2838
+ "step": 404
2839
+ },
2840
+ {
2841
+ "epoch": 2.3011363636363638,
2842
+ "grad_norm": 0.29322810329004506,
2843
+ "learning_rate": 7.050083392813651e-07,
2844
+ "loss": 0.2429,
2845
+ "step": 405
2846
+ },
2847
+ {
2848
+ "epoch": 2.3068181818181817,
2849
+ "grad_norm": 0.23672260332490674,
2850
+ "learning_rate": 6.942391774002352e-07,
2851
+ "loss": 0.2224,
2852
+ "step": 406
2853
+ },
2854
+ {
2855
+ "epoch": 2.3125,
2856
+ "grad_norm": 0.20842228485707248,
2857
+ "learning_rate": 6.835396232606414e-07,
2858
+ "loss": 0.2505,
2859
+ "step": 407
2860
+ },
2861
+ {
2862
+ "epoch": 2.3181818181818183,
2863
+ "grad_norm": 0.22128940362648533,
2864
+ "learning_rate": 6.729100893046897e-07,
2865
+ "loss": 0.2355,
2866
+ "step": 408
2867
+ },
2868
+ {
2869
+ "epoch": 2.3238636363636362,
2870
+ "grad_norm": 0.22752723544755182,
2871
+ "learning_rate": 6.623509852753798e-07,
2872
+ "loss": 0.2143,
2873
+ "step": 409
2874
+ },
2875
+ {
2876
+ "epoch": 2.3295454545454546,
2877
+ "grad_norm": 0.22237504317670226,
2878
+ "learning_rate": 6.518627182008034e-07,
2879
+ "loss": 0.2296,
2880
+ "step": 410
2881
+ },
2882
+ {
2883
+ "epoch": 2.3352272727272725,
2884
+ "grad_norm": 0.21204727758454492,
2885
+ "learning_rate": 6.414456923784593e-07,
2886
+ "loss": 0.209,
2887
+ "step": 411
2888
+ },
2889
+ {
2890
+ "epoch": 2.340909090909091,
2891
+ "grad_norm": 0.2390107432904483,
2892
+ "learning_rate": 6.311003093596674e-07,
2893
+ "loss": 0.2532,
2894
+ "step": 412
2895
+ },
2896
+ {
2897
+ "epoch": 2.346590909090909,
2898
+ "grad_norm": 0.19149924277202832,
2899
+ "learning_rate": 6.208269679340886e-07,
2900
+ "loss": 0.2268,
2901
+ "step": 413
2902
+ },
2903
+ {
2904
+ "epoch": 2.3522727272727275,
2905
+ "grad_norm": 0.29290190158043866,
2906
+ "learning_rate": 6.106260641143547e-07,
2907
+ "loss": 0.2413,
2908
+ "step": 414
2909
+ },
2910
+ {
2911
+ "epoch": 2.3579545454545454,
2912
+ "grad_norm": 0.2640131071106126,
2913
+ "learning_rate": 6.004979911208006e-07,
2914
+ "loss": 0.2203,
2915
+ "step": 415
2916
+ },
2917
+ {
2918
+ "epoch": 2.3636363636363638,
2919
+ "grad_norm": 0.26467170247291516,
2920
+ "learning_rate": 5.904431393663088e-07,
2921
+ "loss": 0.2671,
2922
+ "step": 416
2923
+ },
2924
+ {
2925
+ "epoch": 2.3693181818181817,
2926
+ "grad_norm": 0.2047663364954759,
2927
+ "learning_rate": 5.804618964412587e-07,
2928
+ "loss": 0.2826,
2929
+ "step": 417
2930
+ },
2931
+ {
2932
+ "epoch": 2.375,
2933
+ "grad_norm": 0.2157657875191716,
2934
+ "learning_rate": 5.705546470985851e-07,
2935
+ "loss": 0.2181,
2936
+ "step": 418
2937
+ },
2938
+ {
2939
+ "epoch": 2.3806818181818183,
2940
+ "grad_norm": 0.21019411350145403,
2941
+ "learning_rate": 5.607217732389503e-07,
2942
+ "loss": 0.23,
2943
+ "step": 419
2944
+ },
2945
+ {
2946
+ "epoch": 2.3863636363636362,
2947
+ "grad_norm": 0.26327220650995004,
2948
+ "learning_rate": 5.509636538960183e-07,
2949
+ "loss": 0.2461,
2950
+ "step": 420
2951
+ },
2952
+ {
2953
+ "epoch": 2.3920454545454546,
2954
+ "grad_norm": 0.22603288999069882,
2955
+ "learning_rate": 5.412806652218469e-07,
2956
+ "loss": 0.2277,
2957
+ "step": 421
2958
+ },
2959
+ {
2960
+ "epoch": 2.3977272727272725,
2961
+ "grad_norm": 0.24543228404047565,
2962
+ "learning_rate": 5.316731804723877e-07,
2963
+ "loss": 0.2654,
2964
+ "step": 422
2965
+ },
2966
+ {
2967
+ "epoch": 2.403409090909091,
2968
+ "grad_norm": 0.2511069445289598,
2969
+ "learning_rate": 5.221415699930952e-07,
2970
+ "loss": 0.25,
2971
+ "step": 423
2972
+ },
2973
+ {
2974
+ "epoch": 2.409090909090909,
2975
+ "grad_norm": 0.27112636787166394,
2976
+ "learning_rate": 5.126862012046551e-07,
2977
+ "loss": 0.2354,
2978
+ "step": 424
2979
+ },
2980
+ {
2981
+ "epoch": 2.4147727272727275,
2982
+ "grad_norm": 0.24057911667311155,
2983
+ "learning_rate": 5.03307438588819e-07,
2984
+ "loss": 0.2555,
2985
+ "step": 425
2986
+ },
2987
+ {
2988
+ "epoch": 2.4204545454545454,
2989
+ "grad_norm": 0.20526839995277346,
2990
+ "learning_rate": 4.940056436743534e-07,
2991
+ "loss": 0.2023,
2992
+ "step": 426
2993
+ },
2994
+ {
2995
+ "epoch": 2.4261363636363638,
2996
+ "grad_norm": 0.3463263547587994,
2997
+ "learning_rate": 4.847811750231057e-07,
2998
+ "loss": 0.2423,
2999
+ "step": 427
3000
+ },
3001
+ {
3002
+ "epoch": 2.4318181818181817,
3003
+ "grad_norm": 0.3230515716711578,
3004
+ "learning_rate": 4.7563438821618236e-07,
3005
+ "loss": 0.2364,
3006
+ "step": 428
3007
+ },
3008
+ {
3009
+ "epoch": 2.4375,
3010
+ "grad_norm": 0.19216365713273992,
3011
+ "learning_rate": 4.6656563584023955e-07,
3012
+ "loss": 0.2592,
3013
+ "step": 429
3014
+ },
3015
+ {
3016
+ "epoch": 2.4431818181818183,
3017
+ "grad_norm": 0.213493956757016,
3018
+ "learning_rate": 4.5757526747389506e-07,
3019
+ "loss": 0.2348,
3020
+ "step": 430
3021
+ },
3022
+ {
3023
+ "epoch": 2.4488636363636362,
3024
+ "grad_norm": 0.22855349656144805,
3025
+ "learning_rate": 4.4866362967425054e-07,
3026
+ "loss": 0.211,
3027
+ "step": 431
3028
+ },
3029
+ {
3030
+ "epoch": 2.4545454545454546,
3031
+ "grad_norm": 0.2010595906652801,
3032
+ "learning_rate": 4.398310659635338e-07,
3033
+ "loss": 0.2203,
3034
+ "step": 432
3035
+ },
3036
+ {
3037
+ "epoch": 2.4602272727272725,
3038
+ "grad_norm": 0.28214757374784766,
3039
+ "learning_rate": 4.310779168158566e-07,
3040
+ "loss": 0.2636,
3041
+ "step": 433
3042
+ },
3043
+ {
3044
+ "epoch": 2.465909090909091,
3045
+ "grad_norm": 0.2512424715594609,
3046
+ "learning_rate": 4.2240451964408984e-07,
3047
+ "loss": 0.244,
3048
+ "step": 434
3049
+ },
3050
+ {
3051
+ "epoch": 2.471590909090909,
3052
+ "grad_norm": 0.5451128021916027,
3053
+ "learning_rate": 4.138112087868576e-07,
3054
+ "loss": 0.2562,
3055
+ "step": 435
3056
+ },
3057
+ {
3058
+ "epoch": 2.4772727272727275,
3059
+ "grad_norm": 0.2828376249470446,
3060
+ "learning_rate": 4.052983154956483e-07,
3061
+ "loss": 0.2384,
3062
+ "step": 436
3063
+ },
3064
+ {
3065
+ "epoch": 2.4829545454545454,
3066
+ "grad_norm": 0.2557661881508072,
3067
+ "learning_rate": 3.9686616792204677e-07,
3068
+ "loss": 0.2509,
3069
+ "step": 437
3070
+ },
3071
+ {
3072
+ "epoch": 2.4886363636363638,
3073
+ "grad_norm": 0.25795762829235164,
3074
+ "learning_rate": 3.885150911050856e-07,
3075
+ "loss": 0.2218,
3076
+ "step": 438
3077
+ },
3078
+ {
3079
+ "epoch": 2.4943181818181817,
3080
+ "grad_norm": 0.25563496442518113,
3081
+ "learning_rate": 3.8024540695871275e-07,
3082
+ "loss": 0.2344,
3083
+ "step": 439
3084
+ },
3085
+ {
3086
+ "epoch": 2.5,
3087
+ "grad_norm": 0.28154467860900795,
3088
+ "learning_rate": 3.720574342593847e-07,
3089
+ "loss": 0.2444,
3090
+ "step": 440
3091
+ },
3092
+ {
3093
+ "epoch": 2.5056818181818183,
3094
+ "grad_norm": 0.22139203111003553,
3095
+ "learning_rate": 3.639514886337786e-07,
3096
+ "loss": 0.285,
3097
+ "step": 441
3098
+ },
3099
+ {
3100
+ "epoch": 2.5113636363636362,
3101
+ "grad_norm": 0.21532391608850526,
3102
+ "learning_rate": 3.559278825466245e-07,
3103
+ "loss": 0.2397,
3104
+ "step": 442
3105
+ },
3106
+ {
3107
+ "epoch": 2.5170454545454546,
3108
+ "grad_norm": 0.20959198276551452,
3109
+ "learning_rate": 3.4798692528866057e-07,
3110
+ "loss": 0.2444,
3111
+ "step": 443
3112
+ },
3113
+ {
3114
+ "epoch": 2.5227272727272725,
3115
+ "grad_norm": 0.2587316337980766,
3116
+ "learning_rate": 3.4012892296471173e-07,
3117
+ "loss": 0.2394,
3118
+ "step": 444
3119
+ },
3120
+ {
3121
+ "epoch": 2.528409090909091,
3122
+ "grad_norm": 0.21690366841626674,
3123
+ "learning_rate": 3.3235417848188985e-07,
3124
+ "loss": 0.2428,
3125
+ "step": 445
3126
+ },
3127
+ {
3128
+ "epoch": 2.534090909090909,
3129
+ "grad_norm": 0.26971941485731793,
3130
+ "learning_rate": 3.2466299153791626e-07,
3131
+ "loss": 0.2611,
3132
+ "step": 446
3133
+ },
3134
+ {
3135
+ "epoch": 2.5397727272727275,
3136
+ "grad_norm": 0.22784776958627076,
3137
+ "learning_rate": 3.1705565860956994e-07,
3138
+ "loss": 0.2672,
3139
+ "step": 447
3140
+ },
3141
+ {
3142
+ "epoch": 2.5454545454545454,
3143
+ "grad_norm": 0.22730153530504624,
3144
+ "learning_rate": 3.095324729412602e-07,
3145
+ "loss": 0.2316,
3146
+ "step": 448
3147
+ },
3148
+ {
3149
+ "epoch": 2.5511363636363638,
3150
+ "grad_norm": 0.23472487686066498,
3151
+ "learning_rate": 3.020937245337208e-07,
3152
+ "loss": 0.2557,
3153
+ "step": 449
3154
+ },
3155
+ {
3156
+ "epoch": 2.5568181818181817,
3157
+ "grad_norm": 0.19943308794934309,
3158
+ "learning_rate": 2.947397001328314e-07,
3159
+ "loss": 0.2359,
3160
+ "step": 450
3161
+ },
3162
+ {
3163
+ "epoch": 2.5625,
3164
+ "grad_norm": 0.2370879570780672,
3165
+ "learning_rate": 2.874706832185656e-07,
3166
+ "loss": 0.24,
3167
+ "step": 451
3168
+ },
3169
+ {
3170
+ "epoch": 2.5681818181818183,
3171
+ "grad_norm": 0.28430114512901383,
3172
+ "learning_rate": 2.80286953994062e-07,
3173
+ "loss": 0.2509,
3174
+ "step": 452
3175
+ },
3176
+ {
3177
+ "epoch": 2.5738636363636362,
3178
+ "grad_norm": 1.2939227200205659,
3179
+ "learning_rate": 2.731887893748242e-07,
3180
+ "loss": 0.2452,
3181
+ "step": 453
3182
+ },
3183
+ {
3184
+ "epoch": 2.5795454545454546,
3185
+ "grad_norm": 0.6171012295566409,
3186
+ "learning_rate": 2.6617646297804554e-07,
3187
+ "loss": 0.2586,
3188
+ "step": 454
3189
+ },
3190
+ {
3191
+ "epoch": 2.5852272727272725,
3192
+ "grad_norm": 0.22954149192739645,
3193
+ "learning_rate": 2.5925024511206207e-07,
3194
+ "loss": 0.238,
3195
+ "step": 455
3196
+ },
3197
+ {
3198
+ "epoch": 2.590909090909091,
3199
+ "grad_norm": 0.2237123859341468,
3200
+ "learning_rate": 2.52410402765933e-07,
3201
+ "loss": 0.2073,
3202
+ "step": 456
3203
+ },
3204
+ {
3205
+ "epoch": 2.596590909090909,
3206
+ "grad_norm": 0.24492186112063838,
3207
+ "learning_rate": 2.45657199599148e-07,
3208
+ "loss": 0.2319,
3209
+ "step": 457
3210
+ },
3211
+ {
3212
+ "epoch": 2.6022727272727275,
3213
+ "grad_norm": 0.2699569181048303,
3214
+ "learning_rate": 2.389908959314663e-07,
3215
+ "loss": 0.2275,
3216
+ "step": 458
3217
+ },
3218
+ {
3219
+ "epoch": 2.6079545454545454,
3220
+ "grad_norm": 0.3385798703479409,
3221
+ "learning_rate": 2.3241174873287892e-07,
3222
+ "loss": 0.2353,
3223
+ "step": 459
3224
+ },
3225
+ {
3226
+ "epoch": 2.6136363636363638,
3227
+ "grad_norm": 0.24587689957508765,
3228
+ "learning_rate": 2.2592001161370392e-07,
3229
+ "loss": 0.2269,
3230
+ "step": 460
3231
+ },
3232
+ {
3233
+ "epoch": 2.6193181818181817,
3234
+ "grad_norm": 0.2546095534311607,
3235
+ "learning_rate": 2.1951593481481236e-07,
3236
+ "loss": 0.2435,
3237
+ "step": 461
3238
+ },
3239
+ {
3240
+ "epoch": 2.625,
3241
+ "grad_norm": 0.3425334424188858,
3242
+ "learning_rate": 2.1319976519797862e-07,
3243
+ "loss": 0.2277,
3244
+ "step": 462
3245
+ },
3246
+ {
3247
+ "epoch": 2.6306818181818183,
3248
+ "grad_norm": 0.2266424757647852,
3249
+ "learning_rate": 2.0697174623636795e-07,
3250
+ "loss": 0.2515,
3251
+ "step": 463
3252
+ },
3253
+ {
3254
+ "epoch": 2.6363636363636362,
3255
+ "grad_norm": 0.3478031919431262,
3256
+ "learning_rate": 2.0083211800514868e-07,
3257
+ "loss": 0.2473,
3258
+ "step": 464
3259
+ },
3260
+ {
3261
+ "epoch": 2.6420454545454546,
3262
+ "grad_norm": 0.25923655545004287,
3263
+ "learning_rate": 1.9478111717223968e-07,
3264
+ "loss": 0.2284,
3265
+ "step": 465
3266
+ },
3267
+ {
3268
+ "epoch": 2.6477272727272725,
3269
+ "grad_norm": 0.20656881520592626,
3270
+ "learning_rate": 1.8881897698918544e-07,
3271
+ "loss": 0.2117,
3272
+ "step": 466
3273
+ },
3274
+ {
3275
+ "epoch": 2.653409090909091,
3276
+ "grad_norm": 0.23728611207119654,
3277
+ "learning_rate": 1.8294592728216764e-07,
3278
+ "loss": 0.2404,
3279
+ "step": 467
3280
+ },
3281
+ {
3282
+ "epoch": 2.659090909090909,
3283
+ "grad_norm": 0.2220771487213648,
3284
+ "learning_rate": 1.7716219444314204e-07,
3285
+ "loss": 0.2696,
3286
+ "step": 468
3287
+ },
3288
+ {
3289
+ "epoch": 2.6647727272727275,
3290
+ "grad_norm": 0.20381048055659795,
3291
+ "learning_rate": 1.7146800142111536e-07,
3292
+ "loss": 0.2339,
3293
+ "step": 469
3294
+ },
3295
+ {
3296
+ "epoch": 2.6704545454545454,
3297
+ "grad_norm": 0.2626669618263925,
3298
+ "learning_rate": 1.658635677135484e-07,
3299
+ "loss": 0.2531,
3300
+ "step": 470
3301
+ },
3302
+ {
3303
+ "epoch": 2.6761363636363638,
3304
+ "grad_norm": 0.28962842443201436,
3305
+ "learning_rate": 1.6034910935789628e-07,
3306
+ "loss": 0.2364,
3307
+ "step": 471
3308
+ },
3309
+ {
3310
+ "epoch": 2.6818181818181817,
3311
+ "grad_norm": 0.22258233394626142,
3312
+ "learning_rate": 1.5492483892328104e-07,
3313
+ "loss": 0.2313,
3314
+ "step": 472
3315
+ },
3316
+ {
3317
+ "epoch": 2.6875,
3318
+ "grad_norm": 0.22898287693164499,
3319
+ "learning_rate": 1.4959096550229645e-07,
3320
+ "loss": 0.2304,
3321
+ "step": 473
3322
+ },
3323
+ {
3324
+ "epoch": 2.6931818181818183,
3325
+ "grad_norm": 0.21073886345157697,
3326
+ "learning_rate": 1.44347694702949e-07,
3327
+ "loss": 0.2416,
3328
+ "step": 474
3329
+ },
3330
+ {
3331
+ "epoch": 2.6988636363636362,
3332
+ "grad_norm": 1.0729633168708006,
3333
+ "learning_rate": 1.391952286407311e-07,
3334
+ "loss": 0.2563,
3335
+ "step": 475
3336
+ },
3337
+ {
3338
+ "epoch": 2.7045454545454546,
3339
+ "grad_norm": 0.3533455916134876,
3340
+ "learning_rate": 1.341337659308309e-07,
3341
+ "loss": 0.2493,
3342
+ "step": 476
3343
+ },
3344
+ {
3345
+ "epoch": 2.7102272727272725,
3346
+ "grad_norm": 0.2577397312681227,
3347
+ "learning_rate": 1.291635016804768e-07,
3348
+ "loss": 0.2366,
3349
+ "step": 477
3350
+ },
3351
+ {
3352
+ "epoch": 2.715909090909091,
3353
+ "grad_norm": 0.2306912910968671,
3354
+ "learning_rate": 1.2428462748141523e-07,
3355
+ "loss": 0.2292,
3356
+ "step": 478
3357
+ },
3358
+ {
3359
+ "epoch": 2.721590909090909,
3360
+ "grad_norm": 0.22698482056742056,
3361
+ "learning_rate": 1.1949733140252468e-07,
3362
+ "loss": 0.2414,
3363
+ "step": 479
3364
+ },
3365
+ {
3366
+ "epoch": 2.7272727272727275,
3367
+ "grad_norm": 0.18931106378770035,
3368
+ "learning_rate": 1.1480179798256857e-07,
3369
+ "loss": 0.2211,
3370
+ "step": 480
3371
+ },
3372
+ {
3373
+ "epoch": 2.7329545454545454,
3374
+ "grad_norm": 0.21904198372370234,
3375
+ "learning_rate": 1.1019820822307986e-07,
3376
+ "loss": 0.2386,
3377
+ "step": 481
3378
+ },
3379
+ {
3380
+ "epoch": 2.7386363636363638,
3381
+ "grad_norm": 0.2033101000039358,
3382
+ "learning_rate": 1.056867395813832e-07,
3383
+ "loss": 0.251,
3384
+ "step": 482
3385
+ },
3386
+ {
3387
+ "epoch": 2.7443181818181817,
3388
+ "grad_norm": 0.19353522082992652,
3389
+ "learning_rate": 1.0126756596375687e-07,
3390
+ "loss": 0.2344,
3391
+ "step": 483
3392
+ },
3393
+ {
3394
+ "epoch": 2.75,
3395
+ "grad_norm": 0.30934234312647046,
3396
+ "learning_rate": 9.694085771872697e-08,
3397
+ "loss": 0.2314,
3398
+ "step": 484
3399
+ },
3400
+ {
3401
+ "epoch": 2.7556818181818183,
3402
+ "grad_norm": 0.19788186109536335,
3403
+ "learning_rate": 9.270678163050218e-08,
3404
+ "loss": 0.227,
3405
+ "step": 485
3406
+ },
3407
+ {
3408
+ "epoch": 2.7613636363636362,
3409
+ "grad_norm": 0.22823739130011358,
3410
+ "learning_rate": 8.856550091254302e-08,
3411
+ "loss": 0.252,
3412
+ "step": 486
3413
+ },
3414
+ {
3415
+ "epoch": 2.7670454545454546,
3416
+ "grad_norm": 0.2740360143378895,
3417
+ "learning_rate": 8.451717520127272e-08,
3418
+ "loss": 0.21,
3419
+ "step": 487
3420
+ },
3421
+ {
3422
+ "epoch": 2.7727272727272725,
3423
+ "grad_norm": 0.24604734634179243,
3424
+ "learning_rate": 8.056196054992193e-08,
3425
+ "loss": 0.2724,
3426
+ "step": 488
3427
+ },
3428
+ {
3429
+ "epoch": 2.778409090909091,
3430
+ "grad_norm": 0.6552142496694562,
3431
+ "learning_rate": 7.670000942251288e-08,
3432
+ "loss": 0.2484,
3433
+ "step": 489
3434
+ },
3435
+ {
3436
+ "epoch": 2.784090909090909,
3437
+ "grad_norm": 0.2192780573268507,
3438
+ "learning_rate": 7.293147068798384e-08,
3439
+ "loss": 0.2367,
3440
+ "step": 490
3441
+ },
3442
+ {
3443
+ "epoch": 2.7897727272727275,
3444
+ "grad_norm": 0.42226315361363354,
3445
+ "learning_rate": 6.92564896144493e-08,
3446
+ "loss": 0.2283,
3447
+ "step": 491
3448
+ },
3449
+ {
3450
+ "epoch": 2.7954545454545454,
3451
+ "grad_norm": 0.19585545271426144,
3452
+ "learning_rate": 6.56752078636011e-08,
3453
+ "loss": 0.2049,
3454
+ "step": 492
3455
+ },
3456
+ {
3457
+ "epoch": 2.8011363636363638,
3458
+ "grad_norm": 0.28626860845495716,
3459
+ "learning_rate": 6.218776348524663e-08,
3460
+ "loss": 0.237,
3461
+ "step": 493
3462
+ },
3463
+ {
3464
+ "epoch": 2.8068181818181817,
3465
+ "grad_norm": 0.2317197207710347,
3466
+ "learning_rate": 5.879429091198846e-08,
3467
+ "loss": 0.2348,
3468
+ "step": 494
3469
+ },
3470
+ {
3471
+ "epoch": 2.8125,
3472
+ "grad_norm": 0.22290822975196342,
3473
+ "learning_rate": 5.549492095404202e-08,
3474
+ "loss": 0.229,
3475
+ "step": 495
3476
+ },
3477
+ {
3478
+ "epoch": 2.8181818181818183,
3479
+ "grad_norm": 0.2189315388332226,
3480
+ "learning_rate": 5.2289780794192726e-08,
3481
+ "loss": 0.2148,
3482
+ "step": 496
3483
+ },
3484
+ {
3485
+ "epoch": 2.8238636363636362,
3486
+ "grad_norm": 0.2992947334378841,
3487
+ "learning_rate": 4.917899398289378e-08,
3488
+ "loss": 0.2462,
3489
+ "step": 497
3490
+ },
3491
+ {
3492
+ "epoch": 2.8295454545454546,
3493
+ "grad_norm": 0.22994410451461197,
3494
+ "learning_rate": 4.6162680433503024e-08,
3495
+ "loss": 0.2499,
3496
+ "step": 498
3497
+ },
3498
+ {
3499
+ "epoch": 2.8352272727272725,
3500
+ "grad_norm": 0.20864426108924167,
3501
+ "learning_rate": 4.3240956417661685e-08,
3502
+ "loss": 0.2396,
3503
+ "step": 499
3504
+ },
3505
+ {
3506
+ "epoch": 2.840909090909091,
3507
+ "grad_norm": 0.30251108346981104,
3508
+ "learning_rate": 4.0413934560811216e-08,
3509
+ "loss": 0.2644,
3510
+ "step": 500
3511
+ },
3512
+ {
3513
+ "epoch": 2.846590909090909,
3514
+ "grad_norm": 0.18457127510671542,
3515
+ "learning_rate": 3.768172383785268e-08,
3516
+ "loss": 0.2195,
3517
+ "step": 501
3518
+ },
3519
+ {
3520
+ "epoch": 2.8522727272727275,
3521
+ "grad_norm": 0.23763669865593898,
3522
+ "learning_rate": 3.504442956894533e-08,
3523
+ "loss": 0.2429,
3524
+ "step": 502
3525
+ },
3526
+ {
3527
+ "epoch": 2.8579545454545454,
3528
+ "grad_norm": 0.22394648398208236,
3529
+ "learning_rate": 3.250215341544766e-08,
3530
+ "loss": 0.2227,
3531
+ "step": 503
3532
+ },
3533
+ {
3534
+ "epoch": 2.8636363636363638,
3535
+ "grad_norm": 0.28772938681487004,
3536
+ "learning_rate": 3.005499337599777e-08,
3537
+ "loss": 0.2512,
3538
+ "step": 504
3539
+ },
3540
+ {
3541
+ "epoch": 2.8693181818181817,
3542
+ "grad_norm": 0.20045670964039816,
3543
+ "learning_rate": 2.7703043782735527e-08,
3544
+ "loss": 0.2207,
3545
+ "step": 505
3546
+ },
3547
+ {
3548
+ "epoch": 2.875,
3549
+ "grad_norm": 0.2988401612109738,
3550
+ "learning_rate": 2.544639529766829e-08,
3551
+ "loss": 0.2518,
3552
+ "step": 506
3553
+ },
3554
+ {
3555
+ "epoch": 2.8806818181818183,
3556
+ "grad_norm": 0.23304873762081754,
3557
+ "learning_rate": 2.3285134909173113e-08,
3558
+ "loss": 0.2713,
3559
+ "step": 507
3560
+ },
3561
+ {
3562
+ "epoch": 2.8863636363636362,
3563
+ "grad_norm": 0.20304650842985458,
3564
+ "learning_rate": 2.1219345928646107e-08,
3565
+ "loss": 0.2342,
3566
+ "step": 508
3567
+ },
3568
+ {
3569
+ "epoch": 2.8920454545454546,
3570
+ "grad_norm": 0.22037485443764462,
3571
+ "learning_rate": 1.924910798728946e-08,
3572
+ "loss": 0.2711,
3573
+ "step": 509
3574
+ },
3575
+ {
3576
+ "epoch": 2.8977272727272725,
3577
+ "grad_norm": 0.21005813876379573,
3578
+ "learning_rate": 1.7374497033042504e-08,
3579
+ "loss": 0.2561,
3580
+ "step": 510
3581
+ },
3582
+ {
3583
+ "epoch": 2.903409090909091,
3584
+ "grad_norm": 0.2557348418435861,
3585
+ "learning_rate": 1.559558532765404e-08,
3586
+ "loss": 0.2289,
3587
+ "step": 511
3588
+ },
3589
+ {
3590
+ "epoch": 2.909090909090909,
3591
+ "grad_norm": 0.23331959502677055,
3592
+ "learning_rate": 1.3912441443896529e-08,
3593
+ "loss": 0.2441,
3594
+ "step": 512
3595
+ },
3596
+ {
3597
+ "epoch": 2.9147727272727275,
3598
+ "grad_norm": 0.19984687683627483,
3599
+ "learning_rate": 1.2325130262923202e-08,
3600
+ "loss": 0.224,
3601
+ "step": 513
3602
+ },
3603
+ {
3604
+ "epoch": 2.9204545454545454,
3605
+ "grad_norm": 0.2743804065799622,
3606
+ "learning_rate": 1.0833712971766442e-08,
3607
+ "loss": 0.2375,
3608
+ "step": 514
3609
+ },
3610
+ {
3611
+ "epoch": 2.9261363636363638,
3612
+ "grad_norm": 0.2224715742517231,
3613
+ "learning_rate": 9.438247060979954e-09,
3614
+ "loss": 0.2487,
3615
+ "step": 515
3616
+ },
3617
+ {
3618
+ "epoch": 2.9318181818181817,
3619
+ "grad_norm": 0.2479834665000146,
3620
+ "learning_rate": 8.13878632242221e-09,
3621
+ "loss": 0.2297,
3622
+ "step": 516
3623
+ },
3624
+ {
3625
+ "epoch": 2.9375,
3626
+ "grad_norm": 0.2886169100995835,
3627
+ "learning_rate": 6.935380847182815e-09,
3628
+ "loss": 0.2415,
3629
+ "step": 517
3630
+ },
3631
+ {
3632
+ "epoch": 2.9431818181818183,
3633
+ "grad_norm": 0.28419909160412293,
3634
+ "learning_rate": 5.828077023651846e-09,
3635
+ "loss": 0.2595,
3636
+ "step": 518
3637
+ },
3638
+ {
3639
+ "epoch": 2.9488636363636362,
3640
+ "grad_norm": 0.21987658336814492,
3641
+ "learning_rate": 4.816917535731547e-09,
3642
+ "loss": 0.2294,
3643
+ "step": 519
3644
+ },
3645
+ {
3646
+ "epoch": 2.9545454545454546,
3647
+ "grad_norm": 0.20939447966816221,
3648
+ "learning_rate": 3.9019413611907084e-09,
3649
+ "loss": 0.2229,
3650
+ "step": 520
3651
+ },
3652
+ {
3653
+ "epoch": 2.9602272727272725,
3654
+ "grad_norm": 0.2845597794271702,
3655
+ "learning_rate": 3.083183770162812e-09,
3656
+ "loss": 0.249,
3657
+ "step": 521
3658
+ },
3659
+ {
3660
+ "epoch": 2.965909090909091,
3661
+ "grad_norm": 0.355389728910669,
3662
+ "learning_rate": 2.360676323786282e-09,
3663
+ "loss": 0.2279,
3664
+ "step": 522
3665
+ },
3666
+ {
3667
+ "epoch": 2.971590909090909,
3668
+ "grad_norm": 0.24621464957062172,
3669
+ "learning_rate": 1.7344468729868502e-09,
3670
+ "loss": 0.2407,
3671
+ "step": 523
3672
+ },
3673
+ {
3674
+ "epoch": 2.9772727272727275,
3675
+ "grad_norm": 0.20550412698336787,
3676
+ "learning_rate": 1.2045195574056367e-09,
3677
+ "loss": 0.2218,
3678
+ "step": 524
3679
+ },
3680
+ {
3681
+ "epoch": 2.9829545454545454,
3682
+ "grad_norm": 0.3911983722494495,
3683
+ "learning_rate": 7.709148044679482e-10,
3684
+ "loss": 0.2403,
3685
+ "step": 525
3686
+ },
3687
+ {
3688
+ "epoch": 2.9886363636363638,
3689
+ "grad_norm": 0.3446613906141255,
3690
+ "learning_rate": 4.3364932859474293e-10,
3691
+ "loss": 0.2473,
3692
+ "step": 526
3693
+ },
3694
+ {
3695
+ "epoch": 2.9943181818181817,
3696
+ "grad_norm": 0.1984549594751942,
3697
+ "learning_rate": 1.9273613056008945e-10,
3698
+ "loss": 0.2491,
3699
+ "step": 527
3700
+ },
3701
+ {
3702
+ "epoch": 3.0,
3703
+ "grad_norm": 0.2533625348100663,
3704
+ "learning_rate": 4.8184496989067684e-11,
3705
+ "loss": 0.253,
3706
+ "step": 528
3707
+ },
3708
+ {
3709
+ "epoch": 3.0,
3710
+ "step": 528,
3711
+ "total_flos": 1.2947155177386803e+18,
3712
+ "train_loss": 0.25888053223377827,
3713
+ "train_runtime": 205758.8415,
3714
+ "train_samples_per_second": 0.164,
3715
+ "train_steps_per_second": 0.003
3716
+ }
3717
+ ],
3718
+ "logging_steps": 1.0,
3719
+ "max_steps": 528,
3720
+ "num_input_tokens_seen": 0,
3721
+ "num_train_epochs": 3,
3722
+ "save_steps": 500,
3723
+ "stateful_callbacks": {
3724
+ "TrainerControl": {
3725
+ "args": {
3726
+ "should_epoch_stop": false,
3727
+ "should_evaluate": false,
3728
+ "should_log": false,
3729
+ "should_save": true,
3730
+ "should_training_stop": true
3731
+ },
3732
+ "attributes": {}
3733
+ }
3734
+ },
3735
+ "total_flos": 1.2947155177386803e+18,
3736
+ "train_batch_size": 1,
3737
+ "trial_name": null,
3738
+ "trial_params": null
3739
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cd1b75c8d1816d01a034bc687c7c7c89c79b66ccbd9a9f864800bcde9b85526
3
+ size 6968
vocab.json ADDED
The diff for this file is too large to render. See raw diff