diff --git a/.gitattributes b/.gitattributes
index e40e7b09629db7f7978c51ee801e664487698ca4..4ebb41122c3e4bd8e5176e58ad4a05cf7b60f6f8 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -107,3 +107,14 @@ runs/mt5-ssl/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/mt5-ssl/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/mt5-ssl/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/mt5-ssl/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/bi-ssl/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/bi-ssl/checkpoint-1080/chat_template.jinja b/runs/bi-ssl/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-1080/config.json b/runs/bi-ssl/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-1080/generation_config.json b/runs/bi-ssl/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-1080/model.safetensors b/runs/bi-ssl/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e8954f72a6747e472017d79d45948f1ac25d5409
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6aa50ab4a1460b985ae16316470e794c9ccee44eb25f681cbf4344ecc8dbbc9a
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-1080/optimizer.pt b/runs/bi-ssl/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..115407091f1a257727ad630f70bd21be100daaa3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1dadc5a8beeab39e3cca09fea4de77ecc4f1dbfa442fe24b34f2a46719417eca
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-1080/rng_state_0.pth b/runs/bi-ssl/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ff81a4a04de793f1c690eab304502628a6f01a16
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e64ff3db32365cabac6ffad743c22ab2586a3c7538842f851d54fcc9b00320b
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1080/rng_state_1.pth b/runs/bi-ssl/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2e0fc04a0aae1c0cb2027f4e52b0d2e25910d9a8
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:837b65fefb8e1f24a6981b0d4649ff164abbce25b5c9c0d885ed58d7e0986bae
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1080/scheduler.pt b/runs/bi-ssl/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3e275d97268eb212b051090ffcda70a20a7bd2eb
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bdeda49f9c209232e61e89d6b373289c81e91ac24ee327462ddf24dddafe25ed
+size 1465
diff --git a/runs/bi-ssl/checkpoint-1080/tokenizer.json b/runs/bi-ssl/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-1080/tokenizer_config.json b/runs/bi-ssl/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-1080/trainer_state.json b/runs/bi-ssl/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ec2ae4865c701c0b54117baa11d79c0c08f36f9b
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/trainer_state.json
@@ -0,0 +1,7706 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 15.0,
+ "eval_steps": 500,
+ "global_step": 1080,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 4.6164840246411264e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-1080/training_args.bin b/runs/bi-ssl/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-1440/chat_template.jinja b/runs/bi-ssl/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-1440/config.json b/runs/bi-ssl/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-1440/generation_config.json b/runs/bi-ssl/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-1440/model.safetensors b/runs/bi-ssl/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5ac70a5df767b68952b60dc8b3af3b8f15d18398
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:92c3bec79436f07ef5a69c7afe82bfc10591cd245f854d1eae5e92af171100e3
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-1440/optimizer.pt b/runs/bi-ssl/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f07aa0c51a1532d6c107fc2f23670128720e0190
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:790bb76c8848800559abc5ae9cb4f991667c834075fffa42eb3d0a9df9e2fc48
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-1440/rng_state_0.pth b/runs/bi-ssl/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3c396253e5ad58aa3254e1cb9364198815e3ba61
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad41999a3021e51cc92b222472cf4756a254132cabf58c4c2e1ee206c7366885
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1440/rng_state_1.pth b/runs/bi-ssl/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..08b5f24cb1ec06dc192e471442f86bfe5e398030
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29848a162fabe62f2066ebb397d9dc38254fb7b578fd1c8908975df46738482d
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1440/scheduler.pt b/runs/bi-ssl/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e00c7bc69a3fbefc469c85cfede8a8a9403ecdc8
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5ca62ced3e9ed490d18d005ea4ac3ea68e1b051ea3ef0feded5dd8875ffb40a4
+size 1465
diff --git a/runs/bi-ssl/checkpoint-1440/tokenizer.json b/runs/bi-ssl/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-1440/tokenizer_config.json b/runs/bi-ssl/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-1440/trainer_state.json b/runs/bi-ssl/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..f91f9631590427b4ea53e1c27c7a56512f106eae
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/trainer_state.json
@@ -0,0 +1,10266 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 20.0,
+ "eval_steps": 500,
+ "global_step": 1440,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 6.155312032854835e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-1440/training_args.bin b/runs/bi-ssl/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-1800/chat_template.jinja b/runs/bi-ssl/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-1800/config.json b/runs/bi-ssl/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-1800/generation_config.json b/runs/bi-ssl/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-1800/model.safetensors b/runs/bi-ssl/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..48f09cdb9b8848f5d4b033d8cf5a0449c0d35f2a
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29236905c41ef1b55dcb353efb7c80be0a7eb6631c9c95fcf11e71473660d579
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-1800/optimizer.pt b/runs/bi-ssl/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..476506027e7aad16adb078709b6d67ab0e36f7c8
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:09cf3c04faf8a0bff91e44417506108cf187dbfc15e90358d0511d5061096958
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-1800/rng_state_0.pth b/runs/bi-ssl/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..304a7576d9bd060137258dba420a3e1ff00587c1
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:987694c44f0af3a8ae4e43e3677bef48a1cfa8e57eee3832ef223e9b8ad80516
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1800/rng_state_1.pth b/runs/bi-ssl/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..75486c47bfa9499bfe91975e3af3355c9526365c
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea5ecba78b648c2a45cab91d590e52b7295077372e6bf91c1591d3fb6a5535ca
+size 14917
diff --git a/runs/bi-ssl/checkpoint-1800/scheduler.pt b/runs/bi-ssl/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cc00d28bf1d3c152dd57b4e152eebb5a75268a48
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5c13118c758fe95682074ef807a1660af2ca020e5b32dd995760a77b78e786f0
+size 1465
diff --git a/runs/bi-ssl/checkpoint-1800/tokenizer.json b/runs/bi-ssl/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-1800/tokenizer_config.json b/runs/bi-ssl/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-1800/trainer_state.json b/runs/bi-ssl/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..178ee640c144e4ab0cba98e6943d8c3514b3dd04
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/trainer_state.json
@@ -0,0 +1,12826 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 25.0,
+ "eval_steps": 500,
+ "global_step": 1800,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 7.694140041068544e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-1800/training_args.bin b/runs/bi-ssl/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-2160/chat_template.jinja b/runs/bi-ssl/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-2160/config.json b/runs/bi-ssl/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-2160/generation_config.json b/runs/bi-ssl/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-2160/model.safetensors b/runs/bi-ssl/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..461b388e8bcf00b388e06ef0d344e850c78f9367
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc396082f4ba622f70d77d0974b7f4dac32f2aea71cbe41ce64dcb65d5becb9d
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-2160/optimizer.pt b/runs/bi-ssl/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..436ae8e7c74763a948d58d3fc7871e58f4e4f69b
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a6818dd06def12ab60be49de9c5d0fb54d86a8da47695736dfad4a9e4969b70f
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-2160/rng_state_0.pth b/runs/bi-ssl/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..86ca1aad69953afb19f9f8da4c01764c2f44d22b
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:253e65ee29b5e996242fd0eef4ab59e40fe385a114b29c442de150cf74084b60
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2160/rng_state_1.pth b/runs/bi-ssl/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3031af55ab1520df411513147e482ece04c4d4f6
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:04c9d382d23a06579a44352e657618aaf7b647b0f5de65751c81300c8f96f42a
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2160/scheduler.pt b/runs/bi-ssl/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cfe439753906dadad51f11779ef9f425378a7857
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5cb2a89dd39217d5729496222633b6ae963778e9f10a9c38309eff07088a5195
+size 1465
diff --git a/runs/bi-ssl/checkpoint-2160/tokenizer.json b/runs/bi-ssl/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-2160/tokenizer_config.json b/runs/bi-ssl/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-2160/trainer_state.json b/runs/bi-ssl/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ce0153829e8166bca0be76491a8b3868a6cd030f
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/trainer_state.json
@@ -0,0 +1,15386 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 30.0,
+ "eval_steps": 500,
+ "global_step": 2160,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.5535854697227478,
+ "eval_runtime": 41.148,
+ "eval_samples_per_second": 59.347,
+ "eval_steps_per_second": 0.486,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.039032384753227234,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.9920241832733154,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.041609007865190506,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9881491661071777,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.038623128086328506,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9976372718811035,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.03914353623986244,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9816069602966309,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.04063460975885391,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 2.0046496391296387,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.042663004249334335,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9930580854415894,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.040998101234436035,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 2.008364677429199,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.041671473532915115,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 2.005788803100586,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.0420398935675621,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.9959884881973267,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.0416552871465683,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.9947746992111206,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.041419412940740585,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9942247867584229,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.04148508235812187,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9945931434631348,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.041060201823711395,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 2.0063748359680176,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.040119070559740067,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 2.000641107559204,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.04179691895842552,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9936890602111816,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.040200114250183105,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9800493717193604,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.03986869752407074,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.9906518459320068,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.043195679783821106,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9976487159729004,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.03883126378059387,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 2.001391887664795,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.03800702840089798,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 2.004763603210449,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0407932847738266,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.9919681549072266,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.0401216596364975,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9732658863067627,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.03860956430435181,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9886324405670166,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.040160007774829865,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 2.0077905654907227,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.04022439941763878,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9821927547454834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.041961729526519775,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9947912693023682,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.04093684256076813,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 2.007406234741211,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.04111676663160324,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 2.0099968910217285,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.03939409554004669,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 2.0050230026245117,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.039408158510923386,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.989539384841919,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.039070483297109604,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 2.0107581615448,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.03986838087439537,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 2.007388114929199,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.03872528672218323,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 2.002636194229126,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.03786979243159294,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9882686138153076,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.037976834923028946,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 2.020331621170044,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.037561025470495224,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.998062014579773,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.040928397327661514,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.9984104633331299,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.038733627647161484,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 2.023151397705078,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.03880929574370384,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9985425472259521,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.040410179644823074,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 2.0105319023132324,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.04060919210314751,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9950847625732422,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.038462985306978226,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 2.0109362602233887,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.03816642239689827,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 2.013629913330078,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.03969560191035271,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.98691987991333,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.0382484570145607,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 2.0075533390045166,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.03932507336139679,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 2.014407157897949,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.038706980645656586,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9987857341766357,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.03753427788615227,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.9929393529891968,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.03967666998505592,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 2.0053462982177734,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.03984595835208893,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 2.0171046257019043,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.03843587636947632,
+ "learning_rate": 0.000303,
+ "loss": 2.016073703765869,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.04069933295249939,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 2.0196797847747803,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.03816717118024826,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9992872476577759,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.03972223773598671,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 2.0082225799560547,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.03925364091992378,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 2.0078647136688232,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.03874839469790459,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.9888811111450195,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.03876980394124985,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 2.0105342864990234,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.037127457559108734,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 2.0146484375,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.04017023742198944,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 2.0216569900512695,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.038180865347385406,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 2.007103443145752,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.037544023245573044,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 2.002417802810669,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.04044882953166962,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 2.01629638671875,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.03934580460190773,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 2.015477418899536,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.038512952625751495,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 2.0063209533691406,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.04022837057709694,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 2.0138511657714844,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.041775189340114594,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 2.0133614540100098,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.035933662205934525,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 2.014932632446289,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.03949640318751335,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 2.0103020668029785,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.03965448960661888,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 2.004199504852295,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.03770808130502701,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9988662004470825,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.03707122802734375,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.018692970275879,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.03094588965177536,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4853765964508057,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.5541954636573792,
+ "eval_runtime": 40.5827,
+ "eval_samples_per_second": 60.173,
+ "eval_steps_per_second": 0.493,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.0392163060605526,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9966017007827759,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.0415823757648468,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9879624843597412,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.04013896360993385,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.988283395767212,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.03999984636902809,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9808108806610107,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.04117234796285629,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9704176187515259,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.04188748076558113,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9882853031158447,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.04021158069372177,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 2.000579595565796,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.041353169828653336,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9934958219528198,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.04121048375964165,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9767675399780273,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.04130895063281059,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9964344501495361,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.043271005153656006,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9858148097991943,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.041478291153907776,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.9812901020050049,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.03920124098658562,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.9811720848083496,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.041624993085861206,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.9834777116775513,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.040084224194288254,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.986745834350586,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.04137095808982849,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.973207712173462,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.041268061846494675,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.992466688156128,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.03843039646744728,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.977168083190918,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.041724126785993576,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.968721866607666,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.03939545527100563,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9894965887069702,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.041979216039180756,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.9862024784088135,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.04003292694687843,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9772882461547852,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.043241675943136215,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9868083000183105,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.04085911810398102,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9829399585723877,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.042357802391052246,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.996422529220581,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.04186234250664711,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 2.004091739654541,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.041697580367326736,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9707295894622803,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.044106002897024155,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9954397678375244,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.042095571756362915,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.978273868560791,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.04259150102734566,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9970736503601074,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.04311408847570419,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.9791979789733887,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.0417819544672966,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9963579177856445,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.041719887405633926,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9846333265304565,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.03955843672156334,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9993603229522705,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.041470643132925034,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 2.00172758102417,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.042907752096652985,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9878431558609009,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.04169829934835434,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9879419803619385,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.041907984763383865,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9958174228668213,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.04091141000390053,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9915833473205566,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.04279981926083565,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 2.0011239051818848,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.04060981422662735,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 2.008984088897705,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.04239627346396446,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9861326217651367,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.041348736733198166,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9886527061462402,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.04240468144416809,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 2.0117287635803223,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.04239945858716965,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.9927752017974854,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.04039507359266281,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9964733123779297,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.040595248341560364,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.996137022972107,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.04081724211573601,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.999343752861023,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.039217282086610794,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.9974390268325806,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.040758758783340454,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9964487552642822,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.04097484052181244,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.9863066673278809,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.03944368660449982,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 2.0107219219207764,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.04319391027092934,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9830152988433838,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.04203958436846733,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 2.01261568069458,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.03908214345574379,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 2.002816677093506,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.04401380196213722,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9947903156280518,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.04078475758433342,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.9908418655395508,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.03904392570257187,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.9999381303787231,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.0408707857131958,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.976728916168213,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.03951644524931908,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.9820250272750854,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.038964930921792984,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9985617399215698,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.03885824978351593,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 2.012847900390625,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.04176724702119827,
+ "learning_rate": 0.000280627938758204,
+ "loss": 2.000138521194458,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.03801671043038368,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9985980987548828,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.03998260200023651,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 2.016493320465088,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.041373904794454575,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.996181607246399,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.04230344295501709,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.994934320449829,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.03852430358529091,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9986990690231323,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.04095832630991936,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 2.0044407844543457,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.039320334792137146,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9949603080749512,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.039367519319057465,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9997683763504028,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.03257475048303604,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.5053578615188599,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.5548559427261353,
+ "eval_runtime": 39.9404,
+ "eval_samples_per_second": 61.141,
+ "eval_steps_per_second": 0.501,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.04034148156642914,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9629207849502563,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.04501507431268692,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.974515676498413,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.04124121740460396,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9755148887634277,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.04242594540119171,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9660277366638184,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.04222042113542557,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.969848871231079,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.041065510362386703,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9839062690734863,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.04202630743384361,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9626474380493164,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.03920961171388626,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9699093103408813,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.041874419897794724,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9744274616241455,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.04031674563884735,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9619100093841553,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.04077756404876709,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.977008581161499,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.0406559556722641,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9602702856063843,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.0407014898955822,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9805724620819092,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.04144314303994179,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9797005653381348,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.03987768292427063,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9890257120132446,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.04087170585989952,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9670617580413818,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.0421152263879776,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9832180738449097,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.041151583194732666,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.979284405708313,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.04098111018538475,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9762449264526367,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.040003713220357895,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9810866117477417,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.039482954889535904,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.9789704084396362,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.040345363318920135,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9768264293670654,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.038912542164325714,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9986684322357178,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.04091883823275566,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.9675683975219727,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.040190439671278,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9741504192352295,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.040189869701862335,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9939947128295898,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.041559718549251556,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.988523244857788,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.04450741782784462,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9801191091537476,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.04318423569202423,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9808297157287598,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.039648231118917465,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.995420217514038,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.04360787943005562,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9885940551757812,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.04208594560623169,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.991687536239624,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.041687630116939545,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9881685972213745,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.04600570350885391,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.9956451654434204,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.04074542596936226,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9823975563049316,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.04009614884853363,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.9956731796264648,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.04262600094079971,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9813146591186523,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.04119280353188515,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9755754470825195,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.039549387991428375,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9963082075119019,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.04041566327214241,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9689855575561523,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.0396316759288311,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9947049617767334,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.03907989338040352,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.980762243270874,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.04385632649064064,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.990250825881958,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.04149923846125603,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.9612936973571777,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.041488222777843475,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 2.0052437782287598,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.04136145859956741,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9815279245376587,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.03946318477392197,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.984222650527954,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.03961804881691933,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9865868091583252,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0396062508225441,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9827325344085693,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.03807860612869263,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.969796061515808,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.040188297629356384,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.9754271507263184,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.04030116647481918,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.984015703201294,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.03954409807920456,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.986281394958496,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.03851275518536568,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9770636558532715,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.039922576397657394,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9833152294158936,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.040427785366773605,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9849940538406372,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.03961245343089104,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.9793310165405273,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.038811273872852325,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9942911863327026,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.03950529173016548,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9915971755981445,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.04060761258006096,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9923640489578247,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.03954262658953667,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.969840168952942,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.040870875120162964,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.986947774887085,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.03830090910196304,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9978424310684204,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.04211213067173958,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9800487756729126,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.039632175117731094,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9931446313858032,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.04033558815717697,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.994535207748413,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.040556881576776505,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.990935206413269,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.0404195562005043,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9928548336029053,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.03944119065999985,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9880776405334473,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.041356492787599564,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 2.0028457641601562,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.040106043219566345,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.9898993968963623,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03221338987350464,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.476259469985962,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.5553070902824402,
+ "eval_runtime": 49.7026,
+ "eval_samples_per_second": 49.132,
+ "eval_steps_per_second": 0.402,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.040987614542245865,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.9529434442520142,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.041120950132608414,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9582853317260742,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.03971652314066887,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.968639850616455,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.03996049612760544,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.9660120010375977,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.041076596826314926,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9702348709106445,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.042114660143852234,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.958723545074463,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.041039030998945236,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9631943702697754,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.03982028365135193,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9652111530303955,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.03985974192619324,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.963340401649475,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.04071837291121483,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9834423065185547,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.04139500856399536,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9624135494232178,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.04257931560277939,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.984895944595337,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.04105570912361145,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.965362787246704,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.04104257747530937,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.972224235534668,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.04118179529905319,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.970554232597351,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.042708441615104675,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.9676144123077393,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.04269356653094292,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9650506973266602,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.04225006699562073,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9717724323272705,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.044967059046030045,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.962235689163208,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.042227912694215775,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9613938331604004,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.04277089610695839,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.9753990173339844,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.04182279482483864,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9625771045684814,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.04324203357100487,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.968394160270691,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.04029430076479912,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9559634923934937,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.0409722626209259,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.9495587348937988,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.042297445237636566,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9796255826950073,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.04394613206386566,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9650824069976807,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.041808269917964935,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.9505605697631836,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.043006978929042816,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.9647276401519775,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.04460060968995094,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.9642753601074219,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.04388919845223427,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.9735398292541504,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.04144032299518585,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9798399209976196,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.04448307305574417,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9688754081726074,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.04168044030666351,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.9607760906219482,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.04390672221779823,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.985724687576294,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.05282226577401161,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.971274733543396,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.04509815573692322,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9798986911773682,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.04231378436088562,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9754219055175781,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.04514963924884796,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9875903129577637,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.04290074110031128,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9779725074768066,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.043086808174848557,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9822276830673218,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.041193511337041855,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.956713318824768,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.041158173233270645,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9508072137832642,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.04199864715337753,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9838216304779053,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.042495034635066986,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9770547151565552,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.04065609350800514,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9711198806762695,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.04315977916121483,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.957960605621338,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.04295031726360321,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9879754781723022,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.04057304933667183,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9813754558563232,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.041819434612989426,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.967017650604248,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.04248471185564995,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9724358320236206,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.043477047234773636,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9974957704544067,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.041802674531936646,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.969354510307312,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.0430421382188797,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.9911510944366455,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.04107428342103958,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.975877046585083,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.04443598911166191,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9712554216384888,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.04327385500073433,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9681297540664673,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.04173135384917259,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9472997188568115,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.04201003164052963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9661506414413452,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.04078659787774086,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.9666576385498047,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0406930036842823,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.9849047660827637,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.042122919112443924,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.9777114391326904,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.04120451211929321,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.969825267791748,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.04186492785811424,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.994114637374878,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.04207214340567589,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.9899489879608154,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.044357068836688995,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.9830305576324463,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.04240988567471504,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9758679866790771,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.04397385194897652,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9774196147918701,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.04195938631892204,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.9627633094787598,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.04116087406873703,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.967322826385498,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.04200683906674385,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9736065864562988,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.0335347019135952,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.465168833732605,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.5561301708221436,
+ "eval_runtime": 40.3807,
+ "eval_samples_per_second": 60.474,
+ "eval_steps_per_second": 0.495,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.041839007288217545,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.962834119796753,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.04494776204228401,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9620225429534912,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.04260874167084694,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.9532074928283691,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.041091833263635635,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.9500408172607422,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.04230482876300812,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.9540523290634155,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.04213967174291611,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.9378814697265625,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.04107899218797684,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.9528520107269287,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.042169325053691864,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.9380617141723633,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.04244079068303108,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.9579730033874512,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.041498638689517975,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.9536144733428955,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.040074724704027176,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.9410881996154785,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.04285141080617905,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.948718786239624,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.041612278670072556,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.9381821155548096,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.04301951825618744,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.9557945728302002,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.04282021522521973,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.9603688716888428,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.046332504600286484,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.9555209875106812,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0429227314889431,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.9428198337554932,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.04214467853307724,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9655869007110596,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.04359026253223419,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.9500617980957031,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.041300319135189056,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.9598267078399658,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.04707876220345497,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.9480507373809814,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.04198484867811203,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.9500718116760254,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.04452266916632652,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.967477560043335,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.04509236291050911,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.95900297164917,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.04348349943757057,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.9371505975723267,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.04213197901844978,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.9548835754394531,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.04171326011419296,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.9320429563522339,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.040957994759082794,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9708552360534668,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.042061030864715576,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.9647853374481201,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.042551394551992416,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9628281593322754,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.04178022965788841,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9609858989715576,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.041741300374269485,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.965749740600586,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.043949443846940994,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9692953824996948,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.04203510284423828,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9678642749786377,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.043694913387298584,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.9455668926239014,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.042708177119493484,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.965721845626831,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.04325935244560242,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.952937126159668,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.04308290407061577,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9778510332107544,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.04172641783952713,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9692282676696777,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.04281787946820259,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.9532403945922852,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.04087405279278755,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.961708903312683,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.04168091341853142,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.977181077003479,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.04360164329409599,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9583289623260498,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.04258623719215393,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.969384789466858,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.04215861111879349,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9673523902893066,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.04312222823500633,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.9638433456420898,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.04376685991883278,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9621204137802124,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.04453703761100769,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9714503288269043,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.04112813621759415,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9752442836761475,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.041888099163770676,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9700050354003906,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.040998443961143494,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9721579551696777,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.04311826825141907,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.980010747909546,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.04124320298433304,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.952293872833252,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.042228251695632935,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9557874202728271,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.04347359761595726,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.963796854019165,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.03958803787827492,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.9730989933013916,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.043780308216810226,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.9558871984481812,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.04270954802632332,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9668874740600586,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.043424077332019806,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9625186920166016,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.0442342534661293,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.9585497379302979,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.04140656068921089,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.9448176622390747,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.0448518805205822,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.9776833057403564,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.04289280250668526,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.957261085510254,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.04201837256550789,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9734320640563965,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.04439011961221695,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9649404287338257,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.0432993583381176,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.96087646484375,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.042321283370256424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9586503505706787,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.04592757672071457,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9700541496276855,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.041818130761384964,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9758845567703247,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.04364927113056183,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9568970203399658,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.04458127170801163,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.966611385345459,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03495609387755394,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.468475341796875,
+ "step": 2160
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 9.232968049282253e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-2160/training_args.bin b/runs/bi-ssl/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-2520/chat_template.jinja b/runs/bi-ssl/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-2520/config.json b/runs/bi-ssl/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-2520/generation_config.json b/runs/bi-ssl/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-2520/model.safetensors b/runs/bi-ssl/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..5207b4dbd5d1361805c91df8410a2a5336a5ecdc
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d23468b71ce01d37477d2da3be4f93b589e41a9caf7a9ad8f2c45e15371260e5
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-2520/optimizer.pt b/runs/bi-ssl/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b74b72b8f4469a1770a8da02eab85a37556b15b3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c8f083f5c9d1a8fd5710697e839fb8303f4298982228b99b3b2e07bb11010c62
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-2520/rng_state_0.pth b/runs/bi-ssl/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f6a767b5a760715c982d5f3b7abf7f7ae7024858
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77a1aaa8594be4aeac424d02802142f8409ed1e2897c1e46e3c37ed12b93e83c
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2520/rng_state_1.pth b/runs/bi-ssl/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b0b2ce7324fa0e3d93e84f806452f72a932cb665
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8be9b03fd0264df00f58b952952d0e7adf408ae412c760c45b6919b81dd07768
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2520/scheduler.pt b/runs/bi-ssl/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..809e415b980a88e74111733a8fbd497a2408afe5
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f5902b2719418cfd49abef69bf26be14b2bfe0841a35d7789b90886cf8ba0fb
+size 1465
diff --git a/runs/bi-ssl/checkpoint-2520/tokenizer.json b/runs/bi-ssl/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-2520/tokenizer_config.json b/runs/bi-ssl/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-2520/trainer_state.json b/runs/bi-ssl/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..bd2eb5d7d0d12c822508afae10496c258b365ea2
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/trainer_state.json
@@ -0,0 +1,17946 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 35.0,
+ "eval_steps": 500,
+ "global_step": 2520,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.5535854697227478,
+ "eval_runtime": 41.148,
+ "eval_samples_per_second": 59.347,
+ "eval_steps_per_second": 0.486,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.039032384753227234,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.9920241832733154,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.041609007865190506,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9881491661071777,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.038623128086328506,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9976372718811035,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.03914353623986244,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9816069602966309,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.04063460975885391,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 2.0046496391296387,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.042663004249334335,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9930580854415894,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.040998101234436035,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 2.008364677429199,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.041671473532915115,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 2.005788803100586,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.0420398935675621,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.9959884881973267,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.0416552871465683,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.9947746992111206,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.041419412940740585,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9942247867584229,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.04148508235812187,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9945931434631348,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.041060201823711395,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 2.0063748359680176,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.040119070559740067,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 2.000641107559204,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.04179691895842552,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9936890602111816,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.040200114250183105,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9800493717193604,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.03986869752407074,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.9906518459320068,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.043195679783821106,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9976487159729004,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.03883126378059387,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 2.001391887664795,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.03800702840089798,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 2.004763603210449,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0407932847738266,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.9919681549072266,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.0401216596364975,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9732658863067627,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.03860956430435181,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9886324405670166,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.040160007774829865,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 2.0077905654907227,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.04022439941763878,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9821927547454834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.041961729526519775,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9947912693023682,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.04093684256076813,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 2.007406234741211,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.04111676663160324,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 2.0099968910217285,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.03939409554004669,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 2.0050230026245117,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.039408158510923386,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.989539384841919,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.039070483297109604,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 2.0107581615448,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.03986838087439537,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 2.007388114929199,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.03872528672218323,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 2.002636194229126,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.03786979243159294,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9882686138153076,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.037976834923028946,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 2.020331621170044,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.037561025470495224,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.998062014579773,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.040928397327661514,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.9984104633331299,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.038733627647161484,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 2.023151397705078,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.03880929574370384,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9985425472259521,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.040410179644823074,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 2.0105319023132324,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.04060919210314751,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9950847625732422,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.038462985306978226,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 2.0109362602233887,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.03816642239689827,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 2.013629913330078,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.03969560191035271,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.98691987991333,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.0382484570145607,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 2.0075533390045166,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.03932507336139679,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 2.014407157897949,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.038706980645656586,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9987857341766357,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.03753427788615227,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.9929393529891968,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.03967666998505592,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 2.0053462982177734,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.03984595835208893,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 2.0171046257019043,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.03843587636947632,
+ "learning_rate": 0.000303,
+ "loss": 2.016073703765869,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.04069933295249939,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 2.0196797847747803,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.03816717118024826,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9992872476577759,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.03972223773598671,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 2.0082225799560547,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.03925364091992378,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 2.0078647136688232,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.03874839469790459,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.9888811111450195,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.03876980394124985,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 2.0105342864990234,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.037127457559108734,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 2.0146484375,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.04017023742198944,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 2.0216569900512695,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.038180865347385406,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 2.007103443145752,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.037544023245573044,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 2.002417802810669,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.04044882953166962,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 2.01629638671875,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.03934580460190773,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 2.015477418899536,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.038512952625751495,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 2.0063209533691406,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.04022837057709694,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 2.0138511657714844,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.041775189340114594,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 2.0133614540100098,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.035933662205934525,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 2.014932632446289,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.03949640318751335,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 2.0103020668029785,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.03965448960661888,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 2.004199504852295,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.03770808130502701,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9988662004470825,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.03707122802734375,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.018692970275879,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.03094588965177536,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4853765964508057,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.5541954636573792,
+ "eval_runtime": 40.5827,
+ "eval_samples_per_second": 60.173,
+ "eval_steps_per_second": 0.493,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.0392163060605526,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9966017007827759,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.0415823757648468,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9879624843597412,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.04013896360993385,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.988283395767212,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.03999984636902809,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9808108806610107,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.04117234796285629,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9704176187515259,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.04188748076558113,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9882853031158447,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.04021158069372177,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 2.000579595565796,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.041353169828653336,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9934958219528198,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.04121048375964165,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9767675399780273,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.04130895063281059,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9964344501495361,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.043271005153656006,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9858148097991943,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.041478291153907776,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.9812901020050049,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.03920124098658562,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.9811720848083496,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.041624993085861206,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.9834777116775513,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.040084224194288254,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.986745834350586,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.04137095808982849,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.973207712173462,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.041268061846494675,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.992466688156128,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.03843039646744728,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.977168083190918,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.041724126785993576,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.968721866607666,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.03939545527100563,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9894965887069702,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.041979216039180756,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.9862024784088135,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.04003292694687843,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9772882461547852,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.043241675943136215,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9868083000183105,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.04085911810398102,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9829399585723877,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.042357802391052246,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.996422529220581,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.04186234250664711,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 2.004091739654541,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.041697580367326736,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9707295894622803,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.044106002897024155,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9954397678375244,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.042095571756362915,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.978273868560791,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.04259150102734566,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9970736503601074,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.04311408847570419,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.9791979789733887,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.0417819544672966,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9963579177856445,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.041719887405633926,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9846333265304565,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.03955843672156334,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9993603229522705,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.041470643132925034,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 2.00172758102417,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.042907752096652985,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9878431558609009,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.04169829934835434,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9879419803619385,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.041907984763383865,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9958174228668213,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.04091141000390053,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9915833473205566,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.04279981926083565,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 2.0011239051818848,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.04060981422662735,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 2.008984088897705,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.04239627346396446,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9861326217651367,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.041348736733198166,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9886527061462402,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.04240468144416809,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 2.0117287635803223,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.04239945858716965,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.9927752017974854,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.04039507359266281,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9964733123779297,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.040595248341560364,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.996137022972107,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.04081724211573601,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.999343752861023,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.039217282086610794,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.9974390268325806,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.040758758783340454,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9964487552642822,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.04097484052181244,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.9863066673278809,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.03944368660449982,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 2.0107219219207764,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.04319391027092934,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9830152988433838,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.04203958436846733,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 2.01261568069458,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.03908214345574379,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 2.002816677093506,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.04401380196213722,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9947903156280518,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.04078475758433342,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.9908418655395508,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.03904392570257187,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.9999381303787231,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.0408707857131958,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.976728916168213,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.03951644524931908,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.9820250272750854,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.038964930921792984,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9985617399215698,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.03885824978351593,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 2.012847900390625,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.04176724702119827,
+ "learning_rate": 0.000280627938758204,
+ "loss": 2.000138521194458,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.03801671043038368,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9985980987548828,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.03998260200023651,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 2.016493320465088,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.041373904794454575,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.996181607246399,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.04230344295501709,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.994934320449829,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.03852430358529091,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9986990690231323,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.04095832630991936,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 2.0044407844543457,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.039320334792137146,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9949603080749512,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.039367519319057465,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9997683763504028,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.03257475048303604,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.5053578615188599,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.5548559427261353,
+ "eval_runtime": 39.9404,
+ "eval_samples_per_second": 61.141,
+ "eval_steps_per_second": 0.501,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.04034148156642914,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9629207849502563,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.04501507431268692,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.974515676498413,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.04124121740460396,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9755148887634277,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.04242594540119171,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9660277366638184,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.04222042113542557,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.969848871231079,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.041065510362386703,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9839062690734863,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.04202630743384361,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9626474380493164,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.03920961171388626,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9699093103408813,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.041874419897794724,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9744274616241455,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.04031674563884735,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9619100093841553,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.04077756404876709,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.977008581161499,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.0406559556722641,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9602702856063843,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.0407014898955822,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9805724620819092,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.04144314303994179,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9797005653381348,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.03987768292427063,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9890257120132446,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.04087170585989952,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9670617580413818,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.0421152263879776,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9832180738449097,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.041151583194732666,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.979284405708313,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.04098111018538475,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9762449264526367,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.040003713220357895,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9810866117477417,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.039482954889535904,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.9789704084396362,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.040345363318920135,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9768264293670654,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.038912542164325714,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9986684322357178,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.04091883823275566,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.9675683975219727,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.040190439671278,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9741504192352295,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.040189869701862335,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9939947128295898,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.041559718549251556,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.988523244857788,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.04450741782784462,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9801191091537476,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.04318423569202423,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9808297157287598,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.039648231118917465,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.995420217514038,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.04360787943005562,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9885940551757812,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.04208594560623169,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.991687536239624,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.041687630116939545,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9881685972213745,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.04600570350885391,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.9956451654434204,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.04074542596936226,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9823975563049316,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.04009614884853363,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.9956731796264648,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.04262600094079971,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9813146591186523,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.04119280353188515,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9755754470825195,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.039549387991428375,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9963082075119019,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.04041566327214241,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9689855575561523,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.0396316759288311,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9947049617767334,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.03907989338040352,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.980762243270874,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.04385632649064064,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.990250825881958,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.04149923846125603,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.9612936973571777,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.041488222777843475,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 2.0052437782287598,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.04136145859956741,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9815279245376587,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.03946318477392197,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.984222650527954,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.03961804881691933,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9865868091583252,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0396062508225441,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9827325344085693,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.03807860612869263,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.969796061515808,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.040188297629356384,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.9754271507263184,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.04030116647481918,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.984015703201294,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.03954409807920456,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.986281394958496,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.03851275518536568,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9770636558532715,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.039922576397657394,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9833152294158936,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.040427785366773605,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9849940538406372,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.03961245343089104,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.9793310165405273,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.038811273872852325,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9942911863327026,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.03950529173016548,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9915971755981445,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.04060761258006096,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9923640489578247,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.03954262658953667,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.969840168952942,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.040870875120162964,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.986947774887085,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.03830090910196304,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9978424310684204,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.04211213067173958,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9800487756729126,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.039632175117731094,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9931446313858032,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.04033558815717697,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.994535207748413,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.040556881576776505,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.990935206413269,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.0404195562005043,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9928548336029053,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.03944119065999985,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9880776405334473,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.041356492787599564,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 2.0028457641601562,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.040106043219566345,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.9898993968963623,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03221338987350464,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.476259469985962,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.5553070902824402,
+ "eval_runtime": 49.7026,
+ "eval_samples_per_second": 49.132,
+ "eval_steps_per_second": 0.402,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.040987614542245865,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.9529434442520142,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.041120950132608414,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9582853317260742,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.03971652314066887,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.968639850616455,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.03996049612760544,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.9660120010375977,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.041076596826314926,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9702348709106445,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.042114660143852234,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.958723545074463,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.041039030998945236,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9631943702697754,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.03982028365135193,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9652111530303955,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.03985974192619324,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.963340401649475,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.04071837291121483,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9834423065185547,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.04139500856399536,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9624135494232178,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.04257931560277939,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.984895944595337,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.04105570912361145,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.965362787246704,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.04104257747530937,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.972224235534668,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.04118179529905319,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.970554232597351,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.042708441615104675,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.9676144123077393,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.04269356653094292,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9650506973266602,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.04225006699562073,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9717724323272705,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.044967059046030045,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.962235689163208,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.042227912694215775,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9613938331604004,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.04277089610695839,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.9753990173339844,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.04182279482483864,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9625771045684814,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.04324203357100487,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.968394160270691,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.04029430076479912,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9559634923934937,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.0409722626209259,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.9495587348937988,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.042297445237636566,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9796255826950073,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.04394613206386566,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9650824069976807,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.041808269917964935,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.9505605697631836,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.043006978929042816,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.9647276401519775,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.04460060968995094,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.9642753601074219,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.04388919845223427,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.9735398292541504,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.04144032299518585,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9798399209976196,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.04448307305574417,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9688754081726074,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.04168044030666351,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.9607760906219482,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.04390672221779823,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.985724687576294,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.05282226577401161,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.971274733543396,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.04509815573692322,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9798986911773682,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.04231378436088562,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9754219055175781,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.04514963924884796,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9875903129577637,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.04290074110031128,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9779725074768066,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.043086808174848557,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9822276830673218,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.041193511337041855,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.956713318824768,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.041158173233270645,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9508072137832642,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.04199864715337753,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9838216304779053,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.042495034635066986,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9770547151565552,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.04065609350800514,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9711198806762695,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.04315977916121483,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.957960605621338,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.04295031726360321,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9879754781723022,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.04057304933667183,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9813754558563232,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.041819434612989426,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.967017650604248,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.04248471185564995,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9724358320236206,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.043477047234773636,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9974957704544067,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.041802674531936646,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.969354510307312,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.0430421382188797,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.9911510944366455,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.04107428342103958,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.975877046585083,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.04443598911166191,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9712554216384888,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.04327385500073433,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9681297540664673,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.04173135384917259,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9472997188568115,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.04201003164052963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9661506414413452,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.04078659787774086,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.9666576385498047,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0406930036842823,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.9849047660827637,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.042122919112443924,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.9777114391326904,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.04120451211929321,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.969825267791748,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.04186492785811424,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.994114637374878,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.04207214340567589,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.9899489879608154,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.044357068836688995,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.9830305576324463,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.04240988567471504,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9758679866790771,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.04397385194897652,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9774196147918701,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.04195938631892204,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.9627633094787598,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.04116087406873703,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.967322826385498,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.04200683906674385,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9736065864562988,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.0335347019135952,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.465168833732605,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.5561301708221436,
+ "eval_runtime": 40.3807,
+ "eval_samples_per_second": 60.474,
+ "eval_steps_per_second": 0.495,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.041839007288217545,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.962834119796753,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.04494776204228401,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9620225429534912,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.04260874167084694,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.9532074928283691,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.041091833263635635,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.9500408172607422,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.04230482876300812,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.9540523290634155,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.04213967174291611,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.9378814697265625,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.04107899218797684,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.9528520107269287,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.042169325053691864,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.9380617141723633,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.04244079068303108,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.9579730033874512,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.041498638689517975,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.9536144733428955,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.040074724704027176,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.9410881996154785,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.04285141080617905,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.948718786239624,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.041612278670072556,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.9381821155548096,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.04301951825618744,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.9557945728302002,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.04282021522521973,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.9603688716888428,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.046332504600286484,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.9555209875106812,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0429227314889431,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.9428198337554932,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.04214467853307724,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9655869007110596,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.04359026253223419,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.9500617980957031,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.041300319135189056,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.9598267078399658,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.04707876220345497,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.9480507373809814,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.04198484867811203,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.9500718116760254,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.04452266916632652,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.967477560043335,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.04509236291050911,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.95900297164917,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.04348349943757057,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.9371505975723267,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.04213197901844978,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.9548835754394531,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.04171326011419296,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.9320429563522339,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.040957994759082794,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9708552360534668,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.042061030864715576,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.9647853374481201,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.042551394551992416,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9628281593322754,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.04178022965788841,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9609858989715576,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.041741300374269485,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.965749740600586,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.043949443846940994,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9692953824996948,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.04203510284423828,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9678642749786377,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.043694913387298584,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.9455668926239014,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.042708177119493484,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.965721845626831,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.04325935244560242,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.952937126159668,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.04308290407061577,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9778510332107544,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.04172641783952713,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9692282676696777,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.04281787946820259,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.9532403945922852,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.04087405279278755,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.961708903312683,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.04168091341853142,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.977181077003479,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.04360164329409599,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9583289623260498,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.04258623719215393,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.969384789466858,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.04215861111879349,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9673523902893066,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.04312222823500633,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.9638433456420898,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.04376685991883278,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9621204137802124,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.04453703761100769,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9714503288269043,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.04112813621759415,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9752442836761475,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.041888099163770676,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9700050354003906,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.040998443961143494,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9721579551696777,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.04311826825141907,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.980010747909546,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.04124320298433304,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.952293872833252,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.042228251695632935,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9557874202728271,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.04347359761595726,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.963796854019165,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.03958803787827492,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.9730989933013916,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.043780308216810226,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.9558871984481812,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.04270954802632332,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9668874740600586,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.043424077332019806,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9625186920166016,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.0442342534661293,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.9585497379302979,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.04140656068921089,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.9448176622390747,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.0448518805205822,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.9776833057403564,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.04289280250668526,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.957261085510254,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.04201837256550789,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9734320640563965,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.04439011961221695,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9649404287338257,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.0432993583381176,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.96087646484375,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.042321283370256424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9586503505706787,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.04592757672071457,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9700541496276855,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.041818130761384964,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9758845567703247,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.04364927113056183,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9568970203399658,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.04458127170801163,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.966611385345459,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03495609387755394,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.468475341796875,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.5568150281906128,
+ "eval_runtime": 39.8227,
+ "eval_samples_per_second": 61.322,
+ "eval_steps_per_second": 0.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.04475132375955582,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.9472060203552246,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.045613858848810196,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.9384872913360596,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.042742565274238586,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.9343316555023193,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.044867027550935745,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.939120888710022,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.04303931072354317,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.9521855115890503,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.04660770669579506,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.9521983861923218,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.045712005347013474,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.935784101486206,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.043419793248176575,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.9451897144317627,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.04524999484419823,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.948369026184082,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.04713384062051773,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.9450111389160156,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.04074151813983917,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.9382028579711914,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.04502285644412041,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.9334264993667603,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.043706756085157394,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.9495983123779297,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.04386162385344505,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.9515377283096313,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.043326519429683685,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.9486628770828247,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.043552469462156296,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.944170355796814,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.04372403025627136,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.9427499771118164,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.04319126158952713,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.9517441987991333,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.04346977174282074,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.9459564685821533,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.04480305314064026,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.9411635398864746,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.04327613115310669,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.9756957292556763,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.04404512792825699,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.9407591819763184,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.043688371777534485,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.9524717330932617,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.04608568921685219,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.9563519954681396,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.04586746171116829,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.9477601051330566,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.0457453727722168,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.9450562000274658,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.044928375631570816,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.937544584274292,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.04492770507931709,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.9332008361816406,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.0454193539917469,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.9613850116729736,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.044987618923187256,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.9520149230957031,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.04336383566260338,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.953560709953308,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.043413858860731125,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.9426552057266235,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.04342658072710037,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.9523890018463135,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0437006801366806,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9690449237823486,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.042938075959682465,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.9512395858764648,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.04373693838715553,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.9322478771209717,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.04317113384604454,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.9695899486541748,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.04304879903793335,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.9470901489257812,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.04294352978467941,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.9300976991653442,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.04347103834152222,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.9500313997268677,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.043133966624736786,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.9629690647125244,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.04175884276628494,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.9543583393096924,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.043001141399145126,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.9514631032943726,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.04206647723913193,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.9431962966918945,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.04285243898630142,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.9547057151794434,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.04447701573371887,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.9542031288146973,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.0425914004445076,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.9506466388702393,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.04313453659415245,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.9480928182601929,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.04270946606993675,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.952941656112671,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.04241576045751572,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.939210057258606,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.041205525398254395,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.9364166259765625,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.0434810034930706,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.9460487365722656,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.04301954805850983,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.9502805471420288,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.0429537408053875,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.9432543516159058,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.0425160713493824,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.9487577676773071,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.04392602667212486,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.9603791236877441,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.0426364541053772,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.9570332765579224,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.04407336562871933,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.9530041217803955,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.04233618453145027,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.9509906768798828,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.04305610433220863,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.957235336303711,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.04430278018116951,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.940815806388855,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.04226064682006836,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.9556574821472168,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.04346537962555885,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.9461195468902588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.04263962432742119,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9576923847198486,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.04381522908806801,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.9449446201324463,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.04218338802456856,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.9571001529693604,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.0416242852807045,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.9477391242980957,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.04212493449449539,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.966149091720581,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.042672351002693176,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.9682352542877197,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.04106829687952995,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.9462820291519165,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.043548960238695145,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.957768440246582,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03447113558650017,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4630240201950073,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.5573379993438721,
+ "eval_runtime": 46.5842,
+ "eval_samples_per_second": 52.421,
+ "eval_steps_per_second": 0.429,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.04285870119929314,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.9332802295684814,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.04557755962014198,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.9371343851089478,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.04116271808743477,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.9495322704315186,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.04556567594408989,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.9440783262252808,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.04328050836920738,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.9327294826507568,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.04313594475388527,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.933357834815979,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.047144487500190735,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.9348008632659912,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.04668821394443512,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.9230201244354248,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.04336639121174812,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.9244744777679443,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.043821923434734344,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.9395811557769775,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.04383927211165428,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.9268351793289185,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.042469821870326996,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.9373741149902344,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.043338630348443985,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.9304418563842773,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.04467812925577164,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.927775263786316,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.043438415974378586,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.9424524307250977,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.04276007041335106,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.9348394870758057,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.044115278869867325,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.9279959201812744,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.04312213510274887,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.9148272275924683,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.04442084953188896,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.9318461418151855,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.04306824132800102,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.929410457611084,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.04616241529583931,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.9425160884857178,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.043449901044368744,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.93715500831604,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.0449586845934391,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.943284273147583,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.044567257165908813,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.9287354946136475,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.04409945756196976,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.9442834854125977,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.04614093527197838,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.9407234191894531,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.044272493571043015,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.9427531957626343,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.046257223933935165,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.934558629989624,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.04504263773560524,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.9344301223754883,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.04613269865512848,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.9523203372955322,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.04359893128275871,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.9534872770309448,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.044758617877960205,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.9394410848617554,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.04496034234762192,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.9474343061447144,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.0438607819378376,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.9398064613342285,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.0454886294901371,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.936154842376709,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.04377540200948715,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.9346157312393188,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.043989669531583786,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.929081916809082,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.044563986361026764,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.9414352178573608,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.043291036039590836,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.9329895973205566,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.045155249536037445,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.9318394660949707,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.04445208981633186,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.941894769668579,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.04445616528391838,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.9463168382644653,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.04478035867214203,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.9354333877563477,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.045354459434747696,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.930020809173584,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.04453159123659134,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.9286775588989258,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.044591024518013,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.9429574012756348,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.04425579309463501,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.947604775428772,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.044748082756996155,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.9470477104187012,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.04593580961227417,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.937525987625122,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.043080125004053116,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.946656346321106,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.04556628689169884,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.9434765577316284,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.04450301080942154,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.9515914916992188,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.042459938675165176,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.9470634460449219,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.046506237238645554,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.9352115392684937,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.04481459781527519,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.9462571144104004,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.043813664466142654,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.9520037174224854,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.04445577412843704,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.9387362003326416,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.04351884126663208,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.9258419275283813,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.043723348528146744,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.9318315982818604,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.042861346155405045,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.9379544258117676,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.044699329882860184,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.951422929763794,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.04349956661462784,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.9352158308029175,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.0433838777244091,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.9462525844573975,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.04403919726610184,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.9481416940689087,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.044272877275943756,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.9500665664672852,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.044802214950323105,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.934298038482666,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.04337660223245621,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.954413652420044,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.043723538517951965,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.9608337879180908,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.04384087026119232,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.957395076751709,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.04272010177373886,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.9467015266418457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.04412781819701195,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.9331390857696533,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03537739813327789,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.452278971672058,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.5580063462257385,
+ "eval_runtime": 41.0077,
+ "eval_samples_per_second": 59.55,
+ "eval_steps_per_second": 0.488,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.04488050192594528,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.9278442859649658,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.04385434463620186,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.9266334772109985,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.04343170300126076,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.9108353853225708,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.04333009198307991,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.9282209873199463,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.043575625866651535,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.912508249282837,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.04466782137751579,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.919581413269043,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.04611176252365112,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.9342784881591797,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.04373355954885483,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.9118773937225342,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.047107476741075516,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.9101970195770264,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.04320043325424194,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.932800531387329,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.04540976136922836,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.9250563383102417,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.04323503002524376,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.9331316947937012,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.04482870548963547,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.9348450899124146,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.044921185821294785,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.9033823013305664,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.0437164381146431,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.9165492057800293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.04656543210148811,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.9247410297393799,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.04488205537199974,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.92763090133667,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.04543324187397957,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.9337310791015625,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.04601719602942467,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.9362705945968628,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.04425300285220146,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.9175018072128296,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.046571098268032074,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.9094732999801636,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.04628605395555496,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.9328744411468506,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.04729470983147621,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.9140973091125488,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.04496074467897415,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.928534984588623,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.9149569272994995,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.044917237013578415,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.9233367443084717,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.04609345644712448,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.9380614757537842,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.045224424451589584,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.923943281173706,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.04588423669338226,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.9246735572814941,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.046085700392723083,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.9078786373138428,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.045062921941280365,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.9289073944091797,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.045110709965229034,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.9322113990783691,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.0472494512796402,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.938441276550293,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.04466252401471138,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.9182933568954468,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.04513029381632805,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.9107897281646729,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.045220620930194855,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.940725564956665,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.045562177896499634,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.9358959197998047,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.04428212717175484,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.9271135330200195,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.04473140835762024,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.931797742843628,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.043908942490816116,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.9203201532363892,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.043839748948812485,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.9134262800216675,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.04567759111523628,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.9289779663085938,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.04431043565273285,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.941714882850647,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.04408961907029152,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.9301257133483887,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.04624704271554947,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.9381217956542969,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.04422634467482567,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.9162166118621826,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.04419756308197975,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.92188560962677,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.04618249088525772,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.9345735311508179,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.04490220174193382,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.9351990222930908,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.046499986201524734,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.9223530292510986,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.04331587627530098,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.9249944686889648,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.04636161029338837,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.9414262771606445,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.0445382185280323,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.9354854822158813,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.04564649984240532,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.9308267831802368,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.04421863704919815,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.9366023540496826,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.04698484018445015,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.9335650205612183,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.04388933628797531,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.9299960136413574,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.046337876468896866,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.9503027200698853,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.04348573088645935,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.9341070652008057,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.045959342271089554,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.9151384830474854,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.04479081928730011,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.9382342100143433,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.04572956636548042,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.9310452938079834,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.04677167162299156,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.9518420696258545,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.04495622590184212,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.9428808689117432,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.04611065983772278,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.9220831394195557,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.04454458877444267,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.9490790367126465,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.046582695096731186,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.9425218105316162,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.04383963346481323,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.9434903860092163,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.044776711612939835,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.930960774421692,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.043473951518535614,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.934765100479126,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.04574871063232422,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.9359397888183594,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03675457090139389,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.4525755643844604,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.5587614178657532,
+ "eval_runtime": 54.5655,
+ "eval_samples_per_second": 44.754,
+ "eval_steps_per_second": 0.367,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.0462750606238842,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.9179565906524658,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.04558630660176277,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8978389501571655,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.04710238054394722,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.9018924236297607,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.04631956294178963,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.9072178602218628,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.04520673677325249,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.9221091270446777,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.04918315261602402,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.9093704223632812,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.046507298946380615,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.9335057735443115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.0474676676094532,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.9136755466461182,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.045877616852521896,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.9096475839614868,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.04849010333418846,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.9148929119110107,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.04782263934612274,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.914750099182129,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.045352671295404434,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.9120718240737915,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.04869354888796806,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.91766357421875,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.04467938840389252,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.899644374847412,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.047056928277015686,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.9113627672195435,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.045194532722234726,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.9268800020217896,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.04681428149342537,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.9223413467407227,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.046070028096437454,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.9202659130096436,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.04682234674692154,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.9200537204742432,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.04590713232755661,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.905088186264038,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.0492512583732605,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.923885464668274,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.046058595180511475,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.9140686988830566,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05024345591664314,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.9238293170928955,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.04682156816124916,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.91746187210083,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.04715842381119728,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.9203336238861084,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.04766647145152092,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.9099605083465576,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.0484190359711647,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.9298415184020996,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.04713325947523117,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.9137039184570312,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.04657702147960663,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.909759283065796,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.047971706837415695,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.9150055646896362,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.04693721979856491,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.9161012172698975,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.045918580144643784,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.9190044403076172,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.044876597821712494,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.9148699045181274,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.04615379497408867,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.9099400043487549,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.044768523424863815,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.9174376726150513,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.04711288958787918,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.9337024688720703,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.04604453220963478,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.918162226676941,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.046346515417099,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.9226276874542236,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.046291086822748184,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.9002764225006104,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.04728492349386215,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.9176394939422607,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.0452590174973011,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.9092847108840942,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.04720590263605118,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.9305121898651123,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.04423863813281059,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.917733907699585,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.047705911099910736,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.9264805316925049,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.04461591690778732,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.9155296087265015,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.0448867566883564,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.9237422943115234,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.04488728940486908,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.9229776859283447,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.04524501785635948,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.9315156936645508,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.04549748823046684,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.9230515956878662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.04490918666124344,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8992328643798828,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.04507176950573921,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.919519305229187,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.04591760039329529,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.915913462638855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.04368108510971069,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.931168556213379,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.04612324759364128,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.9031120538711548,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.04388239607214928,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.912826657295227,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.04572778567671776,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.924182415008545,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.04501771181821823,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.9176487922668457,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.043582577258348465,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.9067806005477905,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.046558983623981476,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.9344135522842407,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.04396207630634308,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.9220595359802246,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.04515782743692398,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.9215635061264038,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.045465730130672455,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.9135242700576782,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.04482322558760643,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.9089176654815674,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.04502297565340996,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.9229989051818848,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.044661134481430054,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.9119620323181152,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.04521520808339119,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.937756896018982,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.04591496288776398,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.9198966026306152,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.04410246014595032,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.9341609477996826,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.04488343000411987,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.9275271892547607,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.04497985169291496,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.9064011573791504,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.043899375945329666,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.9203660488128662,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.0378071591258049,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.4432313442230225,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.5599055290222168,
+ "eval_runtime": 40.2366,
+ "eval_samples_per_second": 60.691,
+ "eval_steps_per_second": 0.497,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.04420118033885956,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.893591284751892,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.04334490746259689,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.9110057353973389,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.04583484306931496,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.903444528579712,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.04383937269449234,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.9030766487121582,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.043749865144491196,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.9130524396896362,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.04311221092939377,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.9107348918914795,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.045599307864904404,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.900320053100586,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.04430649057030678,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.9028031826019287,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.04488218575716019,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.9213577508926392,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.04538808390498161,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8968687057495117,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.04458931088447571,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.9092092514038086,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.046152856200933456,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.9046111106872559,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.043571822345256805,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.9015637636184692,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.04416032135486603,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.8788703680038452,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.04414350166916847,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.9068684577941895,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.04326542839407921,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.9123764038085938,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.04510084167122841,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.9027619361877441,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.0441674180328846,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8962973356246948,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.04522429034113884,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.9108083248138428,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.044228654354810715,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.895268440246582,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.044145651161670685,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.9096617698669434,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.04376067593693733,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8920894861221313,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.0455496646463871,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.9054405689239502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.0457804873585701,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.9108986854553223,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.046842969954013824,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.9257216453552246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.04604218900203705,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8883439302444458,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.045921169221401215,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.917250156402588,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.04587477445602417,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.9154161214828491,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.04593200236558914,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.9063808917999268,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.046741142868995667,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.903794527053833,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.0460849292576313,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.9034333229064941,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.04705662652850151,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.9169785976409912,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.046874064952135086,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.9086027145385742,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.04523243382573128,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8996422290802002,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.04941021278500557,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8924407958984375,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.046277012676000595,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.9230189323425293,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.04795045778155327,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.9096146821975708,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.046317312866449356,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.903681993484497,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.04782787710428238,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8976242542266846,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.04749831184744835,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8980826139450073,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.048178333789110184,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.9099817276000977,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.04797761142253876,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.918223261833191,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.04733513295650482,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8991427421569824,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.04613934084773064,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.9202003479003906,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.04839421436190605,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.910476565361023,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.04656097665429115,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.894330620765686,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.04690321907401085,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.922321081161499,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.0483844019472599,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.9088165760040283,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.04675137251615524,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.9161102771759033,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.048790913075208664,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.9126578569412231,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.04615939408540726,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.9056590795516968,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.04707014560699463,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.9129831790924072,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.04887249693274498,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.9198627471923828,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.04701855778694153,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.904289960861206,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.04752900078892708,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.9119199514389038,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.04637937620282173,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.9015456438064575,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.04624813422560692,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.9151562452316284,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.04688073322176933,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.9010138511657715,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.04610495641827583,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.9150097370147705,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.04617947340011597,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.9171550273895264,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.047766949981451035,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.9131733179092407,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.04596418887376785,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.9148085117340088,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.04751482605934143,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.8954293727874756,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.04667142033576965,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.9257514476776123,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.04714122414588928,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.9146203994750977,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.046158310025930405,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.9000868797302246,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.0453617125749588,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.8987735509872437,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.045940201729536057,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.9061667919158936,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.04766112565994263,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.9178999662399292,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.04459957405924797,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.9119558334350586,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.0476016104221344,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.900212287902832,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03775295615196228,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.4189457893371582,
+ "step": 2520
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.0771796057495962e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-2520/training_args.bin b/runs/bi-ssl/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-2880/chat_template.jinja b/runs/bi-ssl/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-2880/config.json b/runs/bi-ssl/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-2880/generation_config.json b/runs/bi-ssl/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-2880/model.safetensors b/runs/bi-ssl/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..430044d76e04c021feb88f86a79efc7bda426222
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a17087ab401937a0f8357b1af44a127e4e5b279d4bc3fd061b58e4ec937aec22
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-2880/optimizer.pt b/runs/bi-ssl/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7c5a65341a02061e87a874e09cff30917e8c9edb
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7aee4d2b2b3182a8f8e40d7d60c4df344d91b459fa0a25a12c7fbbef66ffd07b
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-2880/rng_state_0.pth b/runs/bi-ssl/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b73f9a380e4e9c61520ae0674c9453be2b007f8d
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:19e0f78f2d9435829a3e127bfda2ca14f3245c5620079efefde656536bbe279e
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2880/rng_state_1.pth b/runs/bi-ssl/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c80ff79c801a37a1192dfdb25ad4404ef9b73aa
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ff567f23d2e2493cacddea05b5da8eee7e39fe5f45b9a2a98aa6a743f71addc
+size 14917
diff --git a/runs/bi-ssl/checkpoint-2880/scheduler.pt b/runs/bi-ssl/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f1b2d6bb8ce3cef13aa84e428e5db83abeeff7b5
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6c45747ad72424e6ab5eef3447cbd13933161ee71d5ad9aaac15ca345390629c
+size 1465
diff --git a/runs/bi-ssl/checkpoint-2880/tokenizer.json b/runs/bi-ssl/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-2880/tokenizer_config.json b/runs/bi-ssl/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-2880/trainer_state.json b/runs/bi-ssl/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9ff97263c3632e69a41355f2256a10c2169b1b5d
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/trainer_state.json
@@ -0,0 +1,20506 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 40.0,
+ "eval_steps": 500,
+ "global_step": 2880,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.5535854697227478,
+ "eval_runtime": 41.148,
+ "eval_samples_per_second": 59.347,
+ "eval_steps_per_second": 0.486,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.039032384753227234,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.9920241832733154,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.041609007865190506,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9881491661071777,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.038623128086328506,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9976372718811035,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.03914353623986244,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9816069602966309,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.04063460975885391,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 2.0046496391296387,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.042663004249334335,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9930580854415894,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.040998101234436035,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 2.008364677429199,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.041671473532915115,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 2.005788803100586,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.0420398935675621,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.9959884881973267,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.0416552871465683,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.9947746992111206,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.041419412940740585,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9942247867584229,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.04148508235812187,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9945931434631348,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.041060201823711395,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 2.0063748359680176,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.040119070559740067,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 2.000641107559204,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.04179691895842552,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9936890602111816,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.040200114250183105,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9800493717193604,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.03986869752407074,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.9906518459320068,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.043195679783821106,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9976487159729004,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.03883126378059387,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 2.001391887664795,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.03800702840089798,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 2.004763603210449,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0407932847738266,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.9919681549072266,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.0401216596364975,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9732658863067627,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.03860956430435181,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9886324405670166,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.040160007774829865,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 2.0077905654907227,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.04022439941763878,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9821927547454834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.041961729526519775,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9947912693023682,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.04093684256076813,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 2.007406234741211,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.04111676663160324,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 2.0099968910217285,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.03939409554004669,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 2.0050230026245117,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.039408158510923386,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.989539384841919,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.039070483297109604,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 2.0107581615448,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.03986838087439537,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 2.007388114929199,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.03872528672218323,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 2.002636194229126,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.03786979243159294,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9882686138153076,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.037976834923028946,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 2.020331621170044,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.037561025470495224,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.998062014579773,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.040928397327661514,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.9984104633331299,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.038733627647161484,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 2.023151397705078,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.03880929574370384,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9985425472259521,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.040410179644823074,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 2.0105319023132324,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.04060919210314751,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9950847625732422,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.038462985306978226,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 2.0109362602233887,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.03816642239689827,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 2.013629913330078,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.03969560191035271,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.98691987991333,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.0382484570145607,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 2.0075533390045166,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.03932507336139679,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 2.014407157897949,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.038706980645656586,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9987857341766357,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.03753427788615227,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.9929393529891968,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.03967666998505592,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 2.0053462982177734,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.03984595835208893,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 2.0171046257019043,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.03843587636947632,
+ "learning_rate": 0.000303,
+ "loss": 2.016073703765869,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.04069933295249939,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 2.0196797847747803,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.03816717118024826,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9992872476577759,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.03972223773598671,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 2.0082225799560547,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.03925364091992378,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 2.0078647136688232,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.03874839469790459,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.9888811111450195,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.03876980394124985,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 2.0105342864990234,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.037127457559108734,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 2.0146484375,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.04017023742198944,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 2.0216569900512695,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.038180865347385406,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 2.007103443145752,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.037544023245573044,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 2.002417802810669,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.04044882953166962,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 2.01629638671875,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.03934580460190773,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 2.015477418899536,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.038512952625751495,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 2.0063209533691406,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.04022837057709694,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 2.0138511657714844,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.041775189340114594,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 2.0133614540100098,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.035933662205934525,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 2.014932632446289,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.03949640318751335,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 2.0103020668029785,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.03965448960661888,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 2.004199504852295,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.03770808130502701,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9988662004470825,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.03707122802734375,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.018692970275879,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.03094588965177536,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4853765964508057,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.5541954636573792,
+ "eval_runtime": 40.5827,
+ "eval_samples_per_second": 60.173,
+ "eval_steps_per_second": 0.493,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.0392163060605526,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9966017007827759,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.0415823757648468,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9879624843597412,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.04013896360993385,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.988283395767212,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.03999984636902809,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9808108806610107,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.04117234796285629,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9704176187515259,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.04188748076558113,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9882853031158447,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.04021158069372177,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 2.000579595565796,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.041353169828653336,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9934958219528198,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.04121048375964165,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9767675399780273,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.04130895063281059,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9964344501495361,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.043271005153656006,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9858148097991943,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.041478291153907776,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.9812901020050049,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.03920124098658562,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.9811720848083496,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.041624993085861206,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.9834777116775513,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.040084224194288254,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.986745834350586,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.04137095808982849,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.973207712173462,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.041268061846494675,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.992466688156128,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.03843039646744728,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.977168083190918,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.041724126785993576,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.968721866607666,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.03939545527100563,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9894965887069702,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.041979216039180756,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.9862024784088135,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.04003292694687843,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9772882461547852,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.043241675943136215,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9868083000183105,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.04085911810398102,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9829399585723877,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.042357802391052246,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.996422529220581,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.04186234250664711,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 2.004091739654541,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.041697580367326736,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9707295894622803,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.044106002897024155,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9954397678375244,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.042095571756362915,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.978273868560791,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.04259150102734566,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9970736503601074,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.04311408847570419,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.9791979789733887,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.0417819544672966,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9963579177856445,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.041719887405633926,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9846333265304565,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.03955843672156334,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9993603229522705,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.041470643132925034,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 2.00172758102417,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.042907752096652985,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9878431558609009,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.04169829934835434,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9879419803619385,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.041907984763383865,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9958174228668213,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.04091141000390053,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9915833473205566,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.04279981926083565,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 2.0011239051818848,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.04060981422662735,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 2.008984088897705,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.04239627346396446,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9861326217651367,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.041348736733198166,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9886527061462402,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.04240468144416809,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 2.0117287635803223,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.04239945858716965,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.9927752017974854,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.04039507359266281,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9964733123779297,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.040595248341560364,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.996137022972107,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.04081724211573601,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.999343752861023,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.039217282086610794,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.9974390268325806,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.040758758783340454,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9964487552642822,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.04097484052181244,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.9863066673278809,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.03944368660449982,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 2.0107219219207764,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.04319391027092934,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9830152988433838,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.04203958436846733,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 2.01261568069458,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.03908214345574379,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 2.002816677093506,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.04401380196213722,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9947903156280518,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.04078475758433342,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.9908418655395508,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.03904392570257187,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.9999381303787231,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.0408707857131958,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.976728916168213,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.03951644524931908,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.9820250272750854,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.038964930921792984,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9985617399215698,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.03885824978351593,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 2.012847900390625,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.04176724702119827,
+ "learning_rate": 0.000280627938758204,
+ "loss": 2.000138521194458,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.03801671043038368,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9985980987548828,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.03998260200023651,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 2.016493320465088,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.041373904794454575,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.996181607246399,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.04230344295501709,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.994934320449829,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.03852430358529091,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9986990690231323,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.04095832630991936,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 2.0044407844543457,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.039320334792137146,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9949603080749512,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.039367519319057465,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9997683763504028,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.03257475048303604,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.5053578615188599,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.5548559427261353,
+ "eval_runtime": 39.9404,
+ "eval_samples_per_second": 61.141,
+ "eval_steps_per_second": 0.501,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.04034148156642914,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9629207849502563,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.04501507431268692,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.974515676498413,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.04124121740460396,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9755148887634277,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.04242594540119171,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9660277366638184,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.04222042113542557,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.969848871231079,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.041065510362386703,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9839062690734863,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.04202630743384361,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9626474380493164,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.03920961171388626,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9699093103408813,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.041874419897794724,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9744274616241455,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.04031674563884735,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9619100093841553,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.04077756404876709,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.977008581161499,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.0406559556722641,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9602702856063843,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.0407014898955822,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9805724620819092,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.04144314303994179,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9797005653381348,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.03987768292427063,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9890257120132446,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.04087170585989952,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9670617580413818,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.0421152263879776,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9832180738449097,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.041151583194732666,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.979284405708313,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.04098111018538475,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9762449264526367,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.040003713220357895,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9810866117477417,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.039482954889535904,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.9789704084396362,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.040345363318920135,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9768264293670654,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.038912542164325714,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9986684322357178,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.04091883823275566,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.9675683975219727,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.040190439671278,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9741504192352295,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.040189869701862335,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9939947128295898,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.041559718549251556,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.988523244857788,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.04450741782784462,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9801191091537476,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.04318423569202423,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9808297157287598,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.039648231118917465,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.995420217514038,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.04360787943005562,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9885940551757812,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.04208594560623169,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.991687536239624,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.041687630116939545,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9881685972213745,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.04600570350885391,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.9956451654434204,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.04074542596936226,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9823975563049316,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.04009614884853363,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.9956731796264648,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.04262600094079971,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9813146591186523,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.04119280353188515,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9755754470825195,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.039549387991428375,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9963082075119019,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.04041566327214241,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9689855575561523,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.0396316759288311,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9947049617767334,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.03907989338040352,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.980762243270874,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.04385632649064064,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.990250825881958,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.04149923846125603,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.9612936973571777,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.041488222777843475,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 2.0052437782287598,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.04136145859956741,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9815279245376587,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.03946318477392197,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.984222650527954,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.03961804881691933,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9865868091583252,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0396062508225441,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9827325344085693,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.03807860612869263,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.969796061515808,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.040188297629356384,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.9754271507263184,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.04030116647481918,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.984015703201294,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.03954409807920456,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.986281394958496,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.03851275518536568,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9770636558532715,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.039922576397657394,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9833152294158936,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.040427785366773605,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9849940538406372,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.03961245343089104,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.9793310165405273,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.038811273872852325,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9942911863327026,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.03950529173016548,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9915971755981445,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.04060761258006096,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9923640489578247,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.03954262658953667,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.969840168952942,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.040870875120162964,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.986947774887085,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.03830090910196304,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9978424310684204,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.04211213067173958,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9800487756729126,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.039632175117731094,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9931446313858032,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.04033558815717697,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.994535207748413,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.040556881576776505,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.990935206413269,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.0404195562005043,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9928548336029053,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.03944119065999985,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9880776405334473,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.041356492787599564,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 2.0028457641601562,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.040106043219566345,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.9898993968963623,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03221338987350464,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.476259469985962,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.5553070902824402,
+ "eval_runtime": 49.7026,
+ "eval_samples_per_second": 49.132,
+ "eval_steps_per_second": 0.402,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.040987614542245865,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.9529434442520142,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.041120950132608414,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9582853317260742,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.03971652314066887,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.968639850616455,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.03996049612760544,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.9660120010375977,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.041076596826314926,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9702348709106445,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.042114660143852234,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.958723545074463,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.041039030998945236,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9631943702697754,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.03982028365135193,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9652111530303955,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.03985974192619324,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.963340401649475,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.04071837291121483,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9834423065185547,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.04139500856399536,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9624135494232178,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.04257931560277939,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.984895944595337,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.04105570912361145,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.965362787246704,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.04104257747530937,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.972224235534668,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.04118179529905319,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.970554232597351,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.042708441615104675,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.9676144123077393,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.04269356653094292,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9650506973266602,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.04225006699562073,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9717724323272705,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.044967059046030045,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.962235689163208,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.042227912694215775,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9613938331604004,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.04277089610695839,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.9753990173339844,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.04182279482483864,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9625771045684814,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.04324203357100487,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.968394160270691,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.04029430076479912,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9559634923934937,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.0409722626209259,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.9495587348937988,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.042297445237636566,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9796255826950073,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.04394613206386566,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9650824069976807,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.041808269917964935,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.9505605697631836,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.043006978929042816,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.9647276401519775,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.04460060968995094,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.9642753601074219,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.04388919845223427,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.9735398292541504,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.04144032299518585,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9798399209976196,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.04448307305574417,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9688754081726074,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.04168044030666351,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.9607760906219482,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.04390672221779823,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.985724687576294,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.05282226577401161,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.971274733543396,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.04509815573692322,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9798986911773682,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.04231378436088562,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9754219055175781,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.04514963924884796,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9875903129577637,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.04290074110031128,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9779725074768066,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.043086808174848557,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9822276830673218,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.041193511337041855,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.956713318824768,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.041158173233270645,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9508072137832642,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.04199864715337753,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9838216304779053,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.042495034635066986,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9770547151565552,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.04065609350800514,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9711198806762695,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.04315977916121483,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.957960605621338,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.04295031726360321,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9879754781723022,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.04057304933667183,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9813754558563232,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.041819434612989426,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.967017650604248,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.04248471185564995,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9724358320236206,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.043477047234773636,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9974957704544067,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.041802674531936646,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.969354510307312,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.0430421382188797,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.9911510944366455,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.04107428342103958,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.975877046585083,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.04443598911166191,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9712554216384888,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.04327385500073433,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9681297540664673,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.04173135384917259,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9472997188568115,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.04201003164052963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9661506414413452,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.04078659787774086,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.9666576385498047,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0406930036842823,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.9849047660827637,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.042122919112443924,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.9777114391326904,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.04120451211929321,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.969825267791748,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.04186492785811424,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.994114637374878,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.04207214340567589,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.9899489879608154,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.044357068836688995,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.9830305576324463,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.04240988567471504,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9758679866790771,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.04397385194897652,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9774196147918701,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.04195938631892204,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.9627633094787598,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.04116087406873703,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.967322826385498,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.04200683906674385,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9736065864562988,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.0335347019135952,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.465168833732605,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.5561301708221436,
+ "eval_runtime": 40.3807,
+ "eval_samples_per_second": 60.474,
+ "eval_steps_per_second": 0.495,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.041839007288217545,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.962834119796753,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.04494776204228401,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9620225429534912,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.04260874167084694,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.9532074928283691,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.041091833263635635,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.9500408172607422,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.04230482876300812,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.9540523290634155,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.04213967174291611,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.9378814697265625,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.04107899218797684,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.9528520107269287,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.042169325053691864,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.9380617141723633,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.04244079068303108,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.9579730033874512,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.041498638689517975,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.9536144733428955,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.040074724704027176,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.9410881996154785,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.04285141080617905,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.948718786239624,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.041612278670072556,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.9381821155548096,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.04301951825618744,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.9557945728302002,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.04282021522521973,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.9603688716888428,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.046332504600286484,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.9555209875106812,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0429227314889431,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.9428198337554932,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.04214467853307724,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9655869007110596,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.04359026253223419,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.9500617980957031,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.041300319135189056,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.9598267078399658,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.04707876220345497,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.9480507373809814,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.04198484867811203,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.9500718116760254,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.04452266916632652,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.967477560043335,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.04509236291050911,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.95900297164917,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.04348349943757057,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.9371505975723267,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.04213197901844978,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.9548835754394531,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.04171326011419296,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.9320429563522339,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.040957994759082794,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9708552360534668,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.042061030864715576,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.9647853374481201,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.042551394551992416,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9628281593322754,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.04178022965788841,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9609858989715576,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.041741300374269485,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.965749740600586,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.043949443846940994,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9692953824996948,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.04203510284423828,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9678642749786377,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.043694913387298584,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.9455668926239014,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.042708177119493484,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.965721845626831,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.04325935244560242,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.952937126159668,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.04308290407061577,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9778510332107544,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.04172641783952713,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9692282676696777,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.04281787946820259,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.9532403945922852,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.04087405279278755,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.961708903312683,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.04168091341853142,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.977181077003479,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.04360164329409599,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9583289623260498,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.04258623719215393,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.969384789466858,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.04215861111879349,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9673523902893066,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.04312222823500633,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.9638433456420898,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.04376685991883278,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9621204137802124,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.04453703761100769,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9714503288269043,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.04112813621759415,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9752442836761475,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.041888099163770676,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9700050354003906,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.040998443961143494,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9721579551696777,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.04311826825141907,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.980010747909546,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.04124320298433304,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.952293872833252,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.042228251695632935,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9557874202728271,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.04347359761595726,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.963796854019165,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.03958803787827492,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.9730989933013916,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.043780308216810226,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.9558871984481812,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.04270954802632332,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9668874740600586,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.043424077332019806,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9625186920166016,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.0442342534661293,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.9585497379302979,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.04140656068921089,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.9448176622390747,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.0448518805205822,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.9776833057403564,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.04289280250668526,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.957261085510254,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.04201837256550789,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9734320640563965,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.04439011961221695,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9649404287338257,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.0432993583381176,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.96087646484375,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.042321283370256424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9586503505706787,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.04592757672071457,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9700541496276855,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.041818130761384964,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9758845567703247,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.04364927113056183,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9568970203399658,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.04458127170801163,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.966611385345459,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03495609387755394,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.468475341796875,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.5568150281906128,
+ "eval_runtime": 39.8227,
+ "eval_samples_per_second": 61.322,
+ "eval_steps_per_second": 0.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.04475132375955582,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.9472060203552246,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.045613858848810196,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.9384872913360596,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.042742565274238586,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.9343316555023193,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.044867027550935745,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.939120888710022,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.04303931072354317,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.9521855115890503,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.04660770669579506,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.9521983861923218,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.045712005347013474,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.935784101486206,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.043419793248176575,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.9451897144317627,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.04524999484419823,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.948369026184082,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.04713384062051773,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.9450111389160156,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.04074151813983917,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.9382028579711914,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.04502285644412041,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.9334264993667603,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.043706756085157394,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.9495983123779297,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.04386162385344505,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.9515377283096313,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.043326519429683685,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.9486628770828247,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.043552469462156296,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.944170355796814,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.04372403025627136,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.9427499771118164,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.04319126158952713,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.9517441987991333,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.04346977174282074,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.9459564685821533,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.04480305314064026,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.9411635398864746,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.04327613115310669,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.9756957292556763,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.04404512792825699,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.9407591819763184,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.043688371777534485,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.9524717330932617,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.04608568921685219,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.9563519954681396,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.04586746171116829,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.9477601051330566,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.0457453727722168,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.9450562000274658,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.044928375631570816,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.937544584274292,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.04492770507931709,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.9332008361816406,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.0454193539917469,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.9613850116729736,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.044987618923187256,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.9520149230957031,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.04336383566260338,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.953560709953308,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.043413858860731125,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.9426552057266235,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.04342658072710037,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.9523890018463135,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0437006801366806,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9690449237823486,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.042938075959682465,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.9512395858764648,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.04373693838715553,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.9322478771209717,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.04317113384604454,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.9695899486541748,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.04304879903793335,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.9470901489257812,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.04294352978467941,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.9300976991653442,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.04347103834152222,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.9500313997268677,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.043133966624736786,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.9629690647125244,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.04175884276628494,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.9543583393096924,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.043001141399145126,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.9514631032943726,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.04206647723913193,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.9431962966918945,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.04285243898630142,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.9547057151794434,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.04447701573371887,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.9542031288146973,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.0425914004445076,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.9506466388702393,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.04313453659415245,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.9480928182601929,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.04270946606993675,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.952941656112671,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.04241576045751572,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.939210057258606,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.041205525398254395,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.9364166259765625,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.0434810034930706,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.9460487365722656,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.04301954805850983,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.9502805471420288,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.0429537408053875,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.9432543516159058,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.0425160713493824,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.9487577676773071,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.04392602667212486,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.9603791236877441,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.0426364541053772,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.9570332765579224,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.04407336562871933,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.9530041217803955,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.04233618453145027,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.9509906768798828,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.04305610433220863,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.957235336303711,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.04430278018116951,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.940815806388855,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.04226064682006836,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.9556574821472168,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.04346537962555885,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.9461195468902588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.04263962432742119,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9576923847198486,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.04381522908806801,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.9449446201324463,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.04218338802456856,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.9571001529693604,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.0416242852807045,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.9477391242980957,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.04212493449449539,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.966149091720581,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.042672351002693176,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.9682352542877197,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.04106829687952995,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.9462820291519165,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.043548960238695145,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.957768440246582,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03447113558650017,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4630240201950073,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.5573379993438721,
+ "eval_runtime": 46.5842,
+ "eval_samples_per_second": 52.421,
+ "eval_steps_per_second": 0.429,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.04285870119929314,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.9332802295684814,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.04557755962014198,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.9371343851089478,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.04116271808743477,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.9495322704315186,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.04556567594408989,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.9440783262252808,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.04328050836920738,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.9327294826507568,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.04313594475388527,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.933357834815979,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.047144487500190735,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.9348008632659912,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.04668821394443512,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.9230201244354248,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.04336639121174812,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.9244744777679443,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.043821923434734344,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.9395811557769775,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.04383927211165428,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.9268351793289185,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.042469821870326996,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.9373741149902344,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.043338630348443985,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.9304418563842773,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.04467812925577164,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.927775263786316,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.043438415974378586,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.9424524307250977,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.04276007041335106,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.9348394870758057,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.044115278869867325,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.9279959201812744,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.04312213510274887,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.9148272275924683,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.04442084953188896,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.9318461418151855,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.04306824132800102,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.929410457611084,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.04616241529583931,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.9425160884857178,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.043449901044368744,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.93715500831604,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.0449586845934391,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.943284273147583,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.044567257165908813,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.9287354946136475,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.04409945756196976,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.9442834854125977,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.04614093527197838,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.9407234191894531,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.044272493571043015,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.9427531957626343,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.046257223933935165,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.934558629989624,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.04504263773560524,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.9344301223754883,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.04613269865512848,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.9523203372955322,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.04359893128275871,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.9534872770309448,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.044758617877960205,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.9394410848617554,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.04496034234762192,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.9474343061447144,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.0438607819378376,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.9398064613342285,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.0454886294901371,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.936154842376709,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.04377540200948715,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.9346157312393188,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.043989669531583786,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.929081916809082,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.044563986361026764,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.9414352178573608,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.043291036039590836,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.9329895973205566,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.045155249536037445,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.9318394660949707,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.04445208981633186,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.941894769668579,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.04445616528391838,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.9463168382644653,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.04478035867214203,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.9354333877563477,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.045354459434747696,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.930020809173584,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.04453159123659134,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.9286775588989258,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.044591024518013,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.9429574012756348,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.04425579309463501,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.947604775428772,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.044748082756996155,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.9470477104187012,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.04593580961227417,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.937525987625122,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.043080125004053116,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.946656346321106,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.04556628689169884,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.9434765577316284,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.04450301080942154,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.9515914916992188,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.042459938675165176,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.9470634460449219,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.046506237238645554,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.9352115392684937,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.04481459781527519,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.9462571144104004,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.043813664466142654,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.9520037174224854,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.04445577412843704,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.9387362003326416,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.04351884126663208,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.9258419275283813,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.043723348528146744,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.9318315982818604,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.042861346155405045,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.9379544258117676,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.044699329882860184,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.951422929763794,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.04349956661462784,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.9352158308029175,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.0433838777244091,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.9462525844573975,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.04403919726610184,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.9481416940689087,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.044272877275943756,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.9500665664672852,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.044802214950323105,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.934298038482666,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.04337660223245621,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.954413652420044,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.043723538517951965,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.9608337879180908,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.04384087026119232,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.957395076751709,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.04272010177373886,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.9467015266418457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.04412781819701195,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.9331390857696533,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03537739813327789,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.452278971672058,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.5580063462257385,
+ "eval_runtime": 41.0077,
+ "eval_samples_per_second": 59.55,
+ "eval_steps_per_second": 0.488,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.04488050192594528,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.9278442859649658,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.04385434463620186,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.9266334772109985,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.04343170300126076,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.9108353853225708,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.04333009198307991,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.9282209873199463,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.043575625866651535,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.912508249282837,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.04466782137751579,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.919581413269043,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.04611176252365112,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.9342784881591797,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.04373355954885483,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.9118773937225342,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.047107476741075516,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.9101970195770264,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.04320043325424194,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.932800531387329,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.04540976136922836,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.9250563383102417,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.04323503002524376,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.9331316947937012,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.04482870548963547,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.9348450899124146,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.044921185821294785,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.9033823013305664,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.0437164381146431,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.9165492057800293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.04656543210148811,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.9247410297393799,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.04488205537199974,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.92763090133667,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.04543324187397957,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.9337310791015625,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.04601719602942467,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.9362705945968628,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.04425300285220146,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.9175018072128296,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.046571098268032074,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.9094732999801636,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.04628605395555496,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.9328744411468506,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.04729470983147621,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.9140973091125488,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.04496074467897415,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.928534984588623,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.9149569272994995,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.044917237013578415,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.9233367443084717,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.04609345644712448,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.9380614757537842,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.045224424451589584,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.923943281173706,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.04588423669338226,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.9246735572814941,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.046085700392723083,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.9078786373138428,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.045062921941280365,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.9289073944091797,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.045110709965229034,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.9322113990783691,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.0472494512796402,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.938441276550293,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.04466252401471138,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.9182933568954468,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.04513029381632805,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.9107897281646729,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.045220620930194855,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.940725564956665,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.045562177896499634,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.9358959197998047,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.04428212717175484,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.9271135330200195,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.04473140835762024,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.931797742843628,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.043908942490816116,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.9203201532363892,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.043839748948812485,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.9134262800216675,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.04567759111523628,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.9289779663085938,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.04431043565273285,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.941714882850647,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.04408961907029152,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.9301257133483887,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.04624704271554947,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.9381217956542969,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.04422634467482567,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.9162166118621826,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.04419756308197975,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.92188560962677,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.04618249088525772,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.9345735311508179,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.04490220174193382,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.9351990222930908,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.046499986201524734,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.9223530292510986,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.04331587627530098,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.9249944686889648,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.04636161029338837,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.9414262771606445,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.0445382185280323,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.9354854822158813,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.04564649984240532,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.9308267831802368,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.04421863704919815,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.9366023540496826,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.04698484018445015,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.9335650205612183,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.04388933628797531,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.9299960136413574,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.046337876468896866,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.9503027200698853,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.04348573088645935,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.9341070652008057,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.045959342271089554,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.9151384830474854,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.04479081928730011,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.9382342100143433,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.04572956636548042,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.9310452938079834,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.04677167162299156,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.9518420696258545,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.04495622590184212,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.9428808689117432,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.04611065983772278,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.9220831394195557,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.04454458877444267,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.9490790367126465,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.046582695096731186,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.9425218105316162,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.04383963346481323,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.9434903860092163,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.044776711612939835,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.930960774421692,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.043473951518535614,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.934765100479126,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.04574871063232422,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.9359397888183594,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03675457090139389,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.4525755643844604,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.5587614178657532,
+ "eval_runtime": 54.5655,
+ "eval_samples_per_second": 44.754,
+ "eval_steps_per_second": 0.367,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.0462750606238842,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.9179565906524658,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.04558630660176277,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8978389501571655,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.04710238054394722,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.9018924236297607,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.04631956294178963,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.9072178602218628,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.04520673677325249,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.9221091270446777,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.04918315261602402,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.9093704223632812,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.046507298946380615,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.9335057735443115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.0474676676094532,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.9136755466461182,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.045877616852521896,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.9096475839614868,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.04849010333418846,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.9148929119110107,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.04782263934612274,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.914750099182129,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.045352671295404434,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.9120718240737915,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.04869354888796806,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.91766357421875,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.04467938840389252,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.899644374847412,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.047056928277015686,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.9113627672195435,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.045194532722234726,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.9268800020217896,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.04681428149342537,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.9223413467407227,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.046070028096437454,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.9202659130096436,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.04682234674692154,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.9200537204742432,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.04590713232755661,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.905088186264038,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.0492512583732605,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.923885464668274,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.046058595180511475,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.9140686988830566,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05024345591664314,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.9238293170928955,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.04682156816124916,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.91746187210083,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.04715842381119728,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.9203336238861084,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.04766647145152092,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.9099605083465576,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.0484190359711647,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.9298415184020996,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.04713325947523117,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.9137039184570312,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.04657702147960663,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.909759283065796,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.047971706837415695,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.9150055646896362,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.04693721979856491,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.9161012172698975,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.045918580144643784,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.9190044403076172,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.044876597821712494,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.9148699045181274,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.04615379497408867,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.9099400043487549,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.044768523424863815,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.9174376726150513,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.04711288958787918,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.9337024688720703,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.04604453220963478,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.918162226676941,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.046346515417099,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.9226276874542236,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.046291086822748184,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.9002764225006104,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.04728492349386215,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.9176394939422607,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.0452590174973011,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.9092847108840942,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.04720590263605118,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.9305121898651123,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.04423863813281059,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.917733907699585,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.047705911099910736,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.9264805316925049,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.04461591690778732,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.9155296087265015,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.0448867566883564,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.9237422943115234,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.04488728940486908,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.9229776859283447,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.04524501785635948,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.9315156936645508,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.04549748823046684,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.9230515956878662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.04490918666124344,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8992328643798828,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.04507176950573921,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.919519305229187,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.04591760039329529,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.915913462638855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.04368108510971069,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.931168556213379,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.04612324759364128,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.9031120538711548,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.04388239607214928,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.912826657295227,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.04572778567671776,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.924182415008545,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.04501771181821823,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.9176487922668457,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.043582577258348465,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.9067806005477905,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.046558983623981476,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.9344135522842407,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.04396207630634308,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.9220595359802246,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.04515782743692398,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.9215635061264038,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.045465730130672455,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.9135242700576782,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.04482322558760643,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.9089176654815674,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.04502297565340996,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.9229989051818848,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.044661134481430054,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.9119620323181152,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.04521520808339119,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.937756896018982,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.04591496288776398,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.9198966026306152,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.04410246014595032,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.9341609477996826,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.04488343000411987,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.9275271892547607,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.04497985169291496,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.9064011573791504,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.043899375945329666,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.9203660488128662,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.0378071591258049,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.4432313442230225,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.5599055290222168,
+ "eval_runtime": 40.2366,
+ "eval_samples_per_second": 60.691,
+ "eval_steps_per_second": 0.497,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.04420118033885956,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.893591284751892,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.04334490746259689,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.9110057353973389,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.04583484306931496,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.903444528579712,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.04383937269449234,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.9030766487121582,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.043749865144491196,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.9130524396896362,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.04311221092939377,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.9107348918914795,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.045599307864904404,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.900320053100586,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.04430649057030678,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.9028031826019287,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.04488218575716019,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.9213577508926392,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.04538808390498161,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8968687057495117,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.04458931088447571,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.9092092514038086,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.046152856200933456,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.9046111106872559,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.043571822345256805,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.9015637636184692,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.04416032135486603,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.8788703680038452,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.04414350166916847,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.9068684577941895,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.04326542839407921,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.9123764038085938,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.04510084167122841,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.9027619361877441,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.0441674180328846,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8962973356246948,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.04522429034113884,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.9108083248138428,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.044228654354810715,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.895268440246582,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.044145651161670685,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.9096617698669434,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.04376067593693733,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8920894861221313,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.0455496646463871,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.9054405689239502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.0457804873585701,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.9108986854553223,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.046842969954013824,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.9257216453552246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.04604218900203705,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8883439302444458,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.045921169221401215,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.917250156402588,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.04587477445602417,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.9154161214828491,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.04593200236558914,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.9063808917999268,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.046741142868995667,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.903794527053833,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.0460849292576313,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.9034333229064941,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.04705662652850151,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.9169785976409912,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.046874064952135086,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.9086027145385742,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.04523243382573128,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8996422290802002,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.04941021278500557,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8924407958984375,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.046277012676000595,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.9230189323425293,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.04795045778155327,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.9096146821975708,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.046317312866449356,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.903681993484497,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.04782787710428238,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8976242542266846,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.04749831184744835,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8980826139450073,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.048178333789110184,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.9099817276000977,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.04797761142253876,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.918223261833191,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.04733513295650482,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8991427421569824,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.04613934084773064,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.9202003479003906,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.04839421436190605,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.910476565361023,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.04656097665429115,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.894330620765686,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.04690321907401085,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.922321081161499,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.0483844019472599,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.9088165760040283,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.04675137251615524,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.9161102771759033,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.048790913075208664,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.9126578569412231,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.04615939408540726,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.9056590795516968,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.04707014560699463,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.9129831790924072,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.04887249693274498,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.9198627471923828,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.04701855778694153,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.904289960861206,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.04752900078892708,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.9119199514389038,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.04637937620282173,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.9015456438064575,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.04624813422560692,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.9151562452316284,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.04688073322176933,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.9010138511657715,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.04610495641827583,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.9150097370147705,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.04617947340011597,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.9171550273895264,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.047766949981451035,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.9131733179092407,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.04596418887376785,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.9148085117340088,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.04751482605934143,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.8954293727874756,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.04667142033576965,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.9257514476776123,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.04714122414588928,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.9146203994750977,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.046158310025930405,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.9000868797302246,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.0453617125749588,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.8987735509872437,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.045940201729536057,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.9061667919158936,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.04766112565994263,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.9178999662399292,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.04459957405924797,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.9119558334350586,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.0476016104221344,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.900212287902832,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03775295615196228,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.4189457893371582,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.5608142018318176,
+ "eval_runtime": 40.0941,
+ "eval_samples_per_second": 60.907,
+ "eval_steps_per_second": 0.499,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.04691528528928757,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.9091784954071045,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.044649846851825714,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.887937068939209,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.0458390973508358,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.9007302522659302,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.044493917375802994,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.896045446395874,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.04401393234729767,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.8799163103103638,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.04522944241762161,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.9080159664154053,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.04545010253787041,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.8961689472198486,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.044937968254089355,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.8832945823669434,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.04527098685503006,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.8932111263275146,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.045020874589681625,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.8807295560836792,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.044883109629154205,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8942033052444458,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.04531681910157204,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.897594690322876,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.04620317742228508,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.881105661392212,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.04480401799082756,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.907268762588501,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.046019479632377625,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.8711462020874023,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.04485408961772919,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8994673490524292,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.044721443206071854,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.9041085243225098,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.04607081413269043,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.8861747980117798,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.045138005167245865,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.9011361598968506,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.04558892175555229,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8930423259735107,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.04461068660020828,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.9006925821304321,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.04619097337126732,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.894855260848999,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.04536662623286247,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8980623483657837,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.04698953405022621,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.9184906482696533,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.04509678855538368,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.897698163986206,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.04784569889307022,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8914282321929932,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.046398840844631195,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8883490562438965,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.0459408275783062,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.8927901983261108,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.04603567346930504,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.8987791538238525,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.04574081301689148,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.9107396602630615,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.04680564999580383,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.896730899810791,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.04629705101251602,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.8787988424301147,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.046353038400411606,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8965022563934326,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.04517079144716263,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.8964993953704834,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.04716475307941437,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.893757939338684,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.045174792408943176,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.892754316329956,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.04810452088713646,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8958793878555298,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.046722661703825,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.89261794090271,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.046140771359205246,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.893494725227356,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0471862368285656,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.896652340888977,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.045774709433317184,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.9030897617340088,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.04702781140804291,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.9008216857910156,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.04491126537322998,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.8858935832977295,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.046226441860198975,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8982845544815063,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.046491123735904694,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.9116873741149902,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.04627670720219612,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8874033689498901,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.04598962143063545,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.8797005414962769,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.04507545381784439,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8928991556167603,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.04748183488845825,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.884603500366211,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.045718979090452194,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.9003963470458984,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.04665536805987358,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.8925182819366455,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.046419307589530945,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.9061237573623657,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.04635924845933914,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.906002402305603,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.04521135613322258,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8919563293457031,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.045106884092092514,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.904160737991333,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.04707646369934082,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.8977832794189453,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.04630834981799126,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.894344687461853,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.047408487647771835,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.9038341045379639,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.04631415754556656,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.894762635231018,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.04664890095591545,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.9022518396377563,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.04597138240933418,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.907623052597046,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.04781361296772957,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.91298508644104,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.046326275914907455,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8928176164627075,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.04668324813246727,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.9014129638671875,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.046763088554143906,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.896491527557373,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.9125089645385742,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.04805731400847435,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.9019800424575806,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.04599045217037201,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8966295719146729,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.047478046268224716,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.9278576374053955,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.04642656445503235,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.9214816093444824,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.04634053260087967,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.8993182182312012,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03797267749905586,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.4253604412078857,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.5617476105690002,
+ "eval_runtime": 45.755,
+ "eval_samples_per_second": 53.371,
+ "eval_steps_per_second": 0.437,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.04599457234144211,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.8775392770767212,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.04625241830945015,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.8828479051589966,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.04525088518857956,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8901206254959106,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.04521792009472847,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.886819839477539,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.04478102922439575,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.8718209266662598,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.04654891788959503,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.8746660947799683,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.045480672270059586,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.8890061378479004,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.04630589112639427,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.8757891654968262,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.04659707844257355,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.8867700099945068,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.04641665518283844,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.866898775100708,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.04771355912089348,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.8754963874816895,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.04529627785086632,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.8854069709777832,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.04694652929902077,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.8742434978485107,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.04678728058934212,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.871158242225647,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.04631989821791649,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.8754173517227173,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.04773801937699318,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.891624927520752,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.04650811851024628,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.9068515300750732,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.04727979004383087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.8853774070739746,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.04714864864945412,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8933064937591553,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.8800125122070312,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.04849104955792427,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.8784363269805908,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.04615073278546333,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.8884400129318237,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.049269143491983414,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.8754403591156006,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.047510817646980286,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8950352668762207,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.04819583520293236,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.8889074325561523,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.046504657715559006,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.8806939125061035,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.04833124950528145,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.8870890140533447,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.045960672199726105,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.892927646636963,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.04889349266886711,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.9047961235046387,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.04624068737030029,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.8811109066009521,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.045885734260082245,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.8678951263427734,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.047633565962314606,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8910961151123047,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.04605350270867348,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.8854566812515259,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.047033410519361496,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.8889634609222412,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.04733380302786827,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.8894245624542236,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.04729244485497475,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8977644443511963,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.048333797603845596,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.884790301322937,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.047064345329999924,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.8918182849884033,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.04642755165696144,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.879097580909729,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.04668281227350235,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.8825325965881348,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.04552120715379715,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.8836299180984497,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.04680962115526199,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.88942289352417,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.04515194892883301,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.8945739269256592,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.047427091747522354,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.8871266841888428,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.04722534120082855,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.888176679611206,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.047272250056266785,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.8819680213928223,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.04718516021966934,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8838449716567993,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.04651009663939476,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.8843472003936768,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.04740661755204201,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.8730781078338623,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.04755423963069916,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8883650302886963,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.04771524667739868,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.889858365058899,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.04731367900967598,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.8849236965179443,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.047406550496816635,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.9015733003616333,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.04808863624930382,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.888007640838623,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.04662946239113808,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.8868497610092163,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.048229385167360306,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.8910794258117676,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.04799312353134155,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.89329195022583,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.04724393039941788,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8961341381072998,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.047718726098537445,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.8932898044586182,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.047182634472846985,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.9052118062973022,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.048551157116889954,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.9023537635803223,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.046883247792720795,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8965660333633423,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.04889964684844017,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8938546180725098,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.047213371843099594,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.8865680694580078,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.04776838421821594,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.8883678913116455,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.047268882393836975,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.8857024908065796,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.04802943393588066,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.891611099243164,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.04715752974152565,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.892876148223877,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.04750922694802284,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.893934726715088,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.04800679534673691,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8960907459259033,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.047234755009412766,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.8783557415008545,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.039721645414829254,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.4016635417938232,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.56258225440979,
+ "eval_runtime": 40.2416,
+ "eval_samples_per_second": 60.684,
+ "eval_steps_per_second": 0.497,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.04587586596608162,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.8849360942840576,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.045933645218610764,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.8720365762710571,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.04638395458459854,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.8566157817840576,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.045058928430080414,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.8719701766967773,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.04727335646748543,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.862802505493164,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.04480801895260811,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.8806850910186768,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.044394250959157944,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.869253396987915,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.04730968177318573,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.8577207326889038,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.04695093631744385,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.8769750595092773,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.046326130628585815,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.8785123825073242,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.04555234685540199,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.8725554943084717,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.04600582271814346,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.866944670677185,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.047153543680906296,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.8842374086380005,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.04612027481198311,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.8856291770935059,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.046780217438936234,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.8687922954559326,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.04749324172735214,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.8813189268112183,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.04665037617087364,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.8800989389419556,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.04646308720111847,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.8763478994369507,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.04771328344941139,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.8815187215805054,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.04543618485331535,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.8635611534118652,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.04651203751564026,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.8835220336914062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.04736996814608574,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.8735085725784302,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.04747792333364487,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.8725488185882568,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.04807161167263985,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.8877787590026855,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.04677852243185043,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.8738372325897217,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.04674002155661583,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.8771154880523682,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.04732203856110573,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.8681632280349731,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.04681850224733353,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.8689024448394775,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.0475701242685318,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.854485034942627,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.04836683347821236,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.8911771774291992,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.048116907477378845,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.8842213153839111,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.048552945256233215,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.8793752193450928,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.04715408384799957,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.882337212562561,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.04756082221865654,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.8776161670684814,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.048822641372680664,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.8759829998016357,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.04774912819266319,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.876424789428711,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.04727640748023987,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.8738853931427002,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.04769284278154373,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.8824584484100342,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.046457018703222275,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.8755215406417847,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.047964878380298615,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.8781219720840454,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.048171646893024445,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.8883323669433594,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.047379788011312485,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.8814680576324463,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.04854615405201912,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.8766605854034424,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.04816821590065956,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.889110803604126,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.04919019341468811,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.877069115638733,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.04694439098238945,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.8778671026229858,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.04880919307470322,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.8846547603607178,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.04854793846607208,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.8765785694122314,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.046748582273721695,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.886781930923462,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.04887055978178978,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8989977836608887,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.04723396897315979,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.8773930072784424,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.04740145057439804,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.8844830989837646,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.04773439094424248,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.885941743850708,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.046996936202049255,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.8765010833740234,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.047432053834199905,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.88028085231781,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.04719124361872673,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.8810229301452637,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.04668697342276573,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.8809888362884521,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.047171056270599365,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.8816734552383423,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.04659772291779518,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.8802306652069092,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.04730924963951111,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.8817310333251953,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.04733939841389656,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.8873801231384277,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.046300336718559265,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.885282278060913,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.04842502623796463,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.8790912628173828,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.04681224003434181,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.8639018535614014,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.04780548810958862,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.8776453733444214,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.04874429106712341,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.8740344047546387,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.04724373295903206,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.8684015274047852,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.04648366570472717,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.8760385513305664,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.0487273670732975,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.878537893295288,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.047121427953243256,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.8744267225265503,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.04703124985098839,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.88151216506958,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.039533697068691254,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3954941034317017,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.5634603500366211,
+ "eval_runtime": 40.4405,
+ "eval_samples_per_second": 60.385,
+ "eval_steps_per_second": 0.495,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.04424447938799858,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.857087254524231,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.04616435989737511,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.8573684692382812,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.04607802629470825,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.8647383451461792,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.046404775232076645,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.8564095497131348,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.046073272824287415,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.870673656463623,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.04589724540710449,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.8656566143035889,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.04557689651846886,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.863551139831543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.04528677463531494,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.8726980686187744,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.04518650844693184,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.8608030080795288,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.045101597905159,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.8723397254943848,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.04577193036675453,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.8651150465011597,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.04554104804992676,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.868842363357544,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.04631081968545914,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.8642723560333252,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.04638633877038956,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.879462718963623,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.04831362143158913,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.8652305603027344,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.0457226000726223,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.8560177087783813,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.04682072252035141,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.8643035888671875,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.0461200475692749,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.8737964630126953,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.04666521027684212,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.8659546375274658,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.046206701546907425,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.867607831954956,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.0452481210231781,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.8645520210266113,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.04539201781153679,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.8712077140808105,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.0461915098130703,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.8585699796676636,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.04550711438059807,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.861148476600647,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.04656198248267174,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.8621909618377686,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.045940566807985306,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.8835539817810059,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.04591699317097664,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.8564835786819458,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.04533873498439789,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.8683639764785767,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.04501830413937569,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.8729286193847656,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.046648286283016205,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.8827842473983765,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.04606254771351814,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.8655245304107666,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.04632389172911644,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.855072021484375,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.046645358204841614,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.8784645795822144,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.04681893065571785,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.854441523551941,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.04625078663229942,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.8647122383117676,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.04613354429602623,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.8762892484664917,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.04709402844309807,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.8600044250488281,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.04574209824204445,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.870466947555542,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.04667045921087265,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.880115032196045,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.046597469598054886,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.861691951751709,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.046084433794021606,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.874401569366455,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.04673402011394501,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.8739302158355713,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.04635137319564819,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.8740499019622803,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.046038344502449036,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.8763980865478516,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.04640313237905502,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.8664462566375732,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.04735850170254707,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.858694314956665,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.045747581869363785,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.8658379316329956,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.047455597668886185,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.8692824840545654,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.04588734358549118,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.8633465766906738,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.04588395729660988,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.8773810863494873,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.045151300728321075,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.8701531887054443,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.046557553112506866,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.8634908199310303,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.04677796736359596,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.8754336833953857,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.045793842524290085,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.8494234085083008,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.04776719585061073,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.8638850450515747,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.04652281850576401,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.8739361763000488,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.04655012488365173,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.8665215969085693,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.04638802632689476,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.8756872415542603,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.04754665121436119,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.8617222309112549,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.04615491256117821,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.8502249717712402,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.047482844442129135,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.8753585815429688,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.04747573658823967,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.87173330783844,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.046401239931583405,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.8768082857131958,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.04762646555900574,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.9006664752960205,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.0466943122446537,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.874403476715088,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.046864643692970276,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.8817310333251953,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.047573674470186234,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.8714301586151123,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.046654365956783295,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.8701894283294678,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.04718669503927231,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.8631205558776855,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.04694142937660217,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.8714566230773926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.04527781158685684,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.8774428367614746,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.038824740797281265,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3961008787155151,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.564454197883606,
+ "eval_runtime": 41.0298,
+ "eval_samples_per_second": 59.518,
+ "eval_steps_per_second": 0.487,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.045273441821336746,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.8562266826629639,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.04486487805843353,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.847863793373108,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.04506559669971466,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.8449368476867676,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.04576808586716652,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.8547484874725342,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.04573819041252136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.8487834930419922,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.045875146985054016,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.8855187892913818,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.04527868703007698,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.8507651090621948,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.04526630416512489,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.854073405265808,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.04650398716330528,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.8605797290802002,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.04373805224895477,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.8525786399841309,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.04591311886906624,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.8643308877944946,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.04575144872069359,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.8453545570373535,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.04499814286828041,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.8434433937072754,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.04602697491645813,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.8541452884674072,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0453011728823185,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.8705689907073975,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.045442380011081696,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.8543713092803955,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.04572557657957077,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.8648017644882202,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.04642609506845474,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.8579998016357422,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.04620853066444397,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.8584175109863281,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.045815497636795044,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.8525311946868896,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.04605135694146156,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.8759641647338867,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.046593330800533295,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.8701608180999756,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.04522516578435898,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.860581874847412,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.045406781136989594,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.8480677604675293,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.04634137079119682,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.8395036458969116,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.04579410329461098,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.8447685241699219,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.046178966760635376,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.857448935508728,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.04611853137612343,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.8510942459106445,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.04615642875432968,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.8571457862854004,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.047718342393636703,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.8718993663787842,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.04689454659819603,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.8596794605255127,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.04662420228123665,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.8419709205627441,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.04593484848737717,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.8577172756195068,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.04478100687265396,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.866506576538086,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.8815147876739502,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0467715822160244,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.8446149826049805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.04502555727958679,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.8656551837921143,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.046003151684999466,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.8393070697784424,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.047252554446458817,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.8601068258285522,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.04726157337427139,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.8633754253387451,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.04711516946554184,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.8661010265350342,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.04675743728876114,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.8634257316589355,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.04670685529708862,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.8717167377471924,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.04617537558078766,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.8575352430343628,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.04698266461491585,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.871026873588562,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.04679175093770027,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.8709101676940918,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.046020276844501495,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.8659570217132568,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.044609472155570984,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.8701958656311035,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.04686872661113739,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.8471758365631104,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.04671822115778923,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.8661935329437256,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.04792126268148422,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.8482842445373535,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.04631195589900017,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.8454066514968872,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.045949000865221024,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.8641464710235596,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.04714781418442726,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.8783040046691895,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.04625905305147171,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.8647475242614746,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.04681667312979698,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.854670763015747,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.04787219688296318,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.8676559925079346,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.04680484160780907,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.8692317008972168,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.04705028980970383,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.8703923225402832,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.04703309014439583,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.8560512065887451,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.047461897134780884,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.8604670763015747,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.04655826464295387,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.8620721101760864,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.04759373143315315,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.8544520139694214,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.048612091690301895,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.8653002977371216,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.04786037281155586,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.8577156066894531,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.047871846705675125,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.8632076978683472,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.04765869304537773,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.861595869064331,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.04793299362063408,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.8503496646881104,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.04850494861602783,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.870901346206665,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.04661532863974571,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.8583464622497559,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.04766553267836571,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.8652809858322144,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039074305444955826,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3917547464370728,
+ "step": 2880
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.231062406570967e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-2880/training_args.bin b/runs/bi-ssl/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-3240/chat_template.jinja b/runs/bi-ssl/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-3240/config.json b/runs/bi-ssl/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-3240/generation_config.json b/runs/bi-ssl/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-3240/model.safetensors b/runs/bi-ssl/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..24b8b06901196c6dd6d570353f294ef4a6c48f66
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a6eb95294fb631f5f432e875d17f2420f29d1186b64442e57f960b752556f3cc
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-3240/optimizer.pt b/runs/bi-ssl/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f0e76ed8bf8805bf66b67bbe06c62d64e81002fc
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ceed2f2620bac80cfdae875f068c419d095f2d0ade0fdda49c77956f230bb4bc
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-3240/rng_state_0.pth b/runs/bi-ssl/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..854d237a4ff7656e8561049ef131e53b73d26e13
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1f0fdefddf6f30886458ed628f8251f23fec39a294e6649a7ab241784b8460
+size 14917
diff --git a/runs/bi-ssl/checkpoint-3240/rng_state_1.pth b/runs/bi-ssl/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bf9f97063d7490c565f537598baa2da46c4b6b26
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35669f76342834bd66ba665f73a6cfdbe07c4f2c0f41f6e5e6ed2ad3ae67a161
+size 14917
diff --git a/runs/bi-ssl/checkpoint-3240/scheduler.pt b/runs/bi-ssl/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..26a875c54fc41f3b55217f78e9787c3a1beec0e7
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ffe46f59a068a92a009d9e85177c3c1b0af06eb72511444aa28197cfb8d5f1be
+size 1465
diff --git a/runs/bi-ssl/checkpoint-3240/tokenizer.json b/runs/bi-ssl/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-3240/tokenizer_config.json b/runs/bi-ssl/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-3240/trainer_state.json b/runs/bi-ssl/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..64adfa64ada889c2625e8de5e8834401e799b712
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/trainer_state.json
@@ -0,0 +1,23066 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 45.0,
+ "eval_steps": 500,
+ "global_step": 3240,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.5535854697227478,
+ "eval_runtime": 41.148,
+ "eval_samples_per_second": 59.347,
+ "eval_steps_per_second": 0.486,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.039032384753227234,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.9920241832733154,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.041609007865190506,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9881491661071777,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.038623128086328506,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9976372718811035,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.03914353623986244,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9816069602966309,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.04063460975885391,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 2.0046496391296387,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.042663004249334335,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9930580854415894,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.040998101234436035,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 2.008364677429199,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.041671473532915115,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 2.005788803100586,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.0420398935675621,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.9959884881973267,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.0416552871465683,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.9947746992111206,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.041419412940740585,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9942247867584229,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.04148508235812187,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9945931434631348,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.041060201823711395,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 2.0063748359680176,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.040119070559740067,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 2.000641107559204,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.04179691895842552,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9936890602111816,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.040200114250183105,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9800493717193604,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.03986869752407074,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.9906518459320068,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.043195679783821106,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9976487159729004,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.03883126378059387,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 2.001391887664795,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.03800702840089798,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 2.004763603210449,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0407932847738266,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.9919681549072266,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.0401216596364975,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9732658863067627,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.03860956430435181,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9886324405670166,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.040160007774829865,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 2.0077905654907227,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.04022439941763878,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9821927547454834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.041961729526519775,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9947912693023682,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.04093684256076813,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 2.007406234741211,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.04111676663160324,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 2.0099968910217285,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.03939409554004669,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 2.0050230026245117,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.039408158510923386,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.989539384841919,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.039070483297109604,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 2.0107581615448,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.03986838087439537,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 2.007388114929199,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.03872528672218323,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 2.002636194229126,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.03786979243159294,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9882686138153076,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.037976834923028946,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 2.020331621170044,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.037561025470495224,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.998062014579773,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.040928397327661514,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.9984104633331299,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.038733627647161484,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 2.023151397705078,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.03880929574370384,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9985425472259521,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.040410179644823074,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 2.0105319023132324,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.04060919210314751,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9950847625732422,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.038462985306978226,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 2.0109362602233887,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.03816642239689827,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 2.013629913330078,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.03969560191035271,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.98691987991333,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.0382484570145607,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 2.0075533390045166,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.03932507336139679,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 2.014407157897949,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.038706980645656586,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9987857341766357,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.03753427788615227,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.9929393529891968,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.03967666998505592,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 2.0053462982177734,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.03984595835208893,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 2.0171046257019043,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.03843587636947632,
+ "learning_rate": 0.000303,
+ "loss": 2.016073703765869,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.04069933295249939,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 2.0196797847747803,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.03816717118024826,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9992872476577759,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.03972223773598671,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 2.0082225799560547,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.03925364091992378,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 2.0078647136688232,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.03874839469790459,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.9888811111450195,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.03876980394124985,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 2.0105342864990234,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.037127457559108734,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 2.0146484375,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.04017023742198944,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 2.0216569900512695,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.038180865347385406,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 2.007103443145752,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.037544023245573044,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 2.002417802810669,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.04044882953166962,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 2.01629638671875,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.03934580460190773,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 2.015477418899536,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.038512952625751495,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 2.0063209533691406,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.04022837057709694,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 2.0138511657714844,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.041775189340114594,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 2.0133614540100098,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.035933662205934525,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 2.014932632446289,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.03949640318751335,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 2.0103020668029785,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.03965448960661888,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 2.004199504852295,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.03770808130502701,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9988662004470825,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.03707122802734375,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.018692970275879,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.03094588965177536,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4853765964508057,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.5541954636573792,
+ "eval_runtime": 40.5827,
+ "eval_samples_per_second": 60.173,
+ "eval_steps_per_second": 0.493,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.0392163060605526,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9966017007827759,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.0415823757648468,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9879624843597412,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.04013896360993385,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.988283395767212,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.03999984636902809,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9808108806610107,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.04117234796285629,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9704176187515259,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.04188748076558113,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9882853031158447,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.04021158069372177,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 2.000579595565796,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.041353169828653336,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9934958219528198,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.04121048375964165,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9767675399780273,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.04130895063281059,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9964344501495361,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.043271005153656006,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9858148097991943,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.041478291153907776,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.9812901020050049,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.03920124098658562,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.9811720848083496,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.041624993085861206,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.9834777116775513,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.040084224194288254,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.986745834350586,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.04137095808982849,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.973207712173462,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.041268061846494675,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.992466688156128,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.03843039646744728,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.977168083190918,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.041724126785993576,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.968721866607666,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.03939545527100563,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9894965887069702,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.041979216039180756,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.9862024784088135,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.04003292694687843,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9772882461547852,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.043241675943136215,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9868083000183105,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.04085911810398102,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9829399585723877,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.042357802391052246,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.996422529220581,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.04186234250664711,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 2.004091739654541,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.041697580367326736,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9707295894622803,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.044106002897024155,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9954397678375244,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.042095571756362915,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.978273868560791,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.04259150102734566,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9970736503601074,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.04311408847570419,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.9791979789733887,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.0417819544672966,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9963579177856445,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.041719887405633926,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9846333265304565,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.03955843672156334,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9993603229522705,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.041470643132925034,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 2.00172758102417,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.042907752096652985,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9878431558609009,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.04169829934835434,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9879419803619385,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.041907984763383865,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9958174228668213,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.04091141000390053,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9915833473205566,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.04279981926083565,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 2.0011239051818848,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.04060981422662735,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 2.008984088897705,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.04239627346396446,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9861326217651367,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.041348736733198166,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9886527061462402,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.04240468144416809,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 2.0117287635803223,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.04239945858716965,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.9927752017974854,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.04039507359266281,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9964733123779297,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.040595248341560364,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.996137022972107,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.04081724211573601,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.999343752861023,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.039217282086610794,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.9974390268325806,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.040758758783340454,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9964487552642822,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.04097484052181244,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.9863066673278809,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.03944368660449982,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 2.0107219219207764,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.04319391027092934,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9830152988433838,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.04203958436846733,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 2.01261568069458,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.03908214345574379,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 2.002816677093506,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.04401380196213722,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9947903156280518,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.04078475758433342,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.9908418655395508,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.03904392570257187,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.9999381303787231,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.0408707857131958,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.976728916168213,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.03951644524931908,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.9820250272750854,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.038964930921792984,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9985617399215698,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.03885824978351593,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 2.012847900390625,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.04176724702119827,
+ "learning_rate": 0.000280627938758204,
+ "loss": 2.000138521194458,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.03801671043038368,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9985980987548828,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.03998260200023651,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 2.016493320465088,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.041373904794454575,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.996181607246399,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.04230344295501709,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.994934320449829,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.03852430358529091,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9986990690231323,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.04095832630991936,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 2.0044407844543457,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.039320334792137146,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9949603080749512,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.039367519319057465,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9997683763504028,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.03257475048303604,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.5053578615188599,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.5548559427261353,
+ "eval_runtime": 39.9404,
+ "eval_samples_per_second": 61.141,
+ "eval_steps_per_second": 0.501,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.04034148156642914,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9629207849502563,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.04501507431268692,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.974515676498413,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.04124121740460396,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9755148887634277,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.04242594540119171,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9660277366638184,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.04222042113542557,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.969848871231079,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.041065510362386703,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9839062690734863,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.04202630743384361,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9626474380493164,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.03920961171388626,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9699093103408813,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.041874419897794724,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9744274616241455,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.04031674563884735,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9619100093841553,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.04077756404876709,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.977008581161499,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.0406559556722641,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9602702856063843,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.0407014898955822,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9805724620819092,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.04144314303994179,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9797005653381348,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.03987768292427063,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9890257120132446,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.04087170585989952,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9670617580413818,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.0421152263879776,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9832180738449097,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.041151583194732666,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.979284405708313,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.04098111018538475,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9762449264526367,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.040003713220357895,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9810866117477417,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.039482954889535904,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.9789704084396362,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.040345363318920135,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9768264293670654,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.038912542164325714,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9986684322357178,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.04091883823275566,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.9675683975219727,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.040190439671278,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9741504192352295,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.040189869701862335,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9939947128295898,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.041559718549251556,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.988523244857788,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.04450741782784462,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9801191091537476,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.04318423569202423,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9808297157287598,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.039648231118917465,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.995420217514038,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.04360787943005562,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9885940551757812,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.04208594560623169,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.991687536239624,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.041687630116939545,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9881685972213745,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.04600570350885391,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.9956451654434204,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.04074542596936226,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9823975563049316,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.04009614884853363,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.9956731796264648,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.04262600094079971,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9813146591186523,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.04119280353188515,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9755754470825195,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.039549387991428375,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9963082075119019,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.04041566327214241,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9689855575561523,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.0396316759288311,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9947049617767334,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.03907989338040352,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.980762243270874,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.04385632649064064,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.990250825881958,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.04149923846125603,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.9612936973571777,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.041488222777843475,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 2.0052437782287598,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.04136145859956741,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9815279245376587,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.03946318477392197,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.984222650527954,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.03961804881691933,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9865868091583252,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0396062508225441,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9827325344085693,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.03807860612869263,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.969796061515808,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.040188297629356384,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.9754271507263184,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.04030116647481918,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.984015703201294,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.03954409807920456,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.986281394958496,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.03851275518536568,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9770636558532715,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.039922576397657394,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9833152294158936,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.040427785366773605,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9849940538406372,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.03961245343089104,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.9793310165405273,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.038811273872852325,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9942911863327026,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.03950529173016548,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9915971755981445,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.04060761258006096,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9923640489578247,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.03954262658953667,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.969840168952942,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.040870875120162964,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.986947774887085,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.03830090910196304,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9978424310684204,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.04211213067173958,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9800487756729126,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.039632175117731094,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9931446313858032,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.04033558815717697,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.994535207748413,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.040556881576776505,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.990935206413269,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.0404195562005043,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9928548336029053,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.03944119065999985,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9880776405334473,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.041356492787599564,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 2.0028457641601562,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.040106043219566345,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.9898993968963623,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03221338987350464,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.476259469985962,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.5553070902824402,
+ "eval_runtime": 49.7026,
+ "eval_samples_per_second": 49.132,
+ "eval_steps_per_second": 0.402,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.040987614542245865,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.9529434442520142,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.041120950132608414,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9582853317260742,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.03971652314066887,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.968639850616455,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.03996049612760544,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.9660120010375977,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.041076596826314926,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9702348709106445,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.042114660143852234,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.958723545074463,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.041039030998945236,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9631943702697754,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.03982028365135193,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9652111530303955,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.03985974192619324,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.963340401649475,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.04071837291121483,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9834423065185547,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.04139500856399536,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9624135494232178,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.04257931560277939,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.984895944595337,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.04105570912361145,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.965362787246704,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.04104257747530937,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.972224235534668,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.04118179529905319,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.970554232597351,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.042708441615104675,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.9676144123077393,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.04269356653094292,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9650506973266602,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.04225006699562073,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9717724323272705,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.044967059046030045,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.962235689163208,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.042227912694215775,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9613938331604004,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.04277089610695839,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.9753990173339844,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.04182279482483864,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9625771045684814,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.04324203357100487,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.968394160270691,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.04029430076479912,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9559634923934937,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.0409722626209259,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.9495587348937988,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.042297445237636566,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9796255826950073,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.04394613206386566,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9650824069976807,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.041808269917964935,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.9505605697631836,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.043006978929042816,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.9647276401519775,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.04460060968995094,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.9642753601074219,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.04388919845223427,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.9735398292541504,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.04144032299518585,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9798399209976196,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.04448307305574417,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9688754081726074,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.04168044030666351,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.9607760906219482,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.04390672221779823,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.985724687576294,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.05282226577401161,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.971274733543396,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.04509815573692322,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9798986911773682,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.04231378436088562,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9754219055175781,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.04514963924884796,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9875903129577637,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.04290074110031128,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9779725074768066,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.043086808174848557,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9822276830673218,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.041193511337041855,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.956713318824768,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.041158173233270645,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9508072137832642,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.04199864715337753,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9838216304779053,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.042495034635066986,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9770547151565552,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.04065609350800514,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9711198806762695,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.04315977916121483,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.957960605621338,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.04295031726360321,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9879754781723022,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.04057304933667183,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9813754558563232,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.041819434612989426,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.967017650604248,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.04248471185564995,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9724358320236206,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.043477047234773636,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9974957704544067,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.041802674531936646,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.969354510307312,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.0430421382188797,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.9911510944366455,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.04107428342103958,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.975877046585083,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.04443598911166191,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9712554216384888,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.04327385500073433,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9681297540664673,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.04173135384917259,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9472997188568115,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.04201003164052963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9661506414413452,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.04078659787774086,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.9666576385498047,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0406930036842823,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.9849047660827637,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.042122919112443924,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.9777114391326904,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.04120451211929321,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.969825267791748,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.04186492785811424,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.994114637374878,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.04207214340567589,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.9899489879608154,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.044357068836688995,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.9830305576324463,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.04240988567471504,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9758679866790771,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.04397385194897652,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9774196147918701,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.04195938631892204,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.9627633094787598,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.04116087406873703,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.967322826385498,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.04200683906674385,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9736065864562988,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.0335347019135952,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.465168833732605,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.5561301708221436,
+ "eval_runtime": 40.3807,
+ "eval_samples_per_second": 60.474,
+ "eval_steps_per_second": 0.495,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.041839007288217545,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.962834119796753,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.04494776204228401,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9620225429534912,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.04260874167084694,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.9532074928283691,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.041091833263635635,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.9500408172607422,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.04230482876300812,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.9540523290634155,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.04213967174291611,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.9378814697265625,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.04107899218797684,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.9528520107269287,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.042169325053691864,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.9380617141723633,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.04244079068303108,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.9579730033874512,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.041498638689517975,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.9536144733428955,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.040074724704027176,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.9410881996154785,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.04285141080617905,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.948718786239624,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.041612278670072556,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.9381821155548096,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.04301951825618744,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.9557945728302002,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.04282021522521973,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.9603688716888428,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.046332504600286484,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.9555209875106812,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0429227314889431,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.9428198337554932,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.04214467853307724,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9655869007110596,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.04359026253223419,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.9500617980957031,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.041300319135189056,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.9598267078399658,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.04707876220345497,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.9480507373809814,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.04198484867811203,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.9500718116760254,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.04452266916632652,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.967477560043335,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.04509236291050911,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.95900297164917,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.04348349943757057,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.9371505975723267,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.04213197901844978,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.9548835754394531,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.04171326011419296,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.9320429563522339,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.040957994759082794,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9708552360534668,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.042061030864715576,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.9647853374481201,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.042551394551992416,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9628281593322754,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.04178022965788841,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9609858989715576,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.041741300374269485,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.965749740600586,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.043949443846940994,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9692953824996948,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.04203510284423828,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9678642749786377,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.043694913387298584,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.9455668926239014,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.042708177119493484,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.965721845626831,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.04325935244560242,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.952937126159668,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.04308290407061577,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9778510332107544,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.04172641783952713,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9692282676696777,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.04281787946820259,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.9532403945922852,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.04087405279278755,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.961708903312683,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.04168091341853142,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.977181077003479,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.04360164329409599,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9583289623260498,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.04258623719215393,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.969384789466858,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.04215861111879349,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9673523902893066,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.04312222823500633,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.9638433456420898,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.04376685991883278,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9621204137802124,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.04453703761100769,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9714503288269043,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.04112813621759415,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9752442836761475,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.041888099163770676,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9700050354003906,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.040998443961143494,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9721579551696777,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.04311826825141907,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.980010747909546,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.04124320298433304,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.952293872833252,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.042228251695632935,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9557874202728271,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.04347359761595726,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.963796854019165,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.03958803787827492,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.9730989933013916,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.043780308216810226,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.9558871984481812,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.04270954802632332,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9668874740600586,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.043424077332019806,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9625186920166016,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.0442342534661293,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.9585497379302979,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.04140656068921089,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.9448176622390747,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.0448518805205822,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.9776833057403564,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.04289280250668526,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.957261085510254,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.04201837256550789,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9734320640563965,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.04439011961221695,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9649404287338257,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.0432993583381176,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.96087646484375,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.042321283370256424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9586503505706787,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.04592757672071457,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9700541496276855,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.041818130761384964,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9758845567703247,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.04364927113056183,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9568970203399658,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.04458127170801163,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.966611385345459,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03495609387755394,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.468475341796875,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.5568150281906128,
+ "eval_runtime": 39.8227,
+ "eval_samples_per_second": 61.322,
+ "eval_steps_per_second": 0.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.04475132375955582,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.9472060203552246,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.045613858848810196,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.9384872913360596,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.042742565274238586,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.9343316555023193,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.044867027550935745,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.939120888710022,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.04303931072354317,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.9521855115890503,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.04660770669579506,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.9521983861923218,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.045712005347013474,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.935784101486206,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.043419793248176575,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.9451897144317627,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.04524999484419823,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.948369026184082,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.04713384062051773,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.9450111389160156,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.04074151813983917,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.9382028579711914,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.04502285644412041,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.9334264993667603,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.043706756085157394,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.9495983123779297,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.04386162385344505,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.9515377283096313,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.043326519429683685,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.9486628770828247,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.043552469462156296,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.944170355796814,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.04372403025627136,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.9427499771118164,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.04319126158952713,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.9517441987991333,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.04346977174282074,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.9459564685821533,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.04480305314064026,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.9411635398864746,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.04327613115310669,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.9756957292556763,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.04404512792825699,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.9407591819763184,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.043688371777534485,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.9524717330932617,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.04608568921685219,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.9563519954681396,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.04586746171116829,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.9477601051330566,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.0457453727722168,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.9450562000274658,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.044928375631570816,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.937544584274292,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.04492770507931709,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.9332008361816406,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.0454193539917469,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.9613850116729736,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.044987618923187256,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.9520149230957031,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.04336383566260338,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.953560709953308,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.043413858860731125,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.9426552057266235,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.04342658072710037,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.9523890018463135,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0437006801366806,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9690449237823486,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.042938075959682465,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.9512395858764648,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.04373693838715553,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.9322478771209717,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.04317113384604454,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.9695899486541748,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.04304879903793335,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.9470901489257812,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.04294352978467941,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.9300976991653442,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.04347103834152222,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.9500313997268677,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.043133966624736786,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.9629690647125244,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.04175884276628494,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.9543583393096924,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.043001141399145126,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.9514631032943726,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.04206647723913193,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.9431962966918945,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.04285243898630142,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.9547057151794434,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.04447701573371887,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.9542031288146973,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.0425914004445076,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.9506466388702393,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.04313453659415245,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.9480928182601929,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.04270946606993675,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.952941656112671,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.04241576045751572,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.939210057258606,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.041205525398254395,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.9364166259765625,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.0434810034930706,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.9460487365722656,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.04301954805850983,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.9502805471420288,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.0429537408053875,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.9432543516159058,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.0425160713493824,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.9487577676773071,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.04392602667212486,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.9603791236877441,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.0426364541053772,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.9570332765579224,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.04407336562871933,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.9530041217803955,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.04233618453145027,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.9509906768798828,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.04305610433220863,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.957235336303711,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.04430278018116951,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.940815806388855,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.04226064682006836,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.9556574821472168,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.04346537962555885,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.9461195468902588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.04263962432742119,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9576923847198486,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.04381522908806801,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.9449446201324463,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.04218338802456856,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.9571001529693604,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.0416242852807045,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.9477391242980957,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.04212493449449539,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.966149091720581,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.042672351002693176,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.9682352542877197,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.04106829687952995,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.9462820291519165,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.043548960238695145,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.957768440246582,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03447113558650017,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4630240201950073,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.5573379993438721,
+ "eval_runtime": 46.5842,
+ "eval_samples_per_second": 52.421,
+ "eval_steps_per_second": 0.429,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.04285870119929314,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.9332802295684814,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.04557755962014198,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.9371343851089478,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.04116271808743477,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.9495322704315186,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.04556567594408989,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.9440783262252808,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.04328050836920738,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.9327294826507568,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.04313594475388527,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.933357834815979,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.047144487500190735,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.9348008632659912,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.04668821394443512,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.9230201244354248,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.04336639121174812,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.9244744777679443,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.043821923434734344,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.9395811557769775,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.04383927211165428,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.9268351793289185,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.042469821870326996,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.9373741149902344,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.043338630348443985,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.9304418563842773,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.04467812925577164,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.927775263786316,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.043438415974378586,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.9424524307250977,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.04276007041335106,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.9348394870758057,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.044115278869867325,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.9279959201812744,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.04312213510274887,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.9148272275924683,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.04442084953188896,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.9318461418151855,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.04306824132800102,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.929410457611084,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.04616241529583931,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.9425160884857178,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.043449901044368744,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.93715500831604,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.0449586845934391,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.943284273147583,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.044567257165908813,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.9287354946136475,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.04409945756196976,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.9442834854125977,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.04614093527197838,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.9407234191894531,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.044272493571043015,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.9427531957626343,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.046257223933935165,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.934558629989624,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.04504263773560524,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.9344301223754883,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.04613269865512848,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.9523203372955322,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.04359893128275871,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.9534872770309448,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.044758617877960205,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.9394410848617554,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.04496034234762192,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.9474343061447144,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.0438607819378376,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.9398064613342285,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.0454886294901371,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.936154842376709,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.04377540200948715,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.9346157312393188,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.043989669531583786,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.929081916809082,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.044563986361026764,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.9414352178573608,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.043291036039590836,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.9329895973205566,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.045155249536037445,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.9318394660949707,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.04445208981633186,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.941894769668579,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.04445616528391838,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.9463168382644653,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.04478035867214203,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.9354333877563477,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.045354459434747696,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.930020809173584,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.04453159123659134,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.9286775588989258,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.044591024518013,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.9429574012756348,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.04425579309463501,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.947604775428772,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.044748082756996155,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.9470477104187012,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.04593580961227417,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.937525987625122,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.043080125004053116,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.946656346321106,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.04556628689169884,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.9434765577316284,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.04450301080942154,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.9515914916992188,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.042459938675165176,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.9470634460449219,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.046506237238645554,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.9352115392684937,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.04481459781527519,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.9462571144104004,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.043813664466142654,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.9520037174224854,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.04445577412843704,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.9387362003326416,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.04351884126663208,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.9258419275283813,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.043723348528146744,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.9318315982818604,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.042861346155405045,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.9379544258117676,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.044699329882860184,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.951422929763794,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.04349956661462784,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.9352158308029175,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.0433838777244091,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.9462525844573975,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.04403919726610184,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.9481416940689087,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.044272877275943756,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.9500665664672852,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.044802214950323105,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.934298038482666,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.04337660223245621,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.954413652420044,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.043723538517951965,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.9608337879180908,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.04384087026119232,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.957395076751709,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.04272010177373886,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.9467015266418457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.04412781819701195,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.9331390857696533,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03537739813327789,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.452278971672058,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.5580063462257385,
+ "eval_runtime": 41.0077,
+ "eval_samples_per_second": 59.55,
+ "eval_steps_per_second": 0.488,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.04488050192594528,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.9278442859649658,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.04385434463620186,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.9266334772109985,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.04343170300126076,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.9108353853225708,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.04333009198307991,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.9282209873199463,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.043575625866651535,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.912508249282837,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.04466782137751579,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.919581413269043,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.04611176252365112,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.9342784881591797,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.04373355954885483,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.9118773937225342,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.047107476741075516,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.9101970195770264,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.04320043325424194,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.932800531387329,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.04540976136922836,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.9250563383102417,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.04323503002524376,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.9331316947937012,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.04482870548963547,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.9348450899124146,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.044921185821294785,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.9033823013305664,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.0437164381146431,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.9165492057800293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.04656543210148811,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.9247410297393799,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.04488205537199974,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.92763090133667,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.04543324187397957,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.9337310791015625,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.04601719602942467,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.9362705945968628,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.04425300285220146,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.9175018072128296,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.046571098268032074,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.9094732999801636,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.04628605395555496,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.9328744411468506,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.04729470983147621,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.9140973091125488,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.04496074467897415,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.928534984588623,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.9149569272994995,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.044917237013578415,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.9233367443084717,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.04609345644712448,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.9380614757537842,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.045224424451589584,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.923943281173706,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.04588423669338226,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.9246735572814941,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.046085700392723083,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.9078786373138428,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.045062921941280365,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.9289073944091797,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.045110709965229034,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.9322113990783691,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.0472494512796402,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.938441276550293,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.04466252401471138,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.9182933568954468,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.04513029381632805,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.9107897281646729,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.045220620930194855,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.940725564956665,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.045562177896499634,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.9358959197998047,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.04428212717175484,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.9271135330200195,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.04473140835762024,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.931797742843628,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.043908942490816116,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.9203201532363892,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.043839748948812485,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.9134262800216675,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.04567759111523628,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.9289779663085938,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.04431043565273285,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.941714882850647,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.04408961907029152,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.9301257133483887,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.04624704271554947,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.9381217956542969,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.04422634467482567,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.9162166118621826,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.04419756308197975,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.92188560962677,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.04618249088525772,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.9345735311508179,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.04490220174193382,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.9351990222930908,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.046499986201524734,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.9223530292510986,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.04331587627530098,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.9249944686889648,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.04636161029338837,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.9414262771606445,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.0445382185280323,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.9354854822158813,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.04564649984240532,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.9308267831802368,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.04421863704919815,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.9366023540496826,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.04698484018445015,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.9335650205612183,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.04388933628797531,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.9299960136413574,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.046337876468896866,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.9503027200698853,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.04348573088645935,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.9341070652008057,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.045959342271089554,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.9151384830474854,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.04479081928730011,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.9382342100143433,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.04572956636548042,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.9310452938079834,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.04677167162299156,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.9518420696258545,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.04495622590184212,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.9428808689117432,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.04611065983772278,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.9220831394195557,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.04454458877444267,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.9490790367126465,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.046582695096731186,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.9425218105316162,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.04383963346481323,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.9434903860092163,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.044776711612939835,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.930960774421692,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.043473951518535614,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.934765100479126,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.04574871063232422,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.9359397888183594,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03675457090139389,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.4525755643844604,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.5587614178657532,
+ "eval_runtime": 54.5655,
+ "eval_samples_per_second": 44.754,
+ "eval_steps_per_second": 0.367,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.0462750606238842,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.9179565906524658,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.04558630660176277,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8978389501571655,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.04710238054394722,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.9018924236297607,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.04631956294178963,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.9072178602218628,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.04520673677325249,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.9221091270446777,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.04918315261602402,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.9093704223632812,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.046507298946380615,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.9335057735443115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.0474676676094532,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.9136755466461182,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.045877616852521896,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.9096475839614868,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.04849010333418846,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.9148929119110107,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.04782263934612274,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.914750099182129,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.045352671295404434,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.9120718240737915,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.04869354888796806,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.91766357421875,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.04467938840389252,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.899644374847412,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.047056928277015686,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.9113627672195435,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.045194532722234726,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.9268800020217896,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.04681428149342537,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.9223413467407227,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.046070028096437454,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.9202659130096436,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.04682234674692154,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.9200537204742432,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.04590713232755661,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.905088186264038,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.0492512583732605,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.923885464668274,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.046058595180511475,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.9140686988830566,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05024345591664314,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.9238293170928955,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.04682156816124916,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.91746187210083,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.04715842381119728,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.9203336238861084,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.04766647145152092,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.9099605083465576,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.0484190359711647,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.9298415184020996,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.04713325947523117,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.9137039184570312,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.04657702147960663,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.909759283065796,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.047971706837415695,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.9150055646896362,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.04693721979856491,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.9161012172698975,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.045918580144643784,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.9190044403076172,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.044876597821712494,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.9148699045181274,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.04615379497408867,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.9099400043487549,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.044768523424863815,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.9174376726150513,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.04711288958787918,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.9337024688720703,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.04604453220963478,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.918162226676941,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.046346515417099,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.9226276874542236,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.046291086822748184,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.9002764225006104,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.04728492349386215,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.9176394939422607,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.0452590174973011,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.9092847108840942,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.04720590263605118,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.9305121898651123,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.04423863813281059,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.917733907699585,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.047705911099910736,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.9264805316925049,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.04461591690778732,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.9155296087265015,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.0448867566883564,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.9237422943115234,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.04488728940486908,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.9229776859283447,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.04524501785635948,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.9315156936645508,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.04549748823046684,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.9230515956878662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.04490918666124344,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8992328643798828,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.04507176950573921,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.919519305229187,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.04591760039329529,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.915913462638855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.04368108510971069,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.931168556213379,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.04612324759364128,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.9031120538711548,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.04388239607214928,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.912826657295227,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.04572778567671776,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.924182415008545,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.04501771181821823,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.9176487922668457,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.043582577258348465,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.9067806005477905,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.046558983623981476,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.9344135522842407,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.04396207630634308,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.9220595359802246,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.04515782743692398,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.9215635061264038,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.045465730130672455,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.9135242700576782,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.04482322558760643,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.9089176654815674,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.04502297565340996,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.9229989051818848,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.044661134481430054,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.9119620323181152,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.04521520808339119,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.937756896018982,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.04591496288776398,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.9198966026306152,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.04410246014595032,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.9341609477996826,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.04488343000411987,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.9275271892547607,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.04497985169291496,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.9064011573791504,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.043899375945329666,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.9203660488128662,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.0378071591258049,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.4432313442230225,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.5599055290222168,
+ "eval_runtime": 40.2366,
+ "eval_samples_per_second": 60.691,
+ "eval_steps_per_second": 0.497,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.04420118033885956,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.893591284751892,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.04334490746259689,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.9110057353973389,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.04583484306931496,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.903444528579712,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.04383937269449234,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.9030766487121582,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.043749865144491196,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.9130524396896362,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.04311221092939377,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.9107348918914795,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.045599307864904404,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.900320053100586,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.04430649057030678,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.9028031826019287,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.04488218575716019,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.9213577508926392,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.04538808390498161,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8968687057495117,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.04458931088447571,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.9092092514038086,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.046152856200933456,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.9046111106872559,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.043571822345256805,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.9015637636184692,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.04416032135486603,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.8788703680038452,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.04414350166916847,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.9068684577941895,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.04326542839407921,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.9123764038085938,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.04510084167122841,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.9027619361877441,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.0441674180328846,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8962973356246948,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.04522429034113884,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.9108083248138428,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.044228654354810715,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.895268440246582,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.044145651161670685,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.9096617698669434,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.04376067593693733,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8920894861221313,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.0455496646463871,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.9054405689239502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.0457804873585701,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.9108986854553223,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.046842969954013824,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.9257216453552246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.04604218900203705,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8883439302444458,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.045921169221401215,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.917250156402588,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.04587477445602417,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.9154161214828491,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.04593200236558914,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.9063808917999268,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.046741142868995667,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.903794527053833,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.0460849292576313,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.9034333229064941,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.04705662652850151,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.9169785976409912,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.046874064952135086,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.9086027145385742,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.04523243382573128,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8996422290802002,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.04941021278500557,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8924407958984375,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.046277012676000595,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.9230189323425293,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.04795045778155327,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.9096146821975708,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.046317312866449356,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.903681993484497,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.04782787710428238,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8976242542266846,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.04749831184744835,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8980826139450073,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.048178333789110184,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.9099817276000977,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.04797761142253876,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.918223261833191,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.04733513295650482,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8991427421569824,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.04613934084773064,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.9202003479003906,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.04839421436190605,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.910476565361023,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.04656097665429115,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.894330620765686,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.04690321907401085,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.922321081161499,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.0483844019472599,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.9088165760040283,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.04675137251615524,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.9161102771759033,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.048790913075208664,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.9126578569412231,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.04615939408540726,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.9056590795516968,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.04707014560699463,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.9129831790924072,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.04887249693274498,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.9198627471923828,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.04701855778694153,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.904289960861206,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.04752900078892708,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.9119199514389038,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.04637937620282173,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.9015456438064575,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.04624813422560692,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.9151562452316284,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.04688073322176933,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.9010138511657715,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.04610495641827583,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.9150097370147705,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.04617947340011597,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.9171550273895264,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.047766949981451035,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.9131733179092407,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.04596418887376785,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.9148085117340088,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.04751482605934143,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.8954293727874756,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.04667142033576965,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.9257514476776123,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.04714122414588928,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.9146203994750977,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.046158310025930405,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.9000868797302246,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.0453617125749588,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.8987735509872437,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.045940201729536057,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.9061667919158936,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.04766112565994263,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.9178999662399292,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.04459957405924797,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.9119558334350586,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.0476016104221344,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.900212287902832,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03775295615196228,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.4189457893371582,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.5608142018318176,
+ "eval_runtime": 40.0941,
+ "eval_samples_per_second": 60.907,
+ "eval_steps_per_second": 0.499,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.04691528528928757,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.9091784954071045,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.044649846851825714,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.887937068939209,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.0458390973508358,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.9007302522659302,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.044493917375802994,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.896045446395874,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.04401393234729767,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.8799163103103638,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.04522944241762161,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.9080159664154053,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.04545010253787041,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.8961689472198486,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.044937968254089355,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.8832945823669434,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.04527098685503006,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.8932111263275146,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.045020874589681625,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.8807295560836792,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.044883109629154205,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8942033052444458,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.04531681910157204,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.897594690322876,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.04620317742228508,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.881105661392212,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.04480401799082756,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.907268762588501,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.046019479632377625,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.8711462020874023,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.04485408961772919,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8994673490524292,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.044721443206071854,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.9041085243225098,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.04607081413269043,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.8861747980117798,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.045138005167245865,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.9011361598968506,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.04558892175555229,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8930423259735107,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.04461068660020828,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.9006925821304321,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.04619097337126732,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.894855260848999,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.04536662623286247,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8980623483657837,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.04698953405022621,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.9184906482696533,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.04509678855538368,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.897698163986206,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.04784569889307022,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8914282321929932,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.046398840844631195,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8883490562438965,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.0459408275783062,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.8927901983261108,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.04603567346930504,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.8987791538238525,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.04574081301689148,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.9107396602630615,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.04680564999580383,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.896730899810791,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.04629705101251602,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.8787988424301147,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.046353038400411606,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8965022563934326,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.04517079144716263,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.8964993953704834,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.04716475307941437,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.893757939338684,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.045174792408943176,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.892754316329956,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.04810452088713646,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8958793878555298,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.046722661703825,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.89261794090271,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.046140771359205246,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.893494725227356,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0471862368285656,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.896652340888977,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.045774709433317184,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.9030897617340088,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.04702781140804291,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.9008216857910156,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.04491126537322998,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.8858935832977295,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.046226441860198975,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8982845544815063,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.046491123735904694,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.9116873741149902,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.04627670720219612,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8874033689498901,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.04598962143063545,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.8797005414962769,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.04507545381784439,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8928991556167603,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.04748183488845825,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.884603500366211,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.045718979090452194,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.9003963470458984,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.04665536805987358,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.8925182819366455,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.046419307589530945,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.9061237573623657,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.04635924845933914,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.906002402305603,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.04521135613322258,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8919563293457031,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.045106884092092514,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.904160737991333,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.04707646369934082,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.8977832794189453,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.04630834981799126,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.894344687461853,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.047408487647771835,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.9038341045379639,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.04631415754556656,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.894762635231018,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.04664890095591545,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.9022518396377563,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.04597138240933418,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.907623052597046,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.04781361296772957,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.91298508644104,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.046326275914907455,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8928176164627075,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.04668324813246727,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.9014129638671875,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.046763088554143906,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.896491527557373,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.9125089645385742,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.04805731400847435,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.9019800424575806,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.04599045217037201,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8966295719146729,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.047478046268224716,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.9278576374053955,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.04642656445503235,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.9214816093444824,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.04634053260087967,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.8993182182312012,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03797267749905586,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.4253604412078857,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.5617476105690002,
+ "eval_runtime": 45.755,
+ "eval_samples_per_second": 53.371,
+ "eval_steps_per_second": 0.437,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.04599457234144211,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.8775392770767212,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.04625241830945015,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.8828479051589966,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.04525088518857956,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8901206254959106,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.04521792009472847,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.886819839477539,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.04478102922439575,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.8718209266662598,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.04654891788959503,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.8746660947799683,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.045480672270059586,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.8890061378479004,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.04630589112639427,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.8757891654968262,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.04659707844257355,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.8867700099945068,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.04641665518283844,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.866898775100708,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.04771355912089348,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.8754963874816895,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.04529627785086632,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.8854069709777832,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.04694652929902077,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.8742434978485107,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.04678728058934212,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.871158242225647,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.04631989821791649,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.8754173517227173,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.04773801937699318,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.891624927520752,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.04650811851024628,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.9068515300750732,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.04727979004383087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.8853774070739746,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.04714864864945412,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8933064937591553,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.8800125122070312,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.04849104955792427,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.8784363269805908,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.04615073278546333,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.8884400129318237,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.049269143491983414,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.8754403591156006,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.047510817646980286,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8950352668762207,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.04819583520293236,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.8889074325561523,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.046504657715559006,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.8806939125061035,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.04833124950528145,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.8870890140533447,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.045960672199726105,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.892927646636963,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.04889349266886711,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.9047961235046387,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.04624068737030029,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.8811109066009521,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.045885734260082245,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.8678951263427734,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.047633565962314606,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8910961151123047,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.04605350270867348,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.8854566812515259,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.047033410519361496,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.8889634609222412,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.04733380302786827,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.8894245624542236,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.04729244485497475,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8977644443511963,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.048333797603845596,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.884790301322937,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.047064345329999924,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.8918182849884033,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.04642755165696144,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.879097580909729,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.04668281227350235,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.8825325965881348,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.04552120715379715,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.8836299180984497,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.04680962115526199,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.88942289352417,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.04515194892883301,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.8945739269256592,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.047427091747522354,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.8871266841888428,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.04722534120082855,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.888176679611206,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.047272250056266785,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.8819680213928223,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.04718516021966934,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8838449716567993,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.04651009663939476,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.8843472003936768,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.04740661755204201,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.8730781078338623,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.04755423963069916,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8883650302886963,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.04771524667739868,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.889858365058899,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.04731367900967598,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.8849236965179443,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.047406550496816635,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.9015733003616333,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.04808863624930382,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.888007640838623,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.04662946239113808,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.8868497610092163,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.048229385167360306,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.8910794258117676,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.04799312353134155,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.89329195022583,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.04724393039941788,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8961341381072998,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.047718726098537445,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.8932898044586182,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.047182634472846985,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.9052118062973022,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.048551157116889954,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.9023537635803223,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.046883247792720795,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8965660333633423,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.04889964684844017,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8938546180725098,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.047213371843099594,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.8865680694580078,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.04776838421821594,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.8883678913116455,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.047268882393836975,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.8857024908065796,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.04802943393588066,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.891611099243164,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.04715752974152565,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.892876148223877,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.04750922694802284,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.893934726715088,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.04800679534673691,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8960907459259033,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.047234755009412766,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.8783557415008545,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.039721645414829254,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.4016635417938232,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.56258225440979,
+ "eval_runtime": 40.2416,
+ "eval_samples_per_second": 60.684,
+ "eval_steps_per_second": 0.497,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.04587586596608162,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.8849360942840576,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.045933645218610764,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.8720365762710571,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.04638395458459854,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.8566157817840576,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.045058928430080414,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.8719701766967773,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.04727335646748543,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.862802505493164,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.04480801895260811,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.8806850910186768,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.044394250959157944,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.869253396987915,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.04730968177318573,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.8577207326889038,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.04695093631744385,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.8769750595092773,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.046326130628585815,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.8785123825073242,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.04555234685540199,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.8725554943084717,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.04600582271814346,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.866944670677185,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.047153543680906296,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.8842374086380005,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.04612027481198311,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.8856291770935059,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.046780217438936234,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.8687922954559326,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.04749324172735214,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.8813189268112183,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.04665037617087364,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.8800989389419556,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.04646308720111847,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.8763478994369507,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.04771328344941139,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.8815187215805054,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.04543618485331535,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.8635611534118652,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.04651203751564026,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.8835220336914062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.04736996814608574,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.8735085725784302,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.04747792333364487,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.8725488185882568,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.04807161167263985,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.8877787590026855,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.04677852243185043,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.8738372325897217,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.04674002155661583,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.8771154880523682,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.04732203856110573,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.8681632280349731,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.04681850224733353,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.8689024448394775,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.0475701242685318,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.854485034942627,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.04836683347821236,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.8911771774291992,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.048116907477378845,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.8842213153839111,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.048552945256233215,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.8793752193450928,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.04715408384799957,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.882337212562561,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.04756082221865654,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.8776161670684814,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.048822641372680664,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.8759829998016357,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.04774912819266319,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.876424789428711,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.04727640748023987,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.8738853931427002,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.04769284278154373,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.8824584484100342,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.046457018703222275,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.8755215406417847,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.047964878380298615,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.8781219720840454,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.048171646893024445,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.8883323669433594,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.047379788011312485,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.8814680576324463,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.04854615405201912,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.8766605854034424,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.04816821590065956,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.889110803604126,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.04919019341468811,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.877069115638733,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.04694439098238945,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.8778671026229858,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.04880919307470322,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.8846547603607178,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.04854793846607208,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.8765785694122314,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.046748582273721695,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.886781930923462,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.04887055978178978,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8989977836608887,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.04723396897315979,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.8773930072784424,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.04740145057439804,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.8844830989837646,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.04773439094424248,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.885941743850708,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.046996936202049255,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.8765010833740234,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.047432053834199905,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.88028085231781,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.04719124361872673,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.8810229301452637,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.04668697342276573,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.8809888362884521,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.047171056270599365,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.8816734552383423,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.04659772291779518,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.8802306652069092,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.04730924963951111,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.8817310333251953,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.04733939841389656,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.8873801231384277,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.046300336718559265,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.885282278060913,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.04842502623796463,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.8790912628173828,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.04681224003434181,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.8639018535614014,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.04780548810958862,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.8776453733444214,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.04874429106712341,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.8740344047546387,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.04724373295903206,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.8684015274047852,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.04648366570472717,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.8760385513305664,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.0487273670732975,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.878537893295288,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.047121427953243256,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.8744267225265503,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.04703124985098839,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.88151216506958,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.039533697068691254,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3954941034317017,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.5634603500366211,
+ "eval_runtime": 40.4405,
+ "eval_samples_per_second": 60.385,
+ "eval_steps_per_second": 0.495,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.04424447938799858,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.857087254524231,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.04616435989737511,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.8573684692382812,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.04607802629470825,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.8647383451461792,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.046404775232076645,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.8564095497131348,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.046073272824287415,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.870673656463623,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.04589724540710449,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.8656566143035889,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.04557689651846886,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.863551139831543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.04528677463531494,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.8726980686187744,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.04518650844693184,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.8608030080795288,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.045101597905159,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.8723397254943848,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.04577193036675453,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.8651150465011597,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.04554104804992676,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.868842363357544,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.04631081968545914,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.8642723560333252,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.04638633877038956,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.879462718963623,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.04831362143158913,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.8652305603027344,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.0457226000726223,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.8560177087783813,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.04682072252035141,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.8643035888671875,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.0461200475692749,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.8737964630126953,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.04666521027684212,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.8659546375274658,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.046206701546907425,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.867607831954956,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.0452481210231781,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.8645520210266113,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.04539201781153679,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.8712077140808105,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.0461915098130703,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.8585699796676636,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.04550711438059807,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.861148476600647,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.04656198248267174,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.8621909618377686,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.045940566807985306,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.8835539817810059,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.04591699317097664,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.8564835786819458,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.04533873498439789,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.8683639764785767,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.04501830413937569,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.8729286193847656,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.046648286283016205,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.8827842473983765,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.04606254771351814,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.8655245304107666,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.04632389172911644,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.855072021484375,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.046645358204841614,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.8784645795822144,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.04681893065571785,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.854441523551941,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.04625078663229942,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.8647122383117676,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.04613354429602623,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.8762892484664917,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.04709402844309807,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.8600044250488281,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.04574209824204445,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.870466947555542,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.04667045921087265,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.880115032196045,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.046597469598054886,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.861691951751709,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.046084433794021606,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.874401569366455,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.04673402011394501,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.8739302158355713,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.04635137319564819,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.8740499019622803,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.046038344502449036,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.8763980865478516,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.04640313237905502,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.8664462566375732,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.04735850170254707,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.858694314956665,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.045747581869363785,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.8658379316329956,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.047455597668886185,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.8692824840545654,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.04588734358549118,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.8633465766906738,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.04588395729660988,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.8773810863494873,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.045151300728321075,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.8701531887054443,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.046557553112506866,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.8634908199310303,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.04677796736359596,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.8754336833953857,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.045793842524290085,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.8494234085083008,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.04776719585061073,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.8638850450515747,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.04652281850576401,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.8739361763000488,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.04655012488365173,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.8665215969085693,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.04638802632689476,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.8756872415542603,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.04754665121436119,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.8617222309112549,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.04615491256117821,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.8502249717712402,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.047482844442129135,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.8753585815429688,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.04747573658823967,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.87173330783844,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.046401239931583405,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.8768082857131958,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.04762646555900574,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.9006664752960205,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.0466943122446537,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.874403476715088,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.046864643692970276,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.8817310333251953,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.047573674470186234,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.8714301586151123,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.046654365956783295,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.8701894283294678,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.04718669503927231,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.8631205558776855,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.04694142937660217,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.8714566230773926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.04527781158685684,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.8774428367614746,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.038824740797281265,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3961008787155151,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.564454197883606,
+ "eval_runtime": 41.0298,
+ "eval_samples_per_second": 59.518,
+ "eval_steps_per_second": 0.487,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.045273441821336746,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.8562266826629639,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.04486487805843353,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.847863793373108,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.04506559669971466,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.8449368476867676,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.04576808586716652,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.8547484874725342,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.04573819041252136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.8487834930419922,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.045875146985054016,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.8855187892913818,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.04527868703007698,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.8507651090621948,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.04526630416512489,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.854073405265808,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.04650398716330528,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.8605797290802002,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.04373805224895477,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.8525786399841309,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.04591311886906624,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.8643308877944946,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.04575144872069359,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.8453545570373535,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.04499814286828041,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.8434433937072754,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.04602697491645813,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.8541452884674072,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0453011728823185,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.8705689907073975,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.045442380011081696,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.8543713092803955,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.04572557657957077,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.8648017644882202,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.04642609506845474,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.8579998016357422,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.04620853066444397,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.8584175109863281,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.045815497636795044,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.8525311946868896,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.04605135694146156,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.8759641647338867,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.046593330800533295,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.8701608180999756,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.04522516578435898,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.860581874847412,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.045406781136989594,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.8480677604675293,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.04634137079119682,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.8395036458969116,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.04579410329461098,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.8447685241699219,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.046178966760635376,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.857448935508728,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.04611853137612343,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.8510942459106445,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.04615642875432968,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.8571457862854004,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.047718342393636703,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.8718993663787842,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.04689454659819603,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.8596794605255127,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.04662420228123665,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.8419709205627441,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.04593484848737717,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.8577172756195068,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.04478100687265396,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.866506576538086,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.8815147876739502,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0467715822160244,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.8446149826049805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.04502555727958679,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.8656551837921143,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.046003151684999466,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.8393070697784424,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.047252554446458817,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.8601068258285522,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.04726157337427139,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.8633754253387451,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.04711516946554184,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.8661010265350342,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.04675743728876114,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.8634257316589355,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.04670685529708862,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.8717167377471924,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.04617537558078766,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.8575352430343628,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.04698266461491585,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.871026873588562,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.04679175093770027,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.8709101676940918,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.046020276844501495,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.8659570217132568,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.044609472155570984,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.8701958656311035,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.04686872661113739,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.8471758365631104,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.04671822115778923,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.8661935329437256,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.04792126268148422,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.8482842445373535,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.04631195589900017,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.8454066514968872,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.045949000865221024,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.8641464710235596,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.04714781418442726,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.8783040046691895,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.04625905305147171,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.8647475242614746,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.04681667312979698,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.854670763015747,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.04787219688296318,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.8676559925079346,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.04680484160780907,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.8692317008972168,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.04705028980970383,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.8703923225402832,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.04703309014439583,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.8560512065887451,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.047461897134780884,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.8604670763015747,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.04655826464295387,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.8620721101760864,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.04759373143315315,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.8544520139694214,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.048612091690301895,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.8653002977371216,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.04786037281155586,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.8577156066894531,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.047871846705675125,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.8632076978683472,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.04765869304537773,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.861595869064331,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.04793299362063408,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.8503496646881104,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.04850494861602783,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.870901346206665,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.04661532863974571,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.8583464622497559,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.04766553267836571,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.8652809858322144,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039074305444955826,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3917547464370728,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 0.5652567148208618,
+ "eval_runtime": 44.7883,
+ "eval_samples_per_second": 54.523,
+ "eval_steps_per_second": 0.447,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01393728222997,
+ "grad_norm": 0.04581065475940704,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 1.8576879501342773,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02787456445993,
+ "grad_norm": 0.04604090750217438,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 1.860574722290039,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041811846689896,
+ "grad_norm": 0.043389830738306046,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 1.8410645723342896,
+ "step": 2883
+ },
+ {
+ "epoch": 40.055749128919864,
+ "grad_norm": 0.04611266404390335,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 1.8361502885818481,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069686411149824,
+ "grad_norm": 0.04488025978207588,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 1.8595123291015625,
+ "step": 2885
+ },
+ {
+ "epoch": 40.08362369337979,
+ "grad_norm": 0.04536508396267891,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 1.8513383865356445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09756097560975,
+ "grad_norm": 0.04426852613687515,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 1.839638352394104,
+ "step": 2887
+ },
+ {
+ "epoch": 40.11149825783972,
+ "grad_norm": 0.04593079164624214,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 1.8578227758407593,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12543554006969,
+ "grad_norm": 0.044979073107242584,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 1.8479740619659424,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13937282229965,
+ "grad_norm": 0.043976493179798126,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 1.8572100400924683,
+ "step": 2890
+ },
+ {
+ "epoch": 40.153310104529616,
+ "grad_norm": 0.04430258646607399,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 1.874776840209961,
+ "step": 2891
+ },
+ {
+ "epoch": 40.167247386759584,
+ "grad_norm": 0.04562745988368988,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 1.850245475769043,
+ "step": 2892
+ },
+ {
+ "epoch": 40.181184668989545,
+ "grad_norm": 0.045609358698129654,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 1.839333415031433,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19512195121951,
+ "grad_norm": 0.045071765780448914,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 1.8484327793121338,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20905923344948,
+ "grad_norm": 0.04535095766186714,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 1.85935378074646,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22299651567944,
+ "grad_norm": 0.04447855427861214,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 1.824277400970459,
+ "step": 2896
+ },
+ {
+ "epoch": 40.23693379790941,
+ "grad_norm": 0.046172190457582474,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 1.8522751331329346,
+ "step": 2897
+ },
+ {
+ "epoch": 40.250871080139376,
+ "grad_norm": 0.045050252228975296,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 1.8372678756713867,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26480836236934,
+ "grad_norm": 0.0454912930727005,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 1.8425825834274292,
+ "step": 2899
+ },
+ {
+ "epoch": 40.278745644599304,
+ "grad_norm": 0.04504179581999779,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 1.8535411357879639,
+ "step": 2900
+ },
+ {
+ "epoch": 40.292682926829265,
+ "grad_norm": 0.04541248828172684,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 1.8414499759674072,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30662020905923,
+ "grad_norm": 0.0445893332362175,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 1.858358383178711,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3205574912892,
+ "grad_norm": 0.04436104744672775,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 1.8480253219604492,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33449477351916,
+ "grad_norm": 0.04517560824751854,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 1.8603742122650146,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34843205574913,
+ "grad_norm": 0.04632033035159111,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 1.8452311754226685,
+ "step": 2905
+ },
+ {
+ "epoch": 40.362369337979096,
+ "grad_norm": 0.04483526945114136,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 1.8499393463134766,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37630662020906,
+ "grad_norm": 0.04684896022081375,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 1.8404357433319092,
+ "step": 2907
+ },
+ {
+ "epoch": 40.390243902439025,
+ "grad_norm": 0.04500189796090126,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 1.8502023220062256,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40418118466899,
+ "grad_norm": 0.04662676155567169,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 1.8539161682128906,
+ "step": 2909
+ },
+ {
+ "epoch": 40.41811846689895,
+ "grad_norm": 0.04650403931736946,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 1.857225775718689,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43205574912892,
+ "grad_norm": 0.045979999005794525,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 1.853894829750061,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44599303135889,
+ "grad_norm": 0.04603036493062973,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 1.8374602794647217,
+ "step": 2912
+ },
+ {
+ "epoch": 40.45993031358885,
+ "grad_norm": 0.04565034806728363,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 1.8581715822219849,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47386759581882,
+ "grad_norm": 0.04700600728392601,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 1.863142967224121,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48780487804878,
+ "grad_norm": 0.046727560460567474,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 1.8413915634155273,
+ "step": 2915
+ },
+ {
+ "epoch": 40.501742160278745,
+ "grad_norm": 0.04613753780722618,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 1.8476002216339111,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51567944250871,
+ "grad_norm": 0.046748168766498566,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 1.8631737232208252,
+ "step": 2917
+ },
+ {
+ "epoch": 40.52961672473867,
+ "grad_norm": 0.04585091769695282,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 1.8531389236450195,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54355400696864,
+ "grad_norm": 0.04741860553622246,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 1.8504502773284912,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55749128919861,
+ "grad_norm": 0.04608471691608429,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 1.8614468574523926,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57142857142857,
+ "grad_norm": 0.045783061534166336,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 1.847042202949524,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58536585365854,
+ "grad_norm": 0.046531978994607925,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 1.857452630996704,
+ "step": 2922
+ },
+ {
+ "epoch": 40.599303135888505,
+ "grad_norm": 0.045963630080223083,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 1.8329434394836426,
+ "step": 2923
+ },
+ {
+ "epoch": 40.613240418118465,
+ "grad_norm": 0.047076087445020676,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 1.8511266708374023,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62717770034843,
+ "grad_norm": 0.04569230228662491,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 1.848214864730835,
+ "step": 2925
+ },
+ {
+ "epoch": 40.641114982578394,
+ "grad_norm": 0.04599694907665253,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 1.8513484001159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65505226480836,
+ "grad_norm": 0.04567144811153412,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 1.852655053138733,
+ "step": 2927
+ },
+ {
+ "epoch": 40.66898954703833,
+ "grad_norm": 0.04657620191574097,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 1.8545030355453491,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68292682926829,
+ "grad_norm": 0.04635767266154289,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 1.8457564115524292,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69686411149826,
+ "grad_norm": 0.04688902199268341,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 1.8710882663726807,
+ "step": 2930
+ },
+ {
+ "epoch": 40.710801393728225,
+ "grad_norm": 0.046263087540864944,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 1.8523743152618408,
+ "step": 2931
+ },
+ {
+ "epoch": 40.724738675958186,
+ "grad_norm": 0.04730024188756943,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 1.8681535720825195,
+ "step": 2932
+ },
+ {
+ "epoch": 40.73867595818815,
+ "grad_norm": 0.046389758586883545,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 1.8416533470153809,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75261324041812,
+ "grad_norm": 0.04619358852505684,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 1.8427306413650513,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76655052264808,
+ "grad_norm": 0.04706164449453354,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 1.8589917421340942,
+ "step": 2935
+ },
+ {
+ "epoch": 40.78048780487805,
+ "grad_norm": 0.04530758410692215,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 1.8476457595825195,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79442508710802,
+ "grad_norm": 0.0465627983212471,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 1.857927680015564,
+ "step": 2937
+ },
+ {
+ "epoch": 40.80836236933798,
+ "grad_norm": 0.04658791050314903,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 1.8649942874908447,
+ "step": 2938
+ },
+ {
+ "epoch": 40.822299651567945,
+ "grad_norm": 0.04632649943232536,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 1.8567063808441162,
+ "step": 2939
+ },
+ {
+ "epoch": 40.836236933797906,
+ "grad_norm": 0.046698298305273056,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 1.8344563245773315,
+ "step": 2940
+ },
+ {
+ "epoch": 40.850174216027874,
+ "grad_norm": 0.04579460620880127,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 1.8580782413482666,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86411149825784,
+ "grad_norm": 0.04626711830496788,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 1.8724932670593262,
+ "step": 2942
+ },
+ {
+ "epoch": 40.8780487804878,
+ "grad_norm": 0.04788089543581009,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 1.8562324047088623,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89198606271777,
+ "grad_norm": 0.04617566615343094,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 1.8600659370422363,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90592334494774,
+ "grad_norm": 0.04684928432106972,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 1.8548005819320679,
+ "step": 2945
+ },
+ {
+ "epoch": 40.9198606271777,
+ "grad_norm": 0.046167418360710144,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 1.8505282402038574,
+ "step": 2946
+ },
+ {
+ "epoch": 40.933797909407666,
+ "grad_norm": 0.04595042020082474,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 1.8442347049713135,
+ "step": 2947
+ },
+ {
+ "epoch": 40.94773519163763,
+ "grad_norm": 0.04705922678112984,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 1.8773528337478638,
+ "step": 2948
+ },
+ {
+ "epoch": 40.961672473867594,
+ "grad_norm": 0.04602619260549545,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 1.8423988819122314,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97560975609756,
+ "grad_norm": 0.046535808593034744,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 1.8612971305847168,
+ "step": 2950
+ },
+ {
+ "epoch": 40.98954703832753,
+ "grad_norm": 0.04720211401581764,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 1.8486204147338867,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03822942450642586,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 1.3866174221038818,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 0.5661606192588806,
+ "eval_runtime": 45.637,
+ "eval_samples_per_second": 53.509,
+ "eval_steps_per_second": 0.438,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01393728222997,
+ "grad_norm": 0.043283119797706604,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 1.8436756134033203,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02787456445993,
+ "grad_norm": 0.04369339346885681,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 1.8353145122528076,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041811846689896,
+ "grad_norm": 0.04360329359769821,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 1.8567733764648438,
+ "step": 2955
+ },
+ {
+ "epoch": 41.055749128919864,
+ "grad_norm": 0.043255530297756195,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 1.8404110670089722,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069686411149824,
+ "grad_norm": 0.04273942485451698,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 1.8405885696411133,
+ "step": 2957
+ },
+ {
+ "epoch": 41.08362369337979,
+ "grad_norm": 0.042693208903074265,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 1.8433363437652588,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09756097560975,
+ "grad_norm": 0.043486230075359344,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 1.861177921295166,
+ "step": 2959
+ },
+ {
+ "epoch": 41.11149825783972,
+ "grad_norm": 0.043162327259778976,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 1.8321999311447144,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12543554006969,
+ "grad_norm": 0.04251302778720856,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 1.8236079216003418,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13937282229965,
+ "grad_norm": 0.042925577610731125,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 1.8445379734039307,
+ "step": 2962
+ },
+ {
+ "epoch": 41.153310104529616,
+ "grad_norm": 0.043494079262018204,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 1.836974859237671,
+ "step": 2963
+ },
+ {
+ "epoch": 41.167247386759584,
+ "grad_norm": 0.04464002326130867,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 1.8345468044281006,
+ "step": 2964
+ },
+ {
+ "epoch": 41.181184668989545,
+ "grad_norm": 0.04361235350370407,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 1.827946424484253,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19512195121951,
+ "grad_norm": 0.04371578246355057,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 1.8348188400268555,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20905923344948,
+ "grad_norm": 0.04279749467968941,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 1.8443548679351807,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22299651567944,
+ "grad_norm": 0.043772123754024506,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 1.851645588874817,
+ "step": 2968
+ },
+ {
+ "epoch": 41.23693379790941,
+ "grad_norm": 0.044871680438518524,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 1.8620007038116455,
+ "step": 2969
+ },
+ {
+ "epoch": 41.250871080139376,
+ "grad_norm": 0.04412626475095749,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 1.8353114128112793,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26480836236934,
+ "grad_norm": 0.04473226144909859,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 1.8540171384811401,
+ "step": 2971
+ },
+ {
+ "epoch": 41.278745644599304,
+ "grad_norm": 0.04381468519568443,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 1.8486981391906738,
+ "step": 2972
+ },
+ {
+ "epoch": 41.292682926829265,
+ "grad_norm": 0.044379618018865585,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 1.8348345756530762,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30662020905923,
+ "grad_norm": 0.04532220959663391,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 1.8499282598495483,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3205574912892,
+ "grad_norm": 0.04509032890200615,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 1.8378188610076904,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33449477351916,
+ "grad_norm": 0.044669464230537415,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 1.8504490852355957,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34843205574913,
+ "grad_norm": 0.04408831521868706,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 1.8496140241622925,
+ "step": 2977
+ },
+ {
+ "epoch": 41.362369337979096,
+ "grad_norm": 0.04405682161450386,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 1.8265156745910645,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37630662020906,
+ "grad_norm": 0.0449211560189724,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 1.8349684476852417,
+ "step": 2979
+ },
+ {
+ "epoch": 41.390243902439025,
+ "grad_norm": 0.04524354636669159,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 1.8338544368743896,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40418118466899,
+ "grad_norm": 0.04570724070072174,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 1.8393343687057495,
+ "step": 2981
+ },
+ {
+ "epoch": 41.41811846689895,
+ "grad_norm": 0.044838614761829376,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 1.839355230331421,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43205574912892,
+ "grad_norm": 0.04447508975863457,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 1.850361704826355,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44599303135889,
+ "grad_norm": 0.04565313830971718,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 1.8427982330322266,
+ "step": 2984
+ },
+ {
+ "epoch": 41.45993031358885,
+ "grad_norm": 0.045442406088113785,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 1.8470102548599243,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47386759581882,
+ "grad_norm": 0.04505537077784538,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 1.8490915298461914,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48780487804878,
+ "grad_norm": 0.04411616921424866,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 1.8453279733657837,
+ "step": 2987
+ },
+ {
+ "epoch": 41.501742160278745,
+ "grad_norm": 0.045155517756938934,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 1.8424794673919678,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51567944250871,
+ "grad_norm": 0.04467189684510231,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 1.8279569149017334,
+ "step": 2989
+ },
+ {
+ "epoch": 41.52961672473867,
+ "grad_norm": 0.04471253976225853,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 1.8532087802886963,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54355400696864,
+ "grad_norm": 0.04528309404850006,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 1.8601353168487549,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55749128919861,
+ "grad_norm": 0.044879160821437836,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 1.8488407135009766,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57142857142857,
+ "grad_norm": 0.04477518051862717,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 1.8469840288162231,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58536585365854,
+ "grad_norm": 0.045121919363737106,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 1.8432965278625488,
+ "step": 2994
+ },
+ {
+ "epoch": 41.599303135888505,
+ "grad_norm": 0.0455213338136673,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 1.8416352272033691,
+ "step": 2995
+ },
+ {
+ "epoch": 41.613240418118465,
+ "grad_norm": 0.045097120106220245,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 1.8244754076004028,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62717770034843,
+ "grad_norm": 0.045695506036281586,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 1.8472155332565308,
+ "step": 2997
+ },
+ {
+ "epoch": 41.641114982578394,
+ "grad_norm": 0.04512687399983406,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 1.8457170724868774,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65505226480836,
+ "grad_norm": 0.04511284828186035,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 1.8473683595657349,
+ "step": 2999
+ },
+ {
+ "epoch": 41.66898954703833,
+ "grad_norm": 0.04571816325187683,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 1.8575892448425293,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68292682926829,
+ "grad_norm": 0.04539170488715172,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 1.8518251180648804,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69686411149826,
+ "grad_norm": 0.045744556933641434,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 1.8498783111572266,
+ "step": 3002
+ },
+ {
+ "epoch": 41.710801393728225,
+ "grad_norm": 0.04591347649693489,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 1.8562829494476318,
+ "step": 3003
+ },
+ {
+ "epoch": 41.724738675958186,
+ "grad_norm": 0.04476889595389366,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 1.844900131225586,
+ "step": 3004
+ },
+ {
+ "epoch": 41.73867595818815,
+ "grad_norm": 0.04576639086008072,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 1.851822853088379,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75261324041812,
+ "grad_norm": 0.0454561747610569,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 1.8366072177886963,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76655052264808,
+ "grad_norm": 0.04497859627008438,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 1.8351812362670898,
+ "step": 3007
+ },
+ {
+ "epoch": 41.78048780487805,
+ "grad_norm": 0.04735438898205757,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 1.8487967252731323,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79442508710802,
+ "grad_norm": 0.04591703414916992,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 1.8630578517913818,
+ "step": 3009
+ },
+ {
+ "epoch": 41.80836236933798,
+ "grad_norm": 0.045530978590250015,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 1.8396573066711426,
+ "step": 3010
+ },
+ {
+ "epoch": 41.822299651567945,
+ "grad_norm": 0.04629819467663765,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 1.85617196559906,
+ "step": 3011
+ },
+ {
+ "epoch": 41.836236933797906,
+ "grad_norm": 0.04543247073888779,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 1.8447198867797852,
+ "step": 3012
+ },
+ {
+ "epoch": 41.850174216027874,
+ "grad_norm": 0.04568076133728027,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 1.8438677787780762,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86411149825784,
+ "grad_norm": 0.04532733932137489,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 1.8392868041992188,
+ "step": 3014
+ },
+ {
+ "epoch": 41.8780487804878,
+ "grad_norm": 0.04588212072849274,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 1.8385963439941406,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89198606271777,
+ "grad_norm": 0.04528142139315605,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 1.8491675853729248,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90592334494774,
+ "grad_norm": 0.0453830361366272,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 1.8378946781158447,
+ "step": 3017
+ },
+ {
+ "epoch": 41.9198606271777,
+ "grad_norm": 0.04505406320095062,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 1.8556562662124634,
+ "step": 3018
+ },
+ {
+ "epoch": 41.933797909407666,
+ "grad_norm": 0.0457124337553978,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 1.8567328453063965,
+ "step": 3019
+ },
+ {
+ "epoch": 41.94773519163763,
+ "grad_norm": 0.0463649146258831,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 1.8532863855361938,
+ "step": 3020
+ },
+ {
+ "epoch": 41.961672473867594,
+ "grad_norm": 0.04467569664120674,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 1.8407166004180908,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97560975609756,
+ "grad_norm": 0.046316634863615036,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 1.838756799697876,
+ "step": 3022
+ },
+ {
+ "epoch": 41.98954703832753,
+ "grad_norm": 0.04641919583082199,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 1.843226671218872,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.03849948197603226,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 1.3771156072616577,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 0.5671271085739136,
+ "eval_runtime": 41.0853,
+ "eval_samples_per_second": 59.437,
+ "eval_steps_per_second": 0.487,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01393728222997,
+ "grad_norm": 0.043033167719841,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 1.859142541885376,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02787456445993,
+ "grad_norm": 0.04264276847243309,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 1.8393397331237793,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041811846689896,
+ "grad_norm": 0.0429818220436573,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 1.8451480865478516,
+ "step": 3027
+ },
+ {
+ "epoch": 42.055749128919864,
+ "grad_norm": 0.042798664420843124,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 1.821479320526123,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069686411149824,
+ "grad_norm": 0.042912937700748444,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 1.8287068605422974,
+ "step": 3029
+ },
+ {
+ "epoch": 42.08362369337979,
+ "grad_norm": 0.04305548593401909,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 1.834540843963623,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09756097560975,
+ "grad_norm": 0.042472828179597855,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 1.8312969207763672,
+ "step": 3031
+ },
+ {
+ "epoch": 42.11149825783972,
+ "grad_norm": 0.04286946728825569,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 1.838828682899475,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12543554006969,
+ "grad_norm": 0.042256396263837814,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 1.8407673835754395,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13937282229965,
+ "grad_norm": 0.04323839768767357,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 1.840158462524414,
+ "step": 3034
+ },
+ {
+ "epoch": 42.153310104529616,
+ "grad_norm": 0.04271084815263748,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 1.831402063369751,
+ "step": 3035
+ },
+ {
+ "epoch": 42.167247386759584,
+ "grad_norm": 0.04220888018608093,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 1.8363348245620728,
+ "step": 3036
+ },
+ {
+ "epoch": 42.181184668989545,
+ "grad_norm": 0.04255302995443344,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 1.8299152851104736,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19512195121951,
+ "grad_norm": 0.043367963284254074,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 1.8389928340911865,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20905923344948,
+ "grad_norm": 0.04356318712234497,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 1.8285727500915527,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22299651567944,
+ "grad_norm": 0.04307481646537781,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 1.836822748184204,
+ "step": 3040
+ },
+ {
+ "epoch": 42.23693379790941,
+ "grad_norm": 0.04301309585571289,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 1.8238312005996704,
+ "step": 3041
+ },
+ {
+ "epoch": 42.250871080139376,
+ "grad_norm": 0.04459020867943764,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 1.8265539407730103,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26480836236934,
+ "grad_norm": 0.04376321658492088,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 1.8323041200637817,
+ "step": 3043
+ },
+ {
+ "epoch": 42.278745644599304,
+ "grad_norm": 0.04337432235479355,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 1.8414857387542725,
+ "step": 3044
+ },
+ {
+ "epoch": 42.292682926829265,
+ "grad_norm": 0.0428093746304512,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 1.8486511707305908,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30662020905923,
+ "grad_norm": 0.04354057461023331,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 1.8414597511291504,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3205574912892,
+ "grad_norm": 0.04413049295544624,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 1.8411592245101929,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33449477351916,
+ "grad_norm": 0.043653059750795364,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 1.8368980884552002,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34843205574913,
+ "grad_norm": 0.044159434735774994,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 1.830837607383728,
+ "step": 3049
+ },
+ {
+ "epoch": 42.362369337979096,
+ "grad_norm": 0.04386448860168457,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 1.8371152877807617,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37630662020906,
+ "grad_norm": 0.04408277943730354,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 1.8459904193878174,
+ "step": 3051
+ },
+ {
+ "epoch": 42.390243902439025,
+ "grad_norm": 0.04339437186717987,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 1.8393545150756836,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40418118466899,
+ "grad_norm": 0.0438951700925827,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 1.8426868915557861,
+ "step": 3053
+ },
+ {
+ "epoch": 42.41811846689895,
+ "grad_norm": 0.043328989297151566,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 1.8371739387512207,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43205574912892,
+ "grad_norm": 0.04357768967747688,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 1.8241708278656006,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44599303135889,
+ "grad_norm": 0.04369310662150383,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 1.8402345180511475,
+ "step": 3056
+ },
+ {
+ "epoch": 42.45993031358885,
+ "grad_norm": 0.04351942986249924,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 1.8468050956726074,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47386759581882,
+ "grad_norm": 0.043610475957393646,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 1.8299753665924072,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48780487804878,
+ "grad_norm": 0.043054915964603424,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 1.8180890083312988,
+ "step": 3059
+ },
+ {
+ "epoch": 42.501742160278745,
+ "grad_norm": 0.04340444505214691,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 1.8330085277557373,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51567944250871,
+ "grad_norm": 0.04379405826330185,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 1.8336195945739746,
+ "step": 3061
+ },
+ {
+ "epoch": 42.52961672473867,
+ "grad_norm": 0.04441037401556969,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 1.8209092617034912,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54355400696864,
+ "grad_norm": 0.04327032342553139,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 1.8422727584838867,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55749128919861,
+ "grad_norm": 0.04349714145064354,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 1.837844967842102,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57142857142857,
+ "grad_norm": 0.04442324489355087,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 1.8405824899673462,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58536585365854,
+ "grad_norm": 0.04327923804521561,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 1.8318226337432861,
+ "step": 3066
+ },
+ {
+ "epoch": 42.599303135888505,
+ "grad_norm": 0.04397011175751686,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 1.8401890993118286,
+ "step": 3067
+ },
+ {
+ "epoch": 42.613240418118465,
+ "grad_norm": 0.04364022985100746,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 1.8424272537231445,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62717770034843,
+ "grad_norm": 0.0444519929587841,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 1.8474915027618408,
+ "step": 3069
+ },
+ {
+ "epoch": 42.641114982578394,
+ "grad_norm": 0.04536392167210579,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 1.8506238460540771,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65505226480836,
+ "grad_norm": 0.04419903829693794,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 1.829318881034851,
+ "step": 3071
+ },
+ {
+ "epoch": 42.66898954703833,
+ "grad_norm": 0.04335397854447365,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 1.8465934991836548,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68292682926829,
+ "grad_norm": 0.04473445937037468,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 1.8495752811431885,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69686411149826,
+ "grad_norm": 0.04403151199221611,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 1.8424298763275146,
+ "step": 3074
+ },
+ {
+ "epoch": 42.710801393728225,
+ "grad_norm": 0.04413284733891487,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 1.8399462699890137,
+ "step": 3075
+ },
+ {
+ "epoch": 42.724738675958186,
+ "grad_norm": 0.04536854103207588,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 1.8377766609191895,
+ "step": 3076
+ },
+ {
+ "epoch": 42.73867595818815,
+ "grad_norm": 0.044716671109199524,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 1.852107048034668,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75261324041812,
+ "grad_norm": 0.04425983875989914,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 1.8261748552322388,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76655052264808,
+ "grad_norm": 0.044471606612205505,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 1.8378055095672607,
+ "step": 3079
+ },
+ {
+ "epoch": 42.78048780487805,
+ "grad_norm": 0.04529954120516777,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 1.8272700309753418,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79442508710802,
+ "grad_norm": 0.0445031002163887,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 1.840920090675354,
+ "step": 3081
+ },
+ {
+ "epoch": 42.80836236933798,
+ "grad_norm": 0.04563571512699127,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 1.8449896574020386,
+ "step": 3082
+ },
+ {
+ "epoch": 42.822299651567945,
+ "grad_norm": 0.04528859630227089,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 1.8387556076049805,
+ "step": 3083
+ },
+ {
+ "epoch": 42.836236933797906,
+ "grad_norm": 0.04515692964196205,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 1.8260384798049927,
+ "step": 3084
+ },
+ {
+ "epoch": 42.850174216027874,
+ "grad_norm": 0.044755179435014725,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 1.8353691101074219,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86411149825784,
+ "grad_norm": 0.043564774096012115,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 1.8313343524932861,
+ "step": 3086
+ },
+ {
+ "epoch": 42.8780487804878,
+ "grad_norm": 0.04526788368821144,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 1.838407039642334,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89198606271777,
+ "grad_norm": 0.044409558176994324,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 1.8428899049758911,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90592334494774,
+ "grad_norm": 0.044329989701509476,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 1.8307888507843018,
+ "step": 3089
+ },
+ {
+ "epoch": 42.9198606271777,
+ "grad_norm": 0.04492166265845299,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 1.8467289209365845,
+ "step": 3090
+ },
+ {
+ "epoch": 42.933797909407666,
+ "grad_norm": 0.044873740524053574,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 1.849194884300232,
+ "step": 3091
+ },
+ {
+ "epoch": 42.94773519163763,
+ "grad_norm": 0.043883100152015686,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 1.8298711776733398,
+ "step": 3092
+ },
+ {
+ "epoch": 42.961672473867594,
+ "grad_norm": 0.04485436901450157,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 1.8333513736724854,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97560975609756,
+ "grad_norm": 0.0442371666431427,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 1.842345118522644,
+ "step": 3094
+ },
+ {
+ "epoch": 42.98954703832753,
+ "grad_norm": 0.0444684699177742,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 1.8418967723846436,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.037779301404953,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 1.3890820741653442,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 0.568034827709198,
+ "eval_runtime": 40.6911,
+ "eval_samples_per_second": 60.013,
+ "eval_steps_per_second": 0.492,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01393728222997,
+ "grad_norm": 0.041755788028240204,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 1.8242251873016357,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02787456445993,
+ "grad_norm": 0.04130164906382561,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 1.8275182247161865,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041811846689896,
+ "grad_norm": 0.04172128438949585,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 1.8375258445739746,
+ "step": 3099
+ },
+ {
+ "epoch": 43.055749128919864,
+ "grad_norm": 0.041675738990306854,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 1.8304169178009033,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069686411149824,
+ "grad_norm": 0.04046240448951721,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 1.819670557975769,
+ "step": 3101
+ },
+ {
+ "epoch": 43.08362369337979,
+ "grad_norm": 0.043102554976940155,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 1.8364059925079346,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09756097560975,
+ "grad_norm": 0.04226138815283775,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 1.8402340412139893,
+ "step": 3103
+ },
+ {
+ "epoch": 43.11149825783972,
+ "grad_norm": 0.04109962284564972,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 1.8291298151016235,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12543554006969,
+ "grad_norm": 0.041706398129463196,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 1.815910816192627,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13937282229965,
+ "grad_norm": 0.04183833301067352,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 1.8370800018310547,
+ "step": 3106
+ },
+ {
+ "epoch": 43.153310104529616,
+ "grad_norm": 0.042008765041828156,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 1.8254024982452393,
+ "step": 3107
+ },
+ {
+ "epoch": 43.167247386759584,
+ "grad_norm": 0.041388146579265594,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 1.8285032510757446,
+ "step": 3108
+ },
+ {
+ "epoch": 43.181184668989545,
+ "grad_norm": 0.04239530488848686,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 1.8442203998565674,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19512195121951,
+ "grad_norm": 0.04213891178369522,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 1.8368709087371826,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20905923344948,
+ "grad_norm": 0.0414174422621727,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 1.8290977478027344,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22299651567944,
+ "grad_norm": 0.04276357963681221,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 1.8521924018859863,
+ "step": 3112
+ },
+ {
+ "epoch": 43.23693379790941,
+ "grad_norm": 0.04216967895627022,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 1.8426485061645508,
+ "step": 3113
+ },
+ {
+ "epoch": 43.250871080139376,
+ "grad_norm": 0.041897550225257874,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 1.8292419910430908,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26480836236934,
+ "grad_norm": 0.042900241911411285,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 1.8384134769439697,
+ "step": 3115
+ },
+ {
+ "epoch": 43.278745644599304,
+ "grad_norm": 0.04171181097626686,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 1.8256819248199463,
+ "step": 3116
+ },
+ {
+ "epoch": 43.292682926829265,
+ "grad_norm": 0.042783740907907486,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 1.8219621181488037,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30662020905923,
+ "grad_norm": 0.0425715297460556,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 1.8290386199951172,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3205574912892,
+ "grad_norm": 0.041529279202222824,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 1.809150218963623,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33449477351916,
+ "grad_norm": 0.04237184301018715,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 1.8306704759597778,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34843205574913,
+ "grad_norm": 0.04296001046895981,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 1.8338277339935303,
+ "step": 3121
+ },
+ {
+ "epoch": 43.362369337979096,
+ "grad_norm": 0.043587733060121536,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 1.8377881050109863,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37630662020906,
+ "grad_norm": 0.04307651147246361,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 1.8373091220855713,
+ "step": 3123
+ },
+ {
+ "epoch": 43.390243902439025,
+ "grad_norm": 0.04286980628967285,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 1.8166065216064453,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40418118466899,
+ "grad_norm": 0.041704170405864716,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 1.822685956954956,
+ "step": 3125
+ },
+ {
+ "epoch": 43.41811846689895,
+ "grad_norm": 0.0430915392935276,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 1.8373184204101562,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43205574912892,
+ "grad_norm": 0.043403565883636475,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 1.83347487449646,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44599303135889,
+ "grad_norm": 0.04228387773036957,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 1.8338899612426758,
+ "step": 3128
+ },
+ {
+ "epoch": 43.45993031358885,
+ "grad_norm": 0.04362794756889343,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 1.8204160928726196,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47386759581882,
+ "grad_norm": 0.043391771614551544,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 1.8214062452316284,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48780487804878,
+ "grad_norm": 0.042706526815891266,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 1.8245747089385986,
+ "step": 3131
+ },
+ {
+ "epoch": 43.501742160278745,
+ "grad_norm": 0.04246161878108978,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 1.8324651718139648,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51567944250871,
+ "grad_norm": 0.04267415031790733,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 1.8303415775299072,
+ "step": 3133
+ },
+ {
+ "epoch": 43.52961672473867,
+ "grad_norm": 0.04291039705276489,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 1.8433070182800293,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54355400696864,
+ "grad_norm": 0.04282749071717262,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 1.8245047330856323,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55749128919861,
+ "grad_norm": 0.04216161370277405,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 1.8312617540359497,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57142857142857,
+ "grad_norm": 0.043468136340379715,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 1.8443996906280518,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58536585365854,
+ "grad_norm": 0.042424485087394714,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 1.8224906921386719,
+ "step": 3138
+ },
+ {
+ "epoch": 43.599303135888505,
+ "grad_norm": 0.04219109192490578,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 1.8375517129898071,
+ "step": 3139
+ },
+ {
+ "epoch": 43.613240418118465,
+ "grad_norm": 0.04363148286938667,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 1.8292778730392456,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62717770034843,
+ "grad_norm": 0.04349498078227043,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 1.8259801864624023,
+ "step": 3141
+ },
+ {
+ "epoch": 43.641114982578394,
+ "grad_norm": 0.04312172532081604,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 1.8397953510284424,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65505226480836,
+ "grad_norm": 0.041848644614219666,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 1.8278770446777344,
+ "step": 3143
+ },
+ {
+ "epoch": 43.66898954703833,
+ "grad_norm": 0.04276103526353836,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 1.841288685798645,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68292682926829,
+ "grad_norm": 0.04220271110534668,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 1.8277270793914795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69686411149826,
+ "grad_norm": 0.042644038796424866,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 1.838760495185852,
+ "step": 3146
+ },
+ {
+ "epoch": 43.710801393728225,
+ "grad_norm": 0.04334203898906708,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 1.824927568435669,
+ "step": 3147
+ },
+ {
+ "epoch": 43.724738675958186,
+ "grad_norm": 0.043542634695768356,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 1.8389196395874023,
+ "step": 3148
+ },
+ {
+ "epoch": 43.73867595818815,
+ "grad_norm": 0.04350470006465912,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 1.831343412399292,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75261324041812,
+ "grad_norm": 0.04323652759194374,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 1.8332481384277344,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76655052264808,
+ "grad_norm": 0.04270172491669655,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 1.8313982486724854,
+ "step": 3151
+ },
+ {
+ "epoch": 43.78048780487805,
+ "grad_norm": 0.04284636303782463,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 1.8393759727478027,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79442508710802,
+ "grad_norm": 0.04346014931797981,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 1.8414231538772583,
+ "step": 3153
+ },
+ {
+ "epoch": 43.80836236933798,
+ "grad_norm": 0.04241521656513214,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 1.83127760887146,
+ "step": 3154
+ },
+ {
+ "epoch": 43.822299651567945,
+ "grad_norm": 0.0434398278594017,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 1.8269448280334473,
+ "step": 3155
+ },
+ {
+ "epoch": 43.836236933797906,
+ "grad_norm": 0.04204972833395004,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 1.8330512046813965,
+ "step": 3156
+ },
+ {
+ "epoch": 43.850174216027874,
+ "grad_norm": 0.04379865154623985,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 1.8335158824920654,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86411149825784,
+ "grad_norm": 0.042788635939359665,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 1.8349730968475342,
+ "step": 3158
+ },
+ {
+ "epoch": 43.8780487804878,
+ "grad_norm": 0.04402446001768112,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 1.8353137969970703,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89198606271777,
+ "grad_norm": 0.043420035392045975,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 1.8265647888183594,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90592334494774,
+ "grad_norm": 0.04296764358878136,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 1.825549602508545,
+ "step": 3161
+ },
+ {
+ "epoch": 43.9198606271777,
+ "grad_norm": 0.042602673172950745,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 1.816074252128601,
+ "step": 3162
+ },
+ {
+ "epoch": 43.933797909407666,
+ "grad_norm": 0.042352914810180664,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 1.806208848953247,
+ "step": 3163
+ },
+ {
+ "epoch": 43.94773519163763,
+ "grad_norm": 0.04364747554063797,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 1.8404154777526855,
+ "step": 3164
+ },
+ {
+ "epoch": 43.961672473867594,
+ "grad_norm": 0.04315781593322754,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 1.8351466655731201,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97560975609756,
+ "grad_norm": 0.04377793148159981,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 1.82896089553833,
+ "step": 3166
+ },
+ {
+ "epoch": 43.98954703832753,
+ "grad_norm": 0.042686767876148224,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 1.831189751625061,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.035291463136672974,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 1.378066062927246,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 0.5686545968055725,
+ "eval_runtime": 40.4531,
+ "eval_samples_per_second": 60.366,
+ "eval_steps_per_second": 0.494,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01393728222997,
+ "grad_norm": 0.04012283682823181,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 1.8265893459320068,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02787456445993,
+ "grad_norm": 0.04090325906872749,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 1.8426353931427002,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041811846689896,
+ "grad_norm": 0.040709443390369415,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 1.818056344985962,
+ "step": 3171
+ },
+ {
+ "epoch": 44.055749128919864,
+ "grad_norm": 0.04033218324184418,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 1.831639051437378,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069686411149824,
+ "grad_norm": 0.03961346670985222,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 1.814626693725586,
+ "step": 3173
+ },
+ {
+ "epoch": 44.08362369337979,
+ "grad_norm": 0.039504192769527435,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 1.8343188762664795,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09756097560975,
+ "grad_norm": 0.040817201137542725,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 1.8264881372451782,
+ "step": 3175
+ },
+ {
+ "epoch": 44.11149825783972,
+ "grad_norm": 0.040353622287511826,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 1.8277415037155151,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12543554006969,
+ "grad_norm": 0.03955855593085289,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 1.838287115097046,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13937282229965,
+ "grad_norm": 0.04031500965356827,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 1.839491367340088,
+ "step": 3178
+ },
+ {
+ "epoch": 44.153310104529616,
+ "grad_norm": 0.04065636917948723,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 1.8324538469314575,
+ "step": 3179
+ },
+ {
+ "epoch": 44.167247386759584,
+ "grad_norm": 0.04097805544734001,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 1.8229095935821533,
+ "step": 3180
+ },
+ {
+ "epoch": 44.181184668989545,
+ "grad_norm": 0.040136951953172684,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 1.8288922309875488,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19512195121951,
+ "grad_norm": 0.04041105881333351,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 1.8189140558242798,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20905923344948,
+ "grad_norm": 0.04008181020617485,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 1.8303568363189697,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22299651567944,
+ "grad_norm": 0.040335267782211304,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 1.8067408800125122,
+ "step": 3184
+ },
+ {
+ "epoch": 44.23693379790941,
+ "grad_norm": 0.04041079804301262,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 1.8251125812530518,
+ "step": 3185
+ },
+ {
+ "epoch": 44.250871080139376,
+ "grad_norm": 0.04136280715465546,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 1.8412597179412842,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26480836236934,
+ "grad_norm": 0.041318975389003754,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 1.8279335498809814,
+ "step": 3187
+ },
+ {
+ "epoch": 44.278745644599304,
+ "grad_norm": 0.04022998735308647,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 1.8238388299942017,
+ "step": 3188
+ },
+ {
+ "epoch": 44.292682926829265,
+ "grad_norm": 0.04024851694703102,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 1.8237464427947998,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30662020905923,
+ "grad_norm": 0.0401102639734745,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 1.8157517910003662,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3205574912892,
+ "grad_norm": 0.04096611216664314,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 1.8276509046554565,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33449477351916,
+ "grad_norm": 0.040685027837753296,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 1.8301713466644287,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34843205574913,
+ "grad_norm": 0.03960665315389633,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 1.8226325511932373,
+ "step": 3193
+ },
+ {
+ "epoch": 44.362369337979096,
+ "grad_norm": 0.04150325432419777,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 1.8439123630523682,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37630662020906,
+ "grad_norm": 0.041081447154283524,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 1.8389525413513184,
+ "step": 3195
+ },
+ {
+ "epoch": 44.390243902439025,
+ "grad_norm": 0.04033765569329262,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 1.8072166442871094,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40418118466899,
+ "grad_norm": 0.04054395109415054,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 1.805227279663086,
+ "step": 3197
+ },
+ {
+ "epoch": 44.41811846689895,
+ "grad_norm": 0.041252195835113525,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 1.82516348361969,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43205574912892,
+ "grad_norm": 0.04182847961783409,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 1.8129563331604004,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44599303135889,
+ "grad_norm": 0.04063313826918602,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 1.8264102935791016,
+ "step": 3200
+ },
+ {
+ "epoch": 44.45993031358885,
+ "grad_norm": 0.041621435433626175,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 1.8325570821762085,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47386759581882,
+ "grad_norm": 0.04100432246923447,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 1.832534670829773,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48780487804878,
+ "grad_norm": 0.04114148020744324,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 1.8242387771606445,
+ "step": 3203
+ },
+ {
+ "epoch": 44.501742160278745,
+ "grad_norm": 0.04099183529615402,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 1.8444900512695312,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51567944250871,
+ "grad_norm": 0.042078860104084015,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 1.8267149925231934,
+ "step": 3205
+ },
+ {
+ "epoch": 44.52961672473867,
+ "grad_norm": 0.041067935526371,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 1.835890769958496,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54355400696864,
+ "grad_norm": 0.041415996849536896,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 1.8300652503967285,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55749128919861,
+ "grad_norm": 0.04093599691987038,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 1.8179421424865723,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57142857142857,
+ "grad_norm": 0.04115108773112297,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 1.8296093940734863,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58536585365854,
+ "grad_norm": 0.04121313989162445,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 1.8320389986038208,
+ "step": 3210
+ },
+ {
+ "epoch": 44.599303135888505,
+ "grad_norm": 0.04163472726941109,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 1.835364580154419,
+ "step": 3211
+ },
+ {
+ "epoch": 44.613240418118465,
+ "grad_norm": 0.04068630561232567,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 1.812204122543335,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62717770034843,
+ "grad_norm": 0.041977010667324066,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 1.8214073181152344,
+ "step": 3213
+ },
+ {
+ "epoch": 44.641114982578394,
+ "grad_norm": 0.04133937135338783,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 1.8485758304595947,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65505226480836,
+ "grad_norm": 0.04129327833652496,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 1.8360936641693115,
+ "step": 3215
+ },
+ {
+ "epoch": 44.66898954703833,
+ "grad_norm": 0.04142966866493225,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 1.8329055309295654,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68292682926829,
+ "grad_norm": 0.040923792868852615,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 1.8267674446105957,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69686411149826,
+ "grad_norm": 0.0429806150496006,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 1.8320714235305786,
+ "step": 3218
+ },
+ {
+ "epoch": 44.710801393728225,
+ "grad_norm": 0.04135902598500252,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 1.8205543756484985,
+ "step": 3219
+ },
+ {
+ "epoch": 44.724738675958186,
+ "grad_norm": 0.041571829468011856,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 1.8293137550354004,
+ "step": 3220
+ },
+ {
+ "epoch": 44.73867595818815,
+ "grad_norm": 0.04200465977191925,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 1.8262722492218018,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75261324041812,
+ "grad_norm": 0.04169396683573723,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 1.8219014406204224,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76655052264808,
+ "grad_norm": 0.04217948019504547,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 1.8328770399093628,
+ "step": 3223
+ },
+ {
+ "epoch": 44.78048780487805,
+ "grad_norm": 0.04185833781957626,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 1.8211348056793213,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79442508710802,
+ "grad_norm": 0.04128005728125572,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 1.836426019668579,
+ "step": 3225
+ },
+ {
+ "epoch": 44.80836236933798,
+ "grad_norm": 0.04298657923936844,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 1.8236331939697266,
+ "step": 3226
+ },
+ {
+ "epoch": 44.822299651567945,
+ "grad_norm": 0.04233536496758461,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 1.8302421569824219,
+ "step": 3227
+ },
+ {
+ "epoch": 44.836236933797906,
+ "grad_norm": 0.0404512919485569,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 1.8221288919448853,
+ "step": 3228
+ },
+ {
+ "epoch": 44.850174216027874,
+ "grad_norm": 0.04277321696281433,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 1.8438160419464111,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86411149825784,
+ "grad_norm": 0.04114941135048866,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 1.813044548034668,
+ "step": 3230
+ },
+ {
+ "epoch": 44.8780487804878,
+ "grad_norm": 0.04186549782752991,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 1.8115606307983398,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89198606271777,
+ "grad_norm": 0.04288652166724205,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 1.8294615745544434,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90592334494774,
+ "grad_norm": 0.04122888669371605,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 1.8323924541473389,
+ "step": 3233
+ },
+ {
+ "epoch": 44.9198606271777,
+ "grad_norm": 0.04217100515961647,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 1.8310256004333496,
+ "step": 3234
+ },
+ {
+ "epoch": 44.933797909407666,
+ "grad_norm": 0.04174754023551941,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 1.8133013248443604,
+ "step": 3235
+ },
+ {
+ "epoch": 44.94773519163763,
+ "grad_norm": 0.04145873337984085,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 1.821353554725647,
+ "step": 3236
+ },
+ {
+ "epoch": 44.961672473867594,
+ "grad_norm": 0.041830070316791534,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 1.8098801374435425,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97560975609756,
+ "grad_norm": 0.04206479340791702,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 1.8126614093780518,
+ "step": 3238
+ },
+ {
+ "epoch": 44.98954703832753,
+ "grad_norm": 0.041661541908979416,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 1.834889531135559,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.03448311612010002,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 1.3827283382415771,
+ "step": 3240
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.384945207392338e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-3240/training_args.bin b/runs/bi-ssl/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-360/chat_template.jinja b/runs/bi-ssl/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-360/config.json b/runs/bi-ssl/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-360/generation_config.json b/runs/bi-ssl/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-360/model.safetensors b/runs/bi-ssl/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..324e459cea46dc9b5758189147b8ff15add9e303
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:42b8f7be607e9fb7f987ba3141218bec540772882e176c4e1fbd9704e57d5f2a
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-360/optimizer.pt b/runs/bi-ssl/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a0c710693c64424937fec1df6946c7d2dbfbe96c
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:56882877261284b194ff207c8b49772787fc8ba67a19bb5ec0e39b0b8f4a9892
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-360/rng_state_0.pth b/runs/bi-ssl/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3a2bb760d0b0b50f4b7b6980626fda172a127f68
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9627a7b92eeed978894313d8642baf0ecdcd808f2102543d8b58136102ad5997
+size 14917
diff --git a/runs/bi-ssl/checkpoint-360/rng_state_1.pth b/runs/bi-ssl/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7b307a1ab4859d8d838e7d20293e5eb15985549a
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d79c621c2f337ae714092486c08d5a224dca6ddc4285fb0014e9b648d0c9cae
+size 14917
diff --git a/runs/bi-ssl/checkpoint-360/scheduler.pt b/runs/bi-ssl/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..be1c46bbc9ac67b626f5e0bb3dac16ba107193bc
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79ed78fca474f0ed71de3aa751471c35bef733680fc53c36641881688dd58ce5
+size 1465
diff --git a/runs/bi-ssl/checkpoint-360/tokenizer.json b/runs/bi-ssl/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-360/tokenizer_config.json b/runs/bi-ssl/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-360/trainer_state.json b/runs/bi-ssl/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..345d431b4ba6c01ac0cb215f1bdb32d8ca120779
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/trainer_state.json
@@ -0,0 +1,2586 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 5.0,
+ "eval_steps": 500,
+ "global_step": 360,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5388280082137088e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-360/training_args.bin b/runs/bi-ssl/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-3600/chat_template.jinja b/runs/bi-ssl/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-3600/config.json b/runs/bi-ssl/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-3600/generation_config.json b/runs/bi-ssl/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-3600/model.safetensors b/runs/bi-ssl/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4074472207a32a37a9e7eeac8d6a4d2c1859db59
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:85f3dc356da7cfa0d3a38dcf04a298b350c0d353b5e2b09ab47f320551424c34
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-3600/optimizer.pt b/runs/bi-ssl/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..97a38a1a6c42e909017c4e1f83027dce279f2133
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:14b3ae1736702fe5fe719c444faa2c1a8389d8bdfe9823c431b3755f40b4af3c
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-3600/rng_state_0.pth b/runs/bi-ssl/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..42e5fb760a4884c24f3899e0e2c34f9ab7d35d5e
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9abac844de24b211d8b88d44e1866f089edee417850520a358afe34f866a821
+size 14917
diff --git a/runs/bi-ssl/checkpoint-3600/rng_state_1.pth b/runs/bi-ssl/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d6f10c7be65a25152763463abf33eb700d784288
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68ba205d24a50bf8cdf4686014dfa7b5557eb04aefa63431dced1c3d75cbacab
+size 14917
diff --git a/runs/bi-ssl/checkpoint-3600/scheduler.pt b/runs/bi-ssl/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..982d7b397b075cae944d790620cb0dfad6289952
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fcae2666f52aa083cc9b774f768ba87d551f0234d3e7800a3f2040f0f5905852
+size 1465
diff --git a/runs/bi-ssl/checkpoint-3600/tokenizer.json b/runs/bi-ssl/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-3600/tokenizer_config.json b/runs/bi-ssl/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-3600/trainer_state.json b/runs/bi-ssl/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..39f4be326200287fe1eca4371f2fe659372a887b
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/trainer_state.json
@@ -0,0 +1,25626 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 50.0,
+ "eval_steps": 500,
+ "global_step": 3600,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.572133481502533,
+ "eval_runtime": 40.3481,
+ "eval_samples_per_second": 60.523,
+ "eval_steps_per_second": 0.496,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.027878014370799065,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.228283643722534,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.03282247483730316,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.226290464401245,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.038256801664829254,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.233614444732666,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.04131648316979408,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.209113121032715,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.04201458394527435,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.232337474822998,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.042616572231054306,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.2294487953186035,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.03974440321326256,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.229240655899048,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.037039607763290405,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.2194600105285645,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.032991524785757065,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.23386287689209,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.03489569202065468,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.2124905586242676,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.03368094936013222,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.2303781509399414,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.03076544776558876,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.215752124786377,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.02996864542365074,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.236874580383301,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.033595386892557144,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.232846260070801,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.03806466981768608,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.2306714057922363,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.043566904962062836,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.2366137504577637,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.04214710369706154,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.2261643409729004,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.04325779899954796,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.2264814376831055,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.04875020682811737,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.221107006072998,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.04442790895700455,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.230255603790283,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.03985761106014252,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.2061734199523926,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.044543392956256866,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.211625576019287,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.04303966090083122,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.2309529781341553,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04175044223666191,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.2472517490386963,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04612462595105171,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.232573986053467,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.049891479313373566,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.233987808227539,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.043713849037885666,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.233346939086914,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03149358555674553,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.2387499809265137,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03419159725308418,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.2327799797058105,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.032634783536195755,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.235426425933838,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.030087854713201523,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.213202476501465,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.029562395066022873,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.2302253246307373,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.030626332387328148,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.2238354682922363,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.02848450094461441,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.213179111480713,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.029659094288945198,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.214540958404541,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.029211314395070076,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.2212958335876465,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.030983038246631622,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.2179813385009766,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.03177299350500107,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.2306509017944336,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.034157052636146545,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.2179274559020996,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.035922467708587646,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.221036434173584,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.036713264882564545,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.204334020614624,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.03511557728052139,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.2268295288085938,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03215667977929115,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.2062125205993652,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0298555176705122,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.2206244468688965,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.029415184631943703,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.211991786956787,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.030117008835077286,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.2149386405944824,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.0305038895457983,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.212395668029785,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.02800939790904522,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.2186708450317383,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.030989915132522583,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.2226343154907227,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.036325618624687195,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.209932565689087,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03943781182169914,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.213961124420166,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.035025544464588165,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.2234578132629395,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.03085208125412464,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.2174713611602783,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.03435642272233963,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.2045915126800537,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.036032065749168396,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.217763662338257,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.030432041734457016,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.210409641265869,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03019530698657036,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.2115719318389893,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.032229576259851456,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.21146297454834,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.02975269965827465,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.2167320251464844,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.02863391675055027,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.213130474090576,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.02767687477171421,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.2136130332946777,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.028902888298034668,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.210763931274414,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.02961428090929985,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.2243947982788086,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.03056943789124489,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.229470729827881,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.030886448919773102,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.2163000106811523,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03113493323326111,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.20815372467041,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.0324944369494915,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.2104544639587402,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.02860921062529087,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.21769380569458,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.02710314653813839,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.210963726043701,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.032136861234903336,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.2220723628997803,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.0354427807033062,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.214245080947876,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.027147099375724792,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.6590700149536133,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.567036509513855,
+ "eval_runtime": 40.6949,
+ "eval_samples_per_second": 60.007,
+ "eval_steps_per_second": 0.491,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.02936669997870922,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.1955156326293945,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.03357977792620659,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.1855368614196777,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.03146576136350632,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.1904754638671875,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.03500717878341675,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.19191575050354,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0337672121822834,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.2015504837036133,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.03386618196964264,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.1942057609558105,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.036327652633190155,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.1985316276550293,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.03648976981639862,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.191333532333374,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.042234618216753006,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.192429780960083,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.0504704974591732,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.2007956504821777,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05658647045493126,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.2004432678222656,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05315880849957466,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.191896915435791,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.053887199610471725,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.207796096801758,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.050258614122867584,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.1903367042541504,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.04748879745602608,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.207946300506592,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.04744249954819679,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.2036070823669434,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.056141410022974014,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.2092695236206055,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.05623727664351463,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.2060749530792236,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.04637438431382179,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.2127439975738525,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.041645895689725876,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.2009685039520264,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.04094843566417694,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.1990785598754883,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.04534197598695755,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.1998777389526367,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.04133236035704613,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.205051898956299,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.03928687050938606,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.201122760772705,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.03369999676942825,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.194915294647217,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.029677070677280426,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.2124640941619873,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.03802378475666046,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.2078981399536133,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.039744455367326736,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.193692207336426,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.0337417833507061,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.2029242515563965,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.03140858933329582,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.2023420333862305,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.030287643894553185,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.199481248855591,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.02834201790392399,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.186244010925293,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.03041352517902851,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.1999831199645996,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.03280670940876007,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.2110657691955566,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.03452032059431076,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.1929030418395996,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.029380185529589653,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.2120466232299805,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.027675122022628784,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.1895499229431152,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.02995908260345459,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.1927595138549805,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.028837259858846664,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.183744192123413,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.028289811685681343,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.2040834426879883,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.029608648270368576,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.1767375469207764,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.027897577732801437,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.1779494285583496,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.025568993762135506,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.2002830505371094,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.027355052530765533,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.209103584289551,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.02796485461294651,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.1863162517547607,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.025879787281155586,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.1960949897766113,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.027211839333176613,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.190835952758789,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.028347065672278404,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.193305730819702,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.026671171188354492,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.1775059700012207,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.025372713804244995,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.194554090499878,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.025493314489722252,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.1930832862854004,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.024491455405950546,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.1857705116271973,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.025768069550395012,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.1918625831604004,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.026789458468556404,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.188420295715332,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.02538721077144146,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.201266288757324,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.02595723606646061,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.1924924850463867,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.027521325275301933,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.193844795227051,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.027620302513241768,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.1877388954162598,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.025421321392059326,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.205683469772339,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.03084103949368,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.1912834644317627,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03362385183572769,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.1990349292755127,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.030406130477786064,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.1923961639404297,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.029166676104068756,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.1889007091522217,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.02800784446299076,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.198997974395752,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.02696221135556698,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.171196222305298,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.02628985047340393,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.187380313873291,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.028772670775651932,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.1809744834899902,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.028804313391447067,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.185411214828491,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.028346970677375793,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.198659896850586,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.029812868684530258,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.198028564453125,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03175881505012512,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.1854028701782227,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022079749032855034,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.640832543373108,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.562970757484436,
+ "eval_runtime": 40.5824,
+ "eval_samples_per_second": 60.174,
+ "eval_steps_per_second": 0.493,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.029311250895261765,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.178844690322876,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.036028195172548294,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.177300453186035,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.03995943441987038,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.1700212955474854,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.04292599856853485,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.179394245147705,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.047338370233774185,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.1745047569274902,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.04663294553756714,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.1936745643615723,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.04978703707456589,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.1799471378326416,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.0538988821208477,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.185634136199951,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.05777715891599655,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.170840263366699,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.054806776344776154,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.172541618347168,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.05621064826846123,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.1775059700012207,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.05554625019431114,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.1788830757141113,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.047868113964796066,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.188650131225586,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.04136480763554573,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.181368350982666,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.04012042284011841,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.163450241088867,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.037573665380477905,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.1889960765838623,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.03530477359890938,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.1760292053222656,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.03665496036410332,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.1792144775390625,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.03784722462296486,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.174994468688965,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.039198119193315506,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.1627039909362793,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.03686728700995445,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.1885101795196533,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.0337885357439518,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.1809463500976562,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.03164904564619064,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.161669969558716,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.030027490109205246,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.1738970279693604,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.03169558197259903,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.170363426208496,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.030479824170470238,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.196478843688965,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.029188204556703568,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.177186965942383,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.026997657492756844,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.174405097961426,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.02647358924150467,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.1668283939361572,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.026423554867506027,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.1683123111724854,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.02782869152724743,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.1643500328063965,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.02636146731674671,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.170693874359131,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.025201115757226944,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.1442909240722656,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.02591332048177719,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.186173677444458,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.027873998507857323,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.1774024963378906,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.02716909721493721,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.147833824157715,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.026912182569503784,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.174394130706787,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.028451906517148018,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.172092914581299,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.027931753545999527,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.166344165802002,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.028325246647000313,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.175290107727051,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.028726331889629364,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.15867280960083,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.034458503127098083,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.1768898963928223,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.037337083369493484,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.166780710220337,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.03324076905846596,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.169645071029663,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.031323108822107315,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.1717660427093506,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.033844150602817535,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.185267448425293,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.03751937299966812,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.169827938079834,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.03559441491961479,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.1786580085754395,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.035331711173057556,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.184635639190674,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.036969080567359924,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.1808841228485107,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.030774317681789398,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.1702165603637695,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.031761765480041504,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.186452627182007,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.031981512904167175,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.173676013946533,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.03068104386329651,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.1638426780700684,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.030878407880663872,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.16506290435791,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.028848035261034966,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.1845364570617676,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.028343994170427322,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.166353225708008,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.027051560580730438,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.190127372741699,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.028051096946001053,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.1809377670288086,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.026944585144519806,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.173207998275757,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.026726946234703064,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.1739425659179688,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.026785004884004593,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.168048620223999,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.02696135640144348,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.1636319160461426,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.02938273176550865,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.1748199462890625,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.027666855603456497,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.152761459350586,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.026033472269773483,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.1801178455352783,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.02870231121778488,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.159700870513916,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.02871253341436386,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.1604347229003906,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03012748621404171,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.168031692504883,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.02878570184111595,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.17057466506958,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.02897273376584053,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.1627259254455566,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.022759897634387016,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.623809576034546,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.5601545572280884,
+ "eval_runtime": 45.5172,
+ "eval_samples_per_second": 53.65,
+ "eval_steps_per_second": 0.439,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.02820144221186638,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.1458284854888916,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.03158565238118172,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.1415975093841553,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.03368919715285301,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.151364803314209,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.03365233168005943,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.1426517963409424,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.03269219771027565,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.143040180206299,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.03349404036998749,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.146204948425293,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.03264734148979187,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.137938976287842,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.03315200284123421,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.151366710662842,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.03547290712594986,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.130725860595703,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.0372721292078495,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.1578783988952637,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.036319125443696976,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.1523547172546387,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.037662606686353683,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.1634647846221924,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.03839906305074692,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.159416675567627,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.0365079864859581,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.150595188140869,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.03409633785486221,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.158540725708008,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.037146300077438354,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.1386899948120117,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.04096303880214691,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.155691146850586,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.035903215408325195,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.147915840148926,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.03738337755203247,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.150641679763794,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.03720767796039581,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.156278610229492,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.03646392002701759,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.1559786796569824,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.03437095135450363,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.1729400157928467,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.03463897854089737,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.1616220474243164,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.035241853445768356,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.158320188522339,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.039139844477176666,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.1495742797851562,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.040167976170778275,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.152688503265381,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.04147893562912941,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.1562583446502686,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.039691269397735596,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.163703203201294,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.034347742795944214,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.1465020179748535,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.03683599829673767,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.167994499206543,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.035241760313510895,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.138197422027588,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.03327110782265663,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.151413917541504,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.029060224071145058,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.1708714962005615,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.03180284798145294,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.1504154205322266,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.03354096785187721,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.145585060119629,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.030884362757205963,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.1522369384765625,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.0340651273727417,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.1597299575805664,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.03327634930610657,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.143486499786377,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.03614233061671257,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.1475629806518555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.0329054556787014,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.164496421813965,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.03070705756545067,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.1601967811584473,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.03015698492527008,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.151179790496826,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.03369355946779251,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.1605405807495117,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.030403628945350647,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.147813320159912,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.028966501355171204,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.1449551582336426,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.030664585530757904,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.162405014038086,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.03269575163722038,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.174363136291504,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.03038521483540535,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.154689311981201,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.028584709390997887,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.1615686416625977,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.03095223754644394,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.1671509742736816,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.029983172193169594,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.141054630279541,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.03065362386405468,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.1516027450561523,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.030204234644770622,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.1599011421203613,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.02796322852373123,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.1562299728393555,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.030402859672904015,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.1533141136169434,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.0275686327368021,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.1443095207214355,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.028780817985534668,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.139185905456543,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.028938213363289833,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.13775634765625,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.02822074480354786,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.164487600326538,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.027626825496554375,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.1475117206573486,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.024745291098952293,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.1494593620300293,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.026811957359313965,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.148435592651367,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.02845325507223606,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.150566577911377,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.02915441431105137,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.144895315170288,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.03103291057050228,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.1526904106140137,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.02779923751950264,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.156363010406494,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.02932564914226532,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.1483612060546875,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.028648775070905685,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.1788814067840576,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.029570091515779495,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.1354620456695557,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.02858389914035797,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.1579971313476562,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.02891864813864231,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.15767502784729,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.022110413759946823,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6039785146713257,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.5577220916748047,
+ "eval_runtime": 40.2672,
+ "eval_samples_per_second": 60.645,
+ "eval_steps_per_second": 0.497,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.030126625671982765,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1299257278442383,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.03467207029461861,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.1469149589538574,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.03316187113523483,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.1240463256835938,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.03325485810637474,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.144810438156128,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.03386564925312996,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1302974224090576,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.037230223417282104,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.131808280944824,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.03706403449177742,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.1411962509155273,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.03967423364520073,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1325156688690186,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.04597458615899086,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.112929344177246,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.04940282553434372,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.1330323219299316,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.04585057124495506,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.130948066711426,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.04077558591961861,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1260154247283936,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.03684854507446289,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.136248826980591,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.03738370165228844,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.1242337226867676,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.03779975324869156,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.137350559234619,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.03654543682932854,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.1324315071105957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.04134615883231163,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.1301045417785645,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.03330796957015991,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.1343116760253906,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.03790653124451637,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.1335229873657227,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.038559768348932266,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.1194257736206055,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.04067622125148773,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.120767116546631,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.03551672771573067,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1222033500671387,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.03207562491297722,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.1446876525878906,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.030958225950598717,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1164441108703613,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.03134223818778992,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.136256694793701,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.030334999784827232,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.129547595977783,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.03013208881020546,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.142198085784912,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.029158776625990868,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.146376609802246,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.03156762570142746,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.133582592010498,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.030033759772777557,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.131289005279541,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.03166884928941727,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.1403603553771973,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.03297265246510506,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.1463894844055176,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.030161183327436447,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.1436147689819336,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.030585937201976776,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.1464996337890625,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.029544878751039505,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.144545793533325,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.02970723807811737,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.110344886779785,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.02973860688507557,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.1310675144195557,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.030134597793221474,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.1259913444519043,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.03008086420595646,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.137887716293335,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.028450584039092064,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.1470675468444824,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.030215470120310783,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.1353750228881836,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.03201458975672722,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.1467132568359375,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.03833689168095589,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.1451711654663086,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.040024545043706894,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.1385488510131836,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.03576064482331276,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.1378109455108643,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.03468020260334015,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.1414804458618164,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.0334000438451767,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.12445330619812,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.03473621979355812,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.138185501098633,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.03427397832274437,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.157771110534668,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.03267018869519234,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.1286110877990723,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.03247728571295738,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.1437926292419434,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.02852736972272396,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.1490402221679688,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.028464987874031067,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.1396467685699463,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.028832996264100075,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.1197445392608643,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.030994415283203125,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.135012149810791,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.03010065108537674,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.1394805908203125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.02699608914554119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.1455235481262207,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.031220553442835808,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.1500930786132812,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.03138647601008415,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.1263813972473145,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.029969163239002228,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.1377623081207275,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.0305843073874712,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.1545486450195312,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.03039535880088806,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.134456157684326,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.02859075926244259,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.1365537643432617,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.03022395446896553,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.1470930576324463,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.028401082381606102,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.1370153427124023,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.030427593737840652,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.1383755207061768,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.030758436769247055,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.1403026580810547,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.028212925419211388,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.1425018310546875,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.02940276823937893,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.124356508255005,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.032364338636398315,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.1423306465148926,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.032197341322898865,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.1275157928466797,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.023031119257211685,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.5972787141799927,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.5560725927352905,
+ "eval_runtime": 39.9862,
+ "eval_samples_per_second": 61.071,
+ "eval_steps_per_second": 0.5,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.03048264980316162,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.124110460281372,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.03731518238782883,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1054861545562744,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.043757107108831406,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.1153783798217773,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.042054761201143265,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.1271543502807617,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.03524979576468468,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.113095998764038,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.03630990535020828,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.117703914642334,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.035635676234960556,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.1152076721191406,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.039552316069602966,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.108351707458496,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.045152198523283005,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.1095986366271973,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.05079604312777519,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.124983310699463,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.04383732005953789,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1190881729125977,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.034970175474882126,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1146726608276367,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.037031520158052444,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.1231799125671387,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.03334801644086838,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.123648166656494,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.032163918018341064,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.1239328384399414,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.03146469593048096,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.1213624477386475,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.03532570227980614,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1326780319213867,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.03683637082576752,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.1252574920654297,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.03536446392536163,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.1260409355163574,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.03152111917734146,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.130143880844116,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.03079526126384735,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.1184396743774414,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.03451760113239288,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1115097999572754,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.03510987013578415,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.108804702758789,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.03456059843301773,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.120260238647461,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.03383585065603256,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.119797706604004,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.03226623311638832,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.12923526763916,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.031163707375526428,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1124067306518555,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.03207038715481758,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.127532958984375,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.031841814517974854,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.122905731201172,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.034085240215063095,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.1192643642425537,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.035502705723047256,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.1287527084350586,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.036776211112737656,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.123772144317627,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.03762583062052727,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.125819206237793,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.03643204644322395,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1200509071350098,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.030482778325676918,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.131129741668701,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.02928946167230606,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.1233999729156494,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.032112158834934235,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.119816780090332,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.030714813619852066,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.124990701675415,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.02889791503548622,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.1339640617370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.028455281630158424,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.112983226776123,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.030197059735655785,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.135453462600708,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.030464693903923035,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1139872074127197,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.03288886696100235,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.1196250915527344,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.03162744641304016,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.128377914428711,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.03174213692545891,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.1240644454956055,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.03187225013971329,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.114656925201416,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.029008720070123672,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.1146085262298584,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.030284343287348747,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.1130409240722656,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.032989826053380966,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.1239566802978516,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.032159265130758286,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1166234016418457,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.031700242310762405,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1162402629852295,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.02918768674135208,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1096010208129883,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.030555859208106995,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.1203043460845947,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.032930608838796616,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1222357749938965,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.03123319149017334,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.123290538787842,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.03115343488752842,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.1361289024353027,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.029606522992253304,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.1213455200195312,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.033492978662252426,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.129082679748535,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.03188592940568924,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.1218137741088867,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.029100358486175537,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.1243739128112793,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.027997726574540138,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.121748447418213,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.030240779742598534,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.1173062324523926,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.02895042672753334,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1127312183380127,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.029972074553370476,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.118372678756714,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.031760718673467636,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.124551296234131,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.03012625128030777,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.1289758682250977,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.03355105221271515,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.115959882736206,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.032602742314338684,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.123918056488037,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.030317479744553566,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.126361846923828,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.030684970319271088,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.108011245727539,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.03073139674961567,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.0930838584899902,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.023195071145892143,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.5843088626861572,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.5546088218688965,
+ "eval_runtime": 40.4024,
+ "eval_samples_per_second": 60.442,
+ "eval_steps_per_second": 0.495,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.03165150806307793,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.100260019302368,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.034198105335235596,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.098369598388672,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.033724382519721985,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.091243267059326,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.03324710950255394,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.1106743812561035,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.030031535774469376,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.110640525817871,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.03141056373715401,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.0917840003967285,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.032152898609638214,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.093217372894287,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.03183350712060928,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.089144468307495,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.03235054761171341,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.09658145904541,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.033393386751413345,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.099306344985962,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.03239743784070015,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.09995698928833,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.031804777681827545,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.100646734237671,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.03194087743759155,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.106759548187256,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.034525807946920395,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.0859665870666504,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.03827401623129845,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.106351613998413,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.0413188636302948,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1005969047546387,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.04272134229540825,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.100010395050049,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.04034295678138733,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.10429048538208,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.03642387315630913,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.106107711791992,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.04118402674794197,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.107605457305908,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.039400726556777954,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1244304180145264,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.04225100949406624,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.1195883750915527,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.0398821160197258,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.0982706546783447,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.03480704128742218,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1178135871887207,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.0318201445043087,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.11263108253479,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.034595172852277756,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.10750412940979,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.03675972297787666,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.1033873558044434,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.03696967661380768,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.112527847290039,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.035952117294073105,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.096278190612793,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.034536659717559814,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.1078882217407227,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.03565049543976784,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.086829662322998,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.03726707026362419,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.104154109954834,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.037297580391168594,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.1058316230773926,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.037695057690143585,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1169886589050293,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.036125075072050095,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.118293285369873,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.033648379147052765,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.112448215484619,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.03547830134630203,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.1053919792175293,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.03380512446165085,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.109316825866699,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.03398362547159195,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1114609241485596,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.03391111269593239,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1069936752319336,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.029835520312190056,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.126638412475586,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.033803921192884445,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.0967605113983154,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.03313731402158737,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.0999276638031006,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.032433003187179565,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.116220235824585,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.03311564773321152,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.1016604900360107,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.110689640045166,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.03213348984718323,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.091233491897583,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.030842946842312813,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.112421751022339,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.03055754117667675,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1153218746185303,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.033346034586429596,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.095914840698242,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.032259948551654816,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1201305389404297,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.031065599992871284,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.101508140563965,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.03219614177942276,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.109294891357422,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.032829008996486664,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.111605167388916,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.03198302909731865,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.112609624862671,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.03007258102297783,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.107445240020752,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.02761482074856758,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.119114637374878,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.030249282717704773,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1181602478027344,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.03091457672417164,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.122483491897583,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.02947048284113407,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.098400115966797,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.031062398105859756,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1007614135742188,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.027968913316726685,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.1097540855407715,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.031098322942852974,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.093491554260254,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.03401172533631325,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.108165740966797,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.03416755422949791,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.127042770385742,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.030752090737223625,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.093759059906006,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.03160055726766586,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.1087229251861572,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.03228370472788811,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.107428550720215,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.031017716974020004,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.104618549346924,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.028605708852410316,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.108071804046631,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.031028524041175842,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.1004881858825684,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.024963945150375366,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.591598391532898,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.5536844730377197,
+ "eval_runtime": 40.827,
+ "eval_samples_per_second": 59.813,
+ "eval_steps_per_second": 0.49,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.029998701065778732,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.094893455505371,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.03884464129805565,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.0900373458862305,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.04696251079440117,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.095912456512451,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.046479519456624985,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.0823614597320557,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.04544304683804512,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.087846279144287,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.0439302995800972,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.1028876304626465,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.042778223752975464,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.0743680000305176,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.039617639034986496,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.072974681854248,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.039877306669950485,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.0783238410949707,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.04028879106044769,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.074854850769043,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.036494579166173935,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.0870819091796875,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.038921672850847244,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.088987112045288,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.038946732878685,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.095224380493164,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.03723271191120148,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.0906014442443848,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.038388691842556,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.078566074371338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.035631243139505386,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.087270975112915,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.03348596766591072,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.091665029525757,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.032958172261714935,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.0981531143188477,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.03465725854039192,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.0804171562194824,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.036910440772771835,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.0914626121520996,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.035110242664813995,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.103222370147705,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.03294319286942482,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.0901880264282227,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.03412940353155136,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.0834507942199707,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.03121144324541092,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.085095167160034,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.03279788792133331,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.112947940826416,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.03423579782247543,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.090510368347168,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.035412054508924484,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.10103178024292,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.03461174666881561,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.093954086303711,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.03231767937541008,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.091212749481201,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.029903089627623558,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.0886478424072266,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.03547433018684387,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.0845983028411865,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.03710409626364708,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.0997867584228516,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.03713658079504967,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.0864498615264893,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.036357294768095016,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.0933141708374023,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.031135786324739456,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.0962119102478027,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.031175391748547554,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.095320701599121,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.033946119248867035,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.0873937606811523,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.03366197645664215,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.118051767349243,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.03306947648525238,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.0863301753997803,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.03425361588597298,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.0989551544189453,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.034478019922971725,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.096477508544922,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.031129347160458565,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.0905468463897705,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.03063593991100788,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.102363109588623,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.029852641746401787,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.1201772689819336,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.03101876750588417,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.093228578567505,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.03142019361257553,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.09610652923584,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.032580532133579254,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.0903353691101074,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.03142250329256058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.08929443359375,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.03202013671398163,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.0910749435424805,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.030771194025874138,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.104681968688965,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.029701566323637962,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.089733362197876,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.03269374743103981,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.101189136505127,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.031986258924007416,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1001265048980713,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.030605172738432884,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.100691556930542,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.030624086037278175,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.098450183868408,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.03204675018787384,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.092003107070923,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.03202512487769127,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.0982792377471924,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.03038494847714901,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.0858874320983887,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.031824156641960144,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1042652130126953,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.0345781147480011,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.102522850036621,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.03575745224952698,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.10031795501709,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.03227999806404114,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.096273899078369,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.032339394092559814,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.0834693908691406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.033302273601293564,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.0950446128845215,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.035541463643312454,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.0883841514587402,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.03337086737155914,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.104982852935791,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.032197244465351105,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.0826525688171387,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.03227265924215317,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.0997796058654785,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.030929654836654663,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.097418785095215,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.0296462532132864,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.1022911071777344,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.030453979969024658,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.092177391052246,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.025118552148342133,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.5670063495635986,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.5531026124954224,
+ "eval_runtime": 46.6049,
+ "eval_samples_per_second": 52.398,
+ "eval_steps_per_second": 0.429,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.03039361722767353,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.0671825408935547,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.03614763915538788,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.0846190452575684,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.03637932986021042,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.082340717315674,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.03882019966840744,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.071913003921509,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.03952186182141304,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.0537028312683105,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.03617962822318077,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.086007595062256,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.03501841053366661,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.0810184478759766,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.03658153489232063,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.079231023788452,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.0359489843249321,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.073648452758789,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.038121167570352554,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.058797836303711,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.0377340130507946,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.082765579223633,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.03722333908081055,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.068051815032959,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.03423991799354553,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.066283702850342,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.034968744963407516,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.0853309631347656,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.03288998082280159,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.090271472930908,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.03530428931117058,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.068376064300537,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.033923011273145676,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.0703368186950684,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.03361953794956207,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.066366672515869,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.032751407474279404,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.083064079284668,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.03201499581336975,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.0681796073913574,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.033108703792095184,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.081162929534912,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.033277783542871475,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.0820579528808594,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.032956697046756744,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.090395450592041,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.034563932567834854,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.071416139602661,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.035906076431274414,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.0818512439727783,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.03494856506586075,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.0788140296936035,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.03391089290380478,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.081425189971924,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.032367806881666183,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.0854380130767822,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.03569613769650459,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0598347187042236,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.03564410284161568,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.0743250846862793,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.0331779345870018,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.0923171043395996,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.03624579310417175,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.084463357925415,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.03669758141040802,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.0759050846099854,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.03345330432057381,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.080167770385742,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.03255350887775421,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1039578914642334,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.032881420105695724,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.0892820358276367,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.0314549021422863,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.0707483291625977,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.03263535350561142,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.075373649597168,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.033348388969898224,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.0875773429870605,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.032648563385009766,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.083578109741211,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.03289443626999855,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.0717833042144775,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.031257715076208115,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.0810630321502686,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.03403470665216446,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.090700149536133,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.03071770817041397,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.083806037902832,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.03211795911192894,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.0918776988983154,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.03072746843099594,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.0929837226867676,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.030212393030524254,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.0815558433532715,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.03149404376745224,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.0774450302124023,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.032228171825408936,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.08384370803833,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.034171320497989655,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.073309898376465,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.03381979092955589,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.090269088745117,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.03223443403840065,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.0892155170440674,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.034393344074487686,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.0809082984924316,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.03423793986439705,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.0797157287597656,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.03495671972632408,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.076561689376831,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.03237970173358917,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.091155529022217,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.03155878558754921,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.074387550354004,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.030314002186059952,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.079789400100708,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.030931375920772552,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.078082799911499,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.032088324427604675,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.0804715156555176,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.03074275515973568,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.0982635021209717,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.03183682635426521,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.0899271965026855,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.03331134468317032,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.0856800079345703,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.030275259166955948,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.0884666442871094,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.029234204441308975,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.092327117919922,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.029779057949781418,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.0733981132507324,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.032805200666189194,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.0653533935546875,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.03428212180733681,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.0843136310577393,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.03249853104352951,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.088881015777588,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.032642100006341934,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.0819053649902344,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.0359271876513958,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.0938053131103516,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.026367397978901863,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5581324100494385,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.5528114438056946,
+ "eval_runtime": 40.4201,
+ "eval_samples_per_second": 60.415,
+ "eval_steps_per_second": 0.495,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.0357549749314785,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.056398868560791,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.041193727403879166,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.0634114742279053,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.04031689465045929,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.0630435943603516,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.03966597095131874,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0507254600524902,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.03858630359172821,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.053978443145752,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.0415777750313282,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0581984519958496,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.043266113847494125,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.064523220062256,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.042461127042770386,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.0578742027282715,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.044606540352106094,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.070824146270752,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.04323304072022438,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.063314199447632,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.04060203209519386,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.052274227142334,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.04101860523223877,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.0532093048095703,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.03900112956762314,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.057681083679199,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.03504303842782974,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.051358699798584,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.03736149147152901,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.0710225105285645,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.035996995866298676,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0682804584503174,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.03630342707037926,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.0587880611419678,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.03928669914603233,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.067723512649536,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.03650817647576332,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.066861152648926,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.037604138255119324,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.076620578765869,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.03873377665877342,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.077878475189209,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.03647662699222565,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0744574069976807,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.039558202028274536,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.065969467163086,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.04051223024725914,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0718493461608887,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.039389777928590775,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.061945915222168,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.035644158720970154,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.0783681869506836,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.036173321306705475,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.050569772720337,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.03838668391108513,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0388574600219727,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.035860221832990646,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0602190494537354,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.033616803586483,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.058345317840576,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.033214546740055084,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.0758962631225586,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.035498276352882385,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.070683479309082,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.03640950843691826,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.078502655029297,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.03404010459780693,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.0711631774902344,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.03431986644864082,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.069699287414551,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.03396428003907204,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.0819272994995117,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.03431380167603493,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.076713800430298,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.035712435841560364,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.083329200744629,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.035067904740571976,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.081714630126953,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.036978088319301605,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0658905506134033,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.03435714542865753,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.074268341064453,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.03300824016332626,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.0696263313293457,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.032107822597026825,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.0793590545654297,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.03597059100866318,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.082918643951416,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.03575281426310539,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.082395315170288,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.033498819917440414,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.06959867477417,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.038002051413059235,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.0837454795837402,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.03890211880207062,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.080564498901367,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.03680449351668358,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.0648646354675293,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.03373680263757706,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.0765950679779053,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.03508701175451279,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.076239824295044,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.03473585098981857,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.061344623565674,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.03488938882946968,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.0845727920532227,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.03311470150947571,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.077556610107422,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.0343264639377594,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.0646815299987793,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.03387637808918953,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.0718603134155273,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.03271041810512543,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.0914549827575684,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.03308424726128578,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.068030834197998,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.034113671630620956,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.0706820487976074,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.031820960342884064,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.0783252716064453,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.03286626562476158,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.078575611114502,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.03249327465891838,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.0620274543762207,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.03403710573911667,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.078176498413086,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.03253234177827835,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.061072587966919,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.03240413963794708,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.0819473266601562,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.033615365624427795,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.0775091648101807,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.03098791278898716,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.0761373043060303,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.030283020809292793,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.078237295150757,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.035737909376621246,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.0634140968322754,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.03571299836039543,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.075082778930664,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.03352753818035126,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.0668797492980957,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.025552142411470413,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.5495703220367432,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.5527552366256714,
+ "eval_runtime": 39.7881,
+ "eval_samples_per_second": 61.375,
+ "eval_steps_per_second": 0.503,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.0544204711914062,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.03762396425008774,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0328376293182373,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.03972827270627022,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.053849220275879,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.034472644329071045,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0561599731445312,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.032772038131952286,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.0555694103240967,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.03593632951378822,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.057896614074707,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.032958757132291794,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0514602661132812,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.03481022268533707,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0534987449645996,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.037879470735788345,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.0410103797912598,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.03735556825995445,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.049401044845581,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.0379260778427124,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.0562150478363037,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.03791432082653046,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0503673553466797,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.039107680320739746,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.041872501373291,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.0341549776494503,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.0498812198638916,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.037745725363492966,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.063957691192627,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.042184166610240936,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.052457332611084,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.04039336368441582,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.047274112701416,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.0389687716960907,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.0671987533569336,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.03793314844369888,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.064054250717163,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0440733432769775,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.032409969717264175,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.052889108657837,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.035519666969776154,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.048827886581421,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.036316562443971634,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.053032159805298,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.03694499284029007,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.052961587905884,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.03726549819111824,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0549254417419434,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.03694158419966698,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.073002576828003,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.03778768330812454,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.059945583343506,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.0381951704621315,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.054572582244873,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.035755425691604614,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0628607273101807,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.03721442446112633,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.062225818634033,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.039333995431661606,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.056736469268799,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.03607192635536194,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.051098346710205,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.03572111204266548,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.0504422187805176,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.03867886960506439,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0501961708068848,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.03703072667121887,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0683350563049316,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.03369485214352608,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0547006130218506,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.03545774146914482,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.0679259300231934,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.036875467747449875,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.049642562866211,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.03512006253004074,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.044635772705078,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.0349118746817112,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.0624501705169678,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.035576168447732925,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0656661987304688,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.03262646123766899,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.0631651878356934,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.03351704776287079,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.057082176208496,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.03429942578077316,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.050387382507324,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.034774936735630035,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.072991132736206,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.03341386839747429,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.0562167167663574,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.033693648874759674,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0623135566711426,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.0335201621055603,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0610861778259277,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.03601972758769989,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.0445806980133057,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.03658629581332207,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.0613205432891846,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.0327325239777565,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.064326524734497,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.03246073052287102,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.05267071723938,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.03369583934545517,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.0691535472869873,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.03310070559382439,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.0451440811157227,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.03204282745718956,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.058899402618408,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.03431371971964836,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.066318988800049,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.035183053463697433,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.059046745300293,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.03307100012898445,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.064769744873047,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.034739747643470764,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0584583282470703,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.03517493978142738,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.0678234100341797,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.033152222633361816,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.0861635208129883,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.03403833135962486,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0535848140716553,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.034049421548843384,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.064760684967041,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.03427470102906227,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.059994697570801,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.03538241982460022,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.069161891937256,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.03284334018826485,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.0480284690856934,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.03505383059382439,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.0499446392059326,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.03422430530190468,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.0673985481262207,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.032495614141225815,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.082592487335205,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.03396998345851898,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.0542874336242676,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.03428228944540024,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0569186210632324,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.02733113057911396,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5378707647323608,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.5525405406951904,
+ "eval_runtime": 45.4705,
+ "eval_samples_per_second": 53.705,
+ "eval_steps_per_second": 0.44,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.0354706309735775,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.038454055786133,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.03913014009594917,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.037257671356201,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.04184315353631973,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.052886486053467,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.039148978888988495,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.033958673477173,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.04214974492788315,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.035158634185791,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.04031112417578697,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.029853343963623,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.03928114101290703,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.043722152709961,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.036491986364126205,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.0449295043945312,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.034157123416662216,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0414109230041504,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.03601003438234329,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.0465025901794434,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.03187195211648941,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.0417537689208984,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.03369712829589844,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.0459461212158203,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.03505810350179672,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.050718307495117,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.03715891018509865,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.044609785079956,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.03897279500961304,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0296804904937744,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.036990441381931305,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.0362257957458496,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.03701777756214142,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.032487154006958,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.03879848122596741,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.035788059234619,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.03741646185517311,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0531837940216064,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.03861105814576149,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0353126525878906,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.03397591412067413,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.0381088256835938,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.037900786846876144,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0381436347961426,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.0400293692946434,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.0430400371551514,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.03913840278983116,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.04740834236145,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.03921043872833252,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.056696891784668,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0370635986328125,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0458312034606934,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.03366747871041298,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0340964794158936,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.035870954394340515,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0488154888153076,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.03589509800076485,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0495200157165527,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.03478509560227394,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0541462898254395,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.0355323888361454,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0427117347717285,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.034441862255334854,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.045407772064209,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.03416377678513527,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.049482822418213,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.0346493273973465,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.05130672454834,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.036434851586818695,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0588598251342773,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.036556243896484375,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0400941371917725,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.03479764237999916,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0471439361572266,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.03453169763088226,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0421690940856934,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.03707161173224449,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.044891119003296,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.03662240132689476,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.052896022796631,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.03828197345137596,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0490801334381104,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.03648696094751358,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.052766799926758,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.03771203011274338,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.047482967376709,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.03640717640519142,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.053762912750244,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.039630427956581116,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.0526955127716064,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0367705412209034,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.0411949157714844,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.03550330922007561,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.063819408416748,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.03572065755724907,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0244944095611572,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.035106346011161804,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.0309081077575684,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.034751035273075104,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.051476001739502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.035984981805086136,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.044351577758789,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.03186164051294327,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0455284118652344,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.03490929678082466,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.0516161918640137,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.03666604310274124,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.042548894882202,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.03585631027817726,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.045844078063965,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.03425019606947899,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.0409810543060303,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.033636096864938736,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.034130096435547,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.033956967294216156,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.0605154037475586,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.033484719693660736,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.048447370529175,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.03497936204075813,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.051321268081665,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.03661432862281799,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.0672850608825684,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.03621155023574829,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0633487701416016,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.03281237185001373,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0363478660583496,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.03308592364192009,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.052189826965332,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.03316795453429222,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0617456436157227,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.032867368310689926,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.068634033203125,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.03460514172911644,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.056685447692871,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.03366415575146675,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0580344200134277,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.032436590641736984,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.045999526977539,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.03302331641316414,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.0448691844940186,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.03225932642817497,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0487351417541504,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.027019310742616653,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5333737134933472,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.552545428276062,
+ "eval_runtime": 40.3029,
+ "eval_samples_per_second": 60.591,
+ "eval_steps_per_second": 0.496,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.03282356634736061,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0323383808135986,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.03635304048657417,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.0300235748291016,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.03864569216966629,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.0247955322265625,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0437278188765049,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0283985137939453,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.0407632477581501,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.023880958557129,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.040480997413396835,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.013561248779297,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.04420691356062889,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.031022071838379,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.03912007063627243,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.0346133708953857,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.03669853135943413,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.034849166870117,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.03792891651391983,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0241119861602783,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.03592118248343468,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0296077728271484,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.04058276116847992,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.030550956726074,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.03656433895230293,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0139524936676025,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.03600491210818291,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.034283399581909,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.03632465749979019,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.022172451019287,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.03575845807790756,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.033905506134033,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.03587207570672035,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.0173325538635254,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.03748135268688202,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.0419812202453613,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.03642253577709198,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.025050640106201,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.03629091754555702,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.027693748474121,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.03675176203250885,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0280022621154785,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.03734526038169861,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.047478675842285,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.03568829596042633,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0132553577423096,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.0376809723675251,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0366334915161133,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.035549793392419815,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.0344221591949463,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.03689204901456833,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.028623104095459,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.03879143297672272,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.042330026626587,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.03597982972860336,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.021834373474121,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.03664528205990791,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.0351860523223877,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.03689957037568092,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.0286660194396973,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.036029018461704254,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.0364184379577637,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.034055814146995544,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0340652465820312,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.03875613957643509,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.037558078765869,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.037507254630327225,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0333728790283203,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.037127479910850525,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.036898612976074,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.03516993671655655,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0266568660736084,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.03609304875135422,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0363082885742188,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.036769017577171326,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.03255295753479,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.03505093231797218,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.041630744934082,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.03566413000226021,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0380353927612305,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.036935437470674515,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0276670455932617,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.03520416468381882,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0365400314331055,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.035853348672389984,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.0400218963623047,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.035557154566049576,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0284597873687744,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.03602634370326996,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.053232192993164,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.03571629151701927,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0341010093688965,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.035771116614341736,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.051591634750366,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.03458280861377716,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0284039974212646,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.034343283623456955,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0505149364471436,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.036010000854730606,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.063382625579834,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.035176873207092285,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.050454616546631,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.036633968353271484,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.031681776046753,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.034044697880744934,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.0267088413238525,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.034257594496011734,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.0408670902252197,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.035452570766210556,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.032978057861328,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.0361541248857975,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.053792953491211,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.03328802436590195,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0361948013305664,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.03315882012248039,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.032573699951172,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.03500601276755333,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.023015022277832,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.034372393041849136,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.0514891147613525,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.033832550048828125,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0483155250549316,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.033679116517305374,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.042240858078003,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.034922096878290176,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0513346195220947,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.035334471613168716,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.051670551300049,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.03574659675359726,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.0349650382995605,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.03730623424053192,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0378975868225098,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.03401785343885422,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.028838634490967,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.03594788908958435,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.0515542030334473,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.03469979390501976,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.043018341064453,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.03401044383645058,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.036444664001465,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.03516605868935585,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0433053970336914,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.027055054903030396,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5198322534561157,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.5527397990226746,
+ "eval_runtime": 40.3084,
+ "eval_samples_per_second": 60.583,
+ "eval_steps_per_second": 0.496,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.03817775472998619,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 2.014291763305664,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.045025501400232315,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.0225162506103516,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.04398959502577782,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 2.006675958633423,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.03959054499864578,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 2.01819109916687,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.03865288570523262,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.031805992126465,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.038170117884874344,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 2.0045318603515625,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.04058389738202095,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.02978253364563,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.040722932666540146,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 2.016132354736328,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.038699548691511154,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9960041046142578,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.040015220642089844,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 2.023329973220825,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.03872944787144661,
+ "learning_rate": 0.000351829234402338,
+ "loss": 2.000551700592041,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.03635743260383606,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0180766582489014,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.040979597717523575,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0233054161071777,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.04057953506708145,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.998524785041809,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.03665328025817871,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.0259547233581543,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.03757257014513016,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 2.007732629776001,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.03867169842123985,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.04213547706604,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.037884995341300964,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 2.006622791290283,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.03829026594758034,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 2.0132980346679688,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.03885728120803833,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 2.0085272789001465,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.03936684504151344,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.018925189971924,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.03945126011967659,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0138871669769287,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.03868940845131874,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.0320234298706055,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.0403977669775486,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.019897222518921,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.036802321672439575,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.0291051864624023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.037886932492256165,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.01997709274292,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.03820442035794258,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 2.017076253890991,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.03698814660310745,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.019681453704834,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.03672315552830696,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.014714479446411,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.03679480031132698,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.0329461097717285,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.03950913995504379,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.0233542919158936,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.04085060954093933,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.0266427993774414,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.037804972380399704,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.01847505569458,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.03813349828124046,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0330519676208496,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.0376429408788681,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.027806043624878,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.039723318070173264,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.0224123001098633,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.041882216930389404,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.027073383331299,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.039008647203445435,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.0189757347106934,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.038369983434677124,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.042233943939209,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.039449311792850494,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.040482521057129,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.03860166296362877,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.035766124725342,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.03782619535923004,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.013154983520508,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.03519447520375252,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.01981258392334,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.03790419176220894,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0459842681884766,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.040389787405729294,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.013162612915039,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.03874276950955391,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.0392348766326904,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.03992857038974762,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0226612091064453,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.03900967165827751,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0341713428497314,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.03903203830122948,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0326571464538574,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.04252941161394119,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.0314011573791504,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.03818681836128235,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.030336856842041,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.03757959604263306,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.019878387451172,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.03789868578314781,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0226588249206543,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.0350211001932621,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.004337787628174,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.03735208883881569,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0375568866729736,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.03836100548505783,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.0382256507873535,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.03579322248697281,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.0217275619506836,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.03788687661290169,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.042222499847412,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.035492971539497375,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.0405704975128174,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.036715295165777206,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.025301933288574,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.03627604991197586,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.035423755645752,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.036521025002002716,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.034818649291992,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.034815434366464615,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.014099359512329,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.036962155252695084,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0376968383789062,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.03699996694922447,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.0328783988952637,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.03594295680522919,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.0190696716308594,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.03537467122077942,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0349888801574707,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.03623776137828827,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0499041080474854,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.034689512103796005,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.03133487701416,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.03677541762590408,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.0251593589782715,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.03563302010297775,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0194146633148193,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02928403578698635,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.5182281732559204,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.5533545613288879,
+ "eval_runtime": 40.3853,
+ "eval_samples_per_second": 60.468,
+ "eval_steps_per_second": 0.495,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.03789510950446129,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 2.008755683898926,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.0427454337477684,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 2.019838333129883,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.041143182665109634,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 2.0141477584838867,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.03762347251176834,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.992085576057434,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.03848518431186676,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 2.016890287399292,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.0377630814909935,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 2.009958028793335,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.03680561110377312,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 2.018612861633301,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.03762245178222656,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 2.0004172325134277,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.03656560927629471,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 2.0151615142822266,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.038048457354307175,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.9919967651367188,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.040771741420030594,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 2.0060744285583496,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.038646649569272995,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 2.0159130096435547,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.036314886063337326,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 2.006176233291626,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.03918880596756935,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.0253286361694336,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.04082130640745163,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0250062942504883,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.041170936077833176,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 2.0077667236328125,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.03768005967140198,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 2.002206563949585,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.03792872652411461,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 2.0064055919647217,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.0376131609082222,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 2.0063343048095703,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.03695986419916153,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 2.0033822059631348,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.0401851125061512,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.994509220123291,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.038628749549388885,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 2.021456003189087,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.0374966524541378,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 2.010359764099121,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.03532039374113083,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 2.01088285446167,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.035847507417201996,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 2.0032248497009277,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.03685302659869194,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 2.0076217651367188,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.03596249595284462,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 2.016143321990967,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 2.007262706756592,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.03757180646061897,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 2.003965139389038,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.038859933614730835,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.993287205696106,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0379737950861454,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.021317481994629,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.03892125189304352,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 2.004063606262207,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.039450522512197495,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 2.009964942932129,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.03594212979078293,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 2.0137014389038086,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.03597532585263252,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.0228540897369385,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.03846270591020584,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.02573561668396,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.03964656963944435,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 2.0131657123565674,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.038142550736665726,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 2.0159523487091064,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.03694092482328415,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0218708515167236,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.03808217868208885,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.021594762802124,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.03963039442896843,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 2.011718511581421,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.03673911094665527,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.019754409790039,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.03620317578315735,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 2.0093791484832764,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.037256017327308655,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 2.009913921356201,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.03853237256407738,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.02105975151062,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.038257427513599396,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.016420841217041,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.03902476653456688,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.016873359680176,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.03973422572016716,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 2.011507034301758,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.03816727548837662,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0235657691955566,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.039656419306993484,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0191903114318848,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.039661165326833725,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 2.00667667388916,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.04040561988949776,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 2.002431869506836,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.043790772557258606,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.031578779220581,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.038923632353544235,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.021897792816162,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.03644861653447151,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.019446849822998,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.0396464541554451,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 2.009986639022827,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.039006832987070084,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0158028602600098,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.035112179815769196,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.0168607234954834,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.03893120959401131,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 2.0081255435943604,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.03557255119085312,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.0183098316192627,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.03863762319087982,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.024491786956787,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.04014527052640915,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.031792640686035,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.0369761623442173,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.015428304672241,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.04022941738367081,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.0153818130493164,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.03956198692321777,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.021428346633911,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.036606140434741974,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 2.0032830238342285,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.03953659161925316,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.013489007949829,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.03913400322198868,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0274107456207275,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.036562636494636536,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.0173275470733643,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.039273153990507126,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.024212121963501,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.040421441197395325,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.031569242477417,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.030466808006167412,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5180330276489258,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.5535854697227478,
+ "eval_runtime": 41.148,
+ "eval_samples_per_second": 59.347,
+ "eval_steps_per_second": 0.486,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.039032384753227234,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.9920241832733154,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.041609007865190506,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9881491661071777,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.038623128086328506,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9976372718811035,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.03914353623986244,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9816069602966309,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.04063460975885391,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 2.0046496391296387,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.042663004249334335,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9930580854415894,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.040998101234436035,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 2.008364677429199,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.041671473532915115,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 2.005788803100586,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.0420398935675621,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.9959884881973267,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.0416552871465683,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.9947746992111206,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.041419412940740585,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9942247867584229,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.04148508235812187,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9945931434631348,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.041060201823711395,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 2.0063748359680176,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.040119070559740067,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 2.000641107559204,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.04179691895842552,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9936890602111816,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.040200114250183105,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9800493717193604,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.03986869752407074,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.9906518459320068,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.043195679783821106,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9976487159729004,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.03883126378059387,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 2.001391887664795,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.03800702840089798,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 2.004763603210449,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0407932847738266,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.9919681549072266,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.0401216596364975,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9732658863067627,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.03860956430435181,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9886324405670166,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.040160007774829865,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 2.0077905654907227,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.04022439941763878,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9821927547454834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.041961729526519775,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9947912693023682,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.04093684256076813,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 2.007406234741211,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.04111676663160324,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 2.0099968910217285,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.03939409554004669,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 2.0050230026245117,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.039408158510923386,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.989539384841919,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.039070483297109604,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 2.0107581615448,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.03986838087439537,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 2.007388114929199,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.03872528672218323,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 2.002636194229126,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.03786979243159294,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9882686138153076,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.037976834923028946,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 2.020331621170044,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.037561025470495224,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.998062014579773,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.040928397327661514,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.9984104633331299,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.038733627647161484,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 2.023151397705078,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.03880929574370384,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9985425472259521,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.040410179644823074,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 2.0105319023132324,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.04060919210314751,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9950847625732422,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.038462985306978226,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 2.0109362602233887,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.03816642239689827,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 2.013629913330078,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.03969560191035271,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.98691987991333,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.0382484570145607,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 2.0075533390045166,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.03932507336139679,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 2.014407157897949,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.038706980645656586,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9987857341766357,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.03753427788615227,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.9929393529891968,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.03967666998505592,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 2.0053462982177734,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.03984595835208893,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 2.0171046257019043,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.03843587636947632,
+ "learning_rate": 0.000303,
+ "loss": 2.016073703765869,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.04069933295249939,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 2.0196797847747803,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.03816717118024826,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9992872476577759,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.03972223773598671,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 2.0082225799560547,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.03925364091992378,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 2.0078647136688232,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.03874839469790459,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.9888811111450195,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.03876980394124985,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 2.0105342864990234,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.037127457559108734,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 2.0146484375,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.04017023742198944,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 2.0216569900512695,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.038180865347385406,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 2.007103443145752,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.037544023245573044,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 2.002417802810669,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.04044882953166962,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 2.01629638671875,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.03934580460190773,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 2.015477418899536,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.038512952625751495,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 2.0063209533691406,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.04022837057709694,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 2.0138511657714844,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.041775189340114594,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 2.0133614540100098,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.035933662205934525,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 2.014932632446289,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.03949640318751335,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 2.0103020668029785,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.03965448960661888,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 2.004199504852295,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.03770808130502701,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9988662004470825,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.03707122802734375,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.018692970275879,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.03094588965177536,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4853765964508057,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.5541954636573792,
+ "eval_runtime": 40.5827,
+ "eval_samples_per_second": 60.173,
+ "eval_steps_per_second": 0.493,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.0392163060605526,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9966017007827759,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.0415823757648468,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9879624843597412,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.04013896360993385,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.988283395767212,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.03999984636902809,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9808108806610107,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.04117234796285629,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9704176187515259,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.04188748076558113,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9882853031158447,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.04021158069372177,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 2.000579595565796,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.041353169828653336,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9934958219528198,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.04121048375964165,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9767675399780273,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.04130895063281059,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9964344501495361,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.043271005153656006,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9858148097991943,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.041478291153907776,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.9812901020050049,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.03920124098658562,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.9811720848083496,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.041624993085861206,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.9834777116775513,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.040084224194288254,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.986745834350586,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.04137095808982849,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.973207712173462,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.041268061846494675,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.992466688156128,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.03843039646744728,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.977168083190918,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.041724126785993576,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.968721866607666,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.03939545527100563,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9894965887069702,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.041979216039180756,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.9862024784088135,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.04003292694687843,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9772882461547852,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.043241675943136215,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9868083000183105,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.04085911810398102,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9829399585723877,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.042357802391052246,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.996422529220581,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.04186234250664711,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 2.004091739654541,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.041697580367326736,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9707295894622803,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.044106002897024155,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9954397678375244,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.042095571756362915,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.978273868560791,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.04259150102734566,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9970736503601074,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.04311408847570419,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.9791979789733887,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.0417819544672966,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9963579177856445,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.041719887405633926,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9846333265304565,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.03955843672156334,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9993603229522705,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.041470643132925034,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 2.00172758102417,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.042907752096652985,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9878431558609009,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.04169829934835434,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9879419803619385,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.041907984763383865,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9958174228668213,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.04091141000390053,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9915833473205566,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.04279981926083565,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 2.0011239051818848,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.04060981422662735,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 2.008984088897705,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.04239627346396446,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9861326217651367,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.041348736733198166,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9886527061462402,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.04240468144416809,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 2.0117287635803223,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.04239945858716965,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.9927752017974854,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.04039507359266281,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9964733123779297,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.040595248341560364,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.996137022972107,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.04081724211573601,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.999343752861023,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.039217282086610794,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.9974390268325806,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.040758758783340454,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9964487552642822,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.04097484052181244,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.9863066673278809,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.03944368660449982,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 2.0107219219207764,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.04319391027092934,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9830152988433838,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.04203958436846733,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 2.01261568069458,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.03908214345574379,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 2.002816677093506,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.04401380196213722,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9947903156280518,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.04078475758433342,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.9908418655395508,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.03904392570257187,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.9999381303787231,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.0408707857131958,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.976728916168213,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.03951644524931908,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.9820250272750854,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.038964930921792984,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9985617399215698,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.03885824978351593,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 2.012847900390625,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.04176724702119827,
+ "learning_rate": 0.000280627938758204,
+ "loss": 2.000138521194458,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.03801671043038368,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9985980987548828,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.03998260200023651,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 2.016493320465088,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.041373904794454575,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.996181607246399,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.04230344295501709,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.994934320449829,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.03852430358529091,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9986990690231323,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.04095832630991936,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 2.0044407844543457,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.039320334792137146,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9949603080749512,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.039367519319057465,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9997683763504028,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.03257475048303604,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.5053578615188599,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.5548559427261353,
+ "eval_runtime": 39.9404,
+ "eval_samples_per_second": 61.141,
+ "eval_steps_per_second": 0.501,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.04034148156642914,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9629207849502563,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.04501507431268692,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.974515676498413,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.04124121740460396,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9755148887634277,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.04242594540119171,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9660277366638184,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.04222042113542557,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.969848871231079,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.041065510362386703,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9839062690734863,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.04202630743384361,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9626474380493164,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.03920961171388626,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9699093103408813,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.041874419897794724,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9744274616241455,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.04031674563884735,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9619100093841553,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.04077756404876709,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.977008581161499,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.0406559556722641,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9602702856063843,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.0407014898955822,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9805724620819092,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.04144314303994179,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9797005653381348,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.03987768292427063,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9890257120132446,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.04087170585989952,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9670617580413818,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.0421152263879776,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9832180738449097,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.041151583194732666,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.979284405708313,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.04098111018538475,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9762449264526367,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.040003713220357895,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9810866117477417,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.039482954889535904,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.9789704084396362,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.040345363318920135,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9768264293670654,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.038912542164325714,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9986684322357178,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.04091883823275566,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.9675683975219727,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.040190439671278,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9741504192352295,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.040189869701862335,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9939947128295898,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.041559718549251556,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.988523244857788,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.04450741782784462,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9801191091537476,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.04318423569202423,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9808297157287598,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.039648231118917465,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.995420217514038,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.04360787943005562,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9885940551757812,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.04208594560623169,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.991687536239624,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.041687630116939545,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9881685972213745,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.04600570350885391,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.9956451654434204,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.04074542596936226,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9823975563049316,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.04009614884853363,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.9956731796264648,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.04262600094079971,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9813146591186523,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.04119280353188515,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9755754470825195,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.039549387991428375,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9963082075119019,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.04041566327214241,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9689855575561523,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.0396316759288311,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9947049617767334,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.03907989338040352,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.980762243270874,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.04385632649064064,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.990250825881958,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.04149923846125603,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.9612936973571777,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.041488222777843475,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 2.0052437782287598,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.04136145859956741,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9815279245376587,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.03946318477392197,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.984222650527954,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.03961804881691933,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9865868091583252,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0396062508225441,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9827325344085693,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.03807860612869263,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.969796061515808,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.040188297629356384,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.9754271507263184,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.04030116647481918,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.984015703201294,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.03954409807920456,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.986281394958496,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.03851275518536568,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9770636558532715,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.039922576397657394,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9833152294158936,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.040427785366773605,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9849940538406372,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.03961245343089104,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.9793310165405273,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.038811273872852325,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9942911863327026,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.03950529173016548,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9915971755981445,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.04060761258006096,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9923640489578247,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.03954262658953667,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.969840168952942,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.040870875120162964,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.986947774887085,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.03830090910196304,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9978424310684204,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.04211213067173958,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9800487756729126,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.039632175117731094,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9931446313858032,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.04033558815717697,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.994535207748413,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.040556881576776505,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.990935206413269,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.0404195562005043,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9928548336029053,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.03944119065999985,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9880776405334473,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.041356492787599564,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 2.0028457641601562,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.040106043219566345,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.9898993968963623,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.03221338987350464,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.476259469985962,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.5553070902824402,
+ "eval_runtime": 49.7026,
+ "eval_samples_per_second": 49.132,
+ "eval_steps_per_second": 0.402,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.040987614542245865,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.9529434442520142,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.041120950132608414,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9582853317260742,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.03971652314066887,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.968639850616455,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.03996049612760544,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.9660120010375977,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.041076596826314926,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9702348709106445,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.042114660143852234,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.958723545074463,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.041039030998945236,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9631943702697754,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.03982028365135193,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9652111530303955,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.03985974192619324,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.963340401649475,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.04071837291121483,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9834423065185547,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.04139500856399536,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9624135494232178,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.04257931560277939,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.984895944595337,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.04105570912361145,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.965362787246704,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.04104257747530937,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.972224235534668,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.04118179529905319,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.970554232597351,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.042708441615104675,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.9676144123077393,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.04269356653094292,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9650506973266602,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.04225006699562073,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9717724323272705,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.044967059046030045,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.962235689163208,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.042227912694215775,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9613938331604004,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.04277089610695839,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.9753990173339844,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.04182279482483864,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9625771045684814,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.04324203357100487,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.968394160270691,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.04029430076479912,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9559634923934937,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.0409722626209259,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.9495587348937988,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.042297445237636566,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9796255826950073,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.04394613206386566,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9650824069976807,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.041808269917964935,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.9505605697631836,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.043006978929042816,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.9647276401519775,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.04460060968995094,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.9642753601074219,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.04388919845223427,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.9735398292541504,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.04144032299518585,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9798399209976196,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.04448307305574417,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9688754081726074,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.04168044030666351,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.9607760906219482,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.04390672221779823,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.985724687576294,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.05282226577401161,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.971274733543396,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.04509815573692322,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9798986911773682,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.04231378436088562,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9754219055175781,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.04514963924884796,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9875903129577637,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.04290074110031128,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9779725074768066,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.043086808174848557,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9822276830673218,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.041193511337041855,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.956713318824768,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.041158173233270645,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9508072137832642,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.04199864715337753,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9838216304779053,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.042495034635066986,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9770547151565552,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.04065609350800514,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9711198806762695,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.04315977916121483,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.957960605621338,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.04295031726360321,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9879754781723022,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.04057304933667183,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9813754558563232,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.041819434612989426,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.967017650604248,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.04248471185564995,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9724358320236206,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.043477047234773636,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9974957704544067,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.041802674531936646,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.969354510307312,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.0430421382188797,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.9911510944366455,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.04107428342103958,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.975877046585083,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.04443598911166191,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9712554216384888,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.04327385500073433,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9681297540664673,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.04173135384917259,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9472997188568115,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.04201003164052963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9661506414413452,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.04078659787774086,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.9666576385498047,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0406930036842823,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.9849047660827637,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.042122919112443924,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.9777114391326904,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.04120451211929321,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.969825267791748,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.04186492785811424,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.994114637374878,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.04207214340567589,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.9899489879608154,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.044357068836688995,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.9830305576324463,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.04240988567471504,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9758679866790771,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.04397385194897652,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9774196147918701,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.04195938631892204,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.9627633094787598,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.04116087406873703,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.967322826385498,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.04200683906674385,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9736065864562988,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.0335347019135952,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.465168833732605,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.5561301708221436,
+ "eval_runtime": 40.3807,
+ "eval_samples_per_second": 60.474,
+ "eval_steps_per_second": 0.495,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.041839007288217545,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.962834119796753,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.04494776204228401,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9620225429534912,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.04260874167084694,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.9532074928283691,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.041091833263635635,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.9500408172607422,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.04230482876300812,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.9540523290634155,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.04213967174291611,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.9378814697265625,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.04107899218797684,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.9528520107269287,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.042169325053691864,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.9380617141723633,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.04244079068303108,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.9579730033874512,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.041498638689517975,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.9536144733428955,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.040074724704027176,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.9410881996154785,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.04285141080617905,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.948718786239624,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.041612278670072556,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.9381821155548096,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.04301951825618744,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.9557945728302002,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.04282021522521973,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.9603688716888428,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.046332504600286484,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.9555209875106812,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0429227314889431,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.9428198337554932,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.04214467853307724,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9655869007110596,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.04359026253223419,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.9500617980957031,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.041300319135189056,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.9598267078399658,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.04707876220345497,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.9480507373809814,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.04198484867811203,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.9500718116760254,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.04452266916632652,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.967477560043335,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.04509236291050911,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.95900297164917,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.04348349943757057,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.9371505975723267,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.04213197901844978,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.9548835754394531,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.04171326011419296,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.9320429563522339,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.040957994759082794,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9708552360534668,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.042061030864715576,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.9647853374481201,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.042551394551992416,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9628281593322754,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.04178022965788841,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9609858989715576,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.041741300374269485,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.965749740600586,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.043949443846940994,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9692953824996948,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.04203510284423828,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9678642749786377,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.043694913387298584,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.9455668926239014,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.042708177119493484,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.965721845626831,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.04325935244560242,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.952937126159668,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.04308290407061577,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9778510332107544,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.04172641783952713,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9692282676696777,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.04281787946820259,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.9532403945922852,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.04087405279278755,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.961708903312683,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.04168091341853142,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.977181077003479,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.04360164329409599,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9583289623260498,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.04258623719215393,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.969384789466858,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.04215861111879349,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9673523902893066,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.04312222823500633,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.9638433456420898,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.04376685991883278,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9621204137802124,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.04453703761100769,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9714503288269043,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.04112813621759415,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9752442836761475,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.041888099163770676,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9700050354003906,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.040998443961143494,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9721579551696777,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.04311826825141907,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.980010747909546,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.04124320298433304,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.952293872833252,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.042228251695632935,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9557874202728271,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.04347359761595726,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.963796854019165,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.03958803787827492,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.9730989933013916,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.043780308216810226,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.9558871984481812,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.04270954802632332,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9668874740600586,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.043424077332019806,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9625186920166016,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.0442342534661293,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.9585497379302979,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.04140656068921089,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.9448176622390747,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.0448518805205822,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.9776833057403564,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.04289280250668526,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.957261085510254,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.04201837256550789,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9734320640563965,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.04439011961221695,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9649404287338257,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.0432993583381176,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.96087646484375,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.042321283370256424,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9586503505706787,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.04592757672071457,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9700541496276855,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.041818130761384964,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9758845567703247,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.04364927113056183,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9568970203399658,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.04458127170801163,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.966611385345459,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03495609387755394,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.468475341796875,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.5568150281906128,
+ "eval_runtime": 39.8227,
+ "eval_samples_per_second": 61.322,
+ "eval_steps_per_second": 0.502,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.04475132375955582,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.9472060203552246,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.045613858848810196,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.9384872913360596,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.042742565274238586,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.9343316555023193,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.044867027550935745,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.939120888710022,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.04303931072354317,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.9521855115890503,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.04660770669579506,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.9521983861923218,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.045712005347013474,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.935784101486206,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.043419793248176575,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.9451897144317627,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.04524999484419823,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.948369026184082,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.04713384062051773,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.9450111389160156,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.04074151813983917,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.9382028579711914,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.04502285644412041,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.9334264993667603,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.043706756085157394,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.9495983123779297,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.04386162385344505,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.9515377283096313,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.043326519429683685,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.9486628770828247,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.043552469462156296,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.944170355796814,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.04372403025627136,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.9427499771118164,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.04319126158952713,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.9517441987991333,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.04346977174282074,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.9459564685821533,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.04480305314064026,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.9411635398864746,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.04327613115310669,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.9756957292556763,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.04404512792825699,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.9407591819763184,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.043688371777534485,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.9524717330932617,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.04608568921685219,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.9563519954681396,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.04586746171116829,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.9477601051330566,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.0457453727722168,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.9450562000274658,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.044928375631570816,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.937544584274292,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.04492770507931709,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.9332008361816406,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.0454193539917469,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.9613850116729736,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.044987618923187256,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.9520149230957031,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.04336383566260338,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.953560709953308,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.043413858860731125,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.9426552057266235,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.04342658072710037,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.9523890018463135,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0437006801366806,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9690449237823486,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.042938075959682465,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.9512395858764648,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.04373693838715553,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.9322478771209717,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.04317113384604454,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.9695899486541748,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.04304879903793335,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.9470901489257812,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.04294352978467941,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.9300976991653442,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.04347103834152222,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.9500313997268677,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.043133966624736786,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.9629690647125244,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.04175884276628494,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.9543583393096924,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.043001141399145126,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.9514631032943726,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.04206647723913193,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.9431962966918945,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.04285243898630142,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.9547057151794434,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.04447701573371887,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.9542031288146973,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.0425914004445076,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.9506466388702393,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.04313453659415245,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.9480928182601929,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.04270946606993675,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.952941656112671,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.04241576045751572,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.939210057258606,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.041205525398254395,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.9364166259765625,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.0434810034930706,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.9460487365722656,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.04301954805850983,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.9502805471420288,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.0429537408053875,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.9432543516159058,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.0425160713493824,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.9487577676773071,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.04392602667212486,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.9603791236877441,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.0426364541053772,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.9570332765579224,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.04407336562871933,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.9530041217803955,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.04233618453145027,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.9509906768798828,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.04305610433220863,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.957235336303711,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.04430278018116951,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.940815806388855,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.04226064682006836,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.9556574821472168,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.04346537962555885,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.9461195468902588,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.04263962432742119,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9576923847198486,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.04381522908806801,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.9449446201324463,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.04218338802456856,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.9571001529693604,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.0416242852807045,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.9477391242980957,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.04212493449449539,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.966149091720581,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.042672351002693176,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.9682352542877197,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.04106829687952995,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.9462820291519165,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.043548960238695145,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.957768440246582,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.03447113558650017,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4630240201950073,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.5573379993438721,
+ "eval_runtime": 46.5842,
+ "eval_samples_per_second": 52.421,
+ "eval_steps_per_second": 0.429,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.04285870119929314,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.9332802295684814,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.04557755962014198,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.9371343851089478,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.04116271808743477,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.9495322704315186,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.04556567594408989,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.9440783262252808,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.04328050836920738,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.9327294826507568,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.04313594475388527,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.933357834815979,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.047144487500190735,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.9348008632659912,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.04668821394443512,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.9230201244354248,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.04336639121174812,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.9244744777679443,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.043821923434734344,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.9395811557769775,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.04383927211165428,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.9268351793289185,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.042469821870326996,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.9373741149902344,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.043338630348443985,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.9304418563842773,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.04467812925577164,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.927775263786316,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.043438415974378586,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.9424524307250977,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.04276007041335106,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.9348394870758057,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.044115278869867325,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.9279959201812744,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.04312213510274887,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.9148272275924683,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.04442084953188896,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.9318461418151855,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.04306824132800102,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.929410457611084,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.04616241529583931,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.9425160884857178,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.043449901044368744,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.93715500831604,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.0449586845934391,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.943284273147583,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.044567257165908813,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.9287354946136475,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.04409945756196976,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.9442834854125977,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.04614093527197838,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.9407234191894531,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.044272493571043015,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.9427531957626343,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.046257223933935165,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.934558629989624,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.04504263773560524,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.9344301223754883,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.04613269865512848,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.9523203372955322,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.04359893128275871,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.9534872770309448,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.044758617877960205,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.9394410848617554,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.04496034234762192,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.9474343061447144,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.0438607819378376,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.9398064613342285,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.0454886294901371,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.936154842376709,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.04377540200948715,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.9346157312393188,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.043989669531583786,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.929081916809082,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.044563986361026764,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.9414352178573608,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.043291036039590836,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.9329895973205566,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.045155249536037445,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.9318394660949707,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.04445208981633186,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.941894769668579,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.04445616528391838,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.9463168382644653,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.04478035867214203,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.9354333877563477,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.045354459434747696,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.930020809173584,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.04453159123659134,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.9286775588989258,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.044591024518013,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.9429574012756348,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.04425579309463501,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.947604775428772,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.044748082756996155,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.9470477104187012,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.04593580961227417,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.937525987625122,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.043080125004053116,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.946656346321106,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.04556628689169884,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.9434765577316284,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.04450301080942154,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.9515914916992188,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.042459938675165176,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.9470634460449219,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.046506237238645554,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.9352115392684937,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.04481459781527519,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.9462571144104004,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.043813664466142654,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.9520037174224854,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.04445577412843704,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.9387362003326416,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.04351884126663208,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.9258419275283813,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.043723348528146744,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.9318315982818604,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.042861346155405045,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.9379544258117676,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.044699329882860184,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.951422929763794,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.04349956661462784,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.9352158308029175,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.0433838777244091,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.9462525844573975,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.04403919726610184,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.9481416940689087,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.044272877275943756,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.9500665664672852,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.044802214950323105,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.934298038482666,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.04337660223245621,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.954413652420044,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.043723538517951965,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.9608337879180908,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.04384087026119232,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.957395076751709,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.04272010177373886,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.9467015266418457,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.04412781819701195,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.9331390857696533,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03537739813327789,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.452278971672058,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.5580063462257385,
+ "eval_runtime": 41.0077,
+ "eval_samples_per_second": 59.55,
+ "eval_steps_per_second": 0.488,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.04488050192594528,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.9278442859649658,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.04385434463620186,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.9266334772109985,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.04343170300126076,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.9108353853225708,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.04333009198307991,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.9282209873199463,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.043575625866651535,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.912508249282837,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.04466782137751579,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.919581413269043,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.04611176252365112,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.9342784881591797,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.04373355954885483,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.9118773937225342,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.047107476741075516,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.9101970195770264,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.04320043325424194,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.932800531387329,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.04540976136922836,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.9250563383102417,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.04323503002524376,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.9331316947937012,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.04482870548963547,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.9348450899124146,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.044921185821294785,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.9033823013305664,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.0437164381146431,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.9165492057800293,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.04656543210148811,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.9247410297393799,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.04488205537199974,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.92763090133667,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.04543324187397957,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.9337310791015625,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.04601719602942467,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.9362705945968628,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.04425300285220146,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.9175018072128296,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.046571098268032074,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.9094732999801636,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.04628605395555496,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.9328744411468506,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.04729470983147621,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.9140973091125488,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.04496074467897415,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.928534984588623,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.9149569272994995,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.044917237013578415,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.9233367443084717,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.04609345644712448,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.9380614757537842,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.045224424451589584,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.923943281173706,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.04588423669338226,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.9246735572814941,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.046085700392723083,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.9078786373138428,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.045062921941280365,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.9289073944091797,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.045110709965229034,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.9322113990783691,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.0472494512796402,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.938441276550293,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.04466252401471138,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.9182933568954468,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.04513029381632805,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.9107897281646729,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.045220620930194855,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.940725564956665,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.045562177896499634,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.9358959197998047,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.04428212717175484,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.9271135330200195,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.04473140835762024,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.931797742843628,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.043908942490816116,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.9203201532363892,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.043839748948812485,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.9134262800216675,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.04567759111523628,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.9289779663085938,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.04431043565273285,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.941714882850647,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.04408961907029152,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.9301257133483887,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.04624704271554947,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.9381217956542969,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.04422634467482567,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.9162166118621826,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.04419756308197975,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.92188560962677,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.04618249088525772,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.9345735311508179,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.04490220174193382,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.9351990222930908,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.046499986201524734,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.9223530292510986,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.04331587627530098,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.9249944686889648,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.04636161029338837,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.9414262771606445,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.0445382185280323,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.9354854822158813,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.04564649984240532,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.9308267831802368,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.04421863704919815,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.9366023540496826,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.04698484018445015,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.9335650205612183,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.04388933628797531,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.9299960136413574,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.046337876468896866,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.9503027200698853,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.04348573088645935,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.9341070652008057,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.045959342271089554,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.9151384830474854,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.04479081928730011,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.9382342100143433,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.04572956636548042,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.9310452938079834,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.04677167162299156,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.9518420696258545,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.04495622590184212,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.9428808689117432,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.04611065983772278,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.9220831394195557,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.04454458877444267,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.9490790367126465,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.046582695096731186,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.9425218105316162,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.04383963346481323,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.9434903860092163,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.044776711612939835,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.930960774421692,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.043473951518535614,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.934765100479126,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.04574871063232422,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.9359397888183594,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03675457090139389,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.4525755643844604,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.5587614178657532,
+ "eval_runtime": 54.5655,
+ "eval_samples_per_second": 44.754,
+ "eval_steps_per_second": 0.367,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.0462750606238842,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.9179565906524658,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.04558630660176277,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8978389501571655,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.04710238054394722,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.9018924236297607,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.04631956294178963,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.9072178602218628,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.04520673677325249,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.9221091270446777,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.04918315261602402,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.9093704223632812,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.046507298946380615,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.9335057735443115,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.0474676676094532,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.9136755466461182,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.045877616852521896,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.9096475839614868,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.04849010333418846,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.9148929119110107,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.04782263934612274,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.914750099182129,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.045352671295404434,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.9120718240737915,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.04869354888796806,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.91766357421875,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.04467938840389252,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.899644374847412,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.047056928277015686,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.9113627672195435,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.045194532722234726,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.9268800020217896,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.04681428149342537,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.9223413467407227,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.046070028096437454,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.9202659130096436,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.04682234674692154,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.9200537204742432,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.04590713232755661,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.905088186264038,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.0492512583732605,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.923885464668274,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.046058595180511475,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.9140686988830566,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05024345591664314,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.9238293170928955,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.04682156816124916,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.91746187210083,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.04715842381119728,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.9203336238861084,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.04766647145152092,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.9099605083465576,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.0484190359711647,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.9298415184020996,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.04713325947523117,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.9137039184570312,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.04657702147960663,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.909759283065796,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.047971706837415695,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.9150055646896362,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.04693721979856491,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.9161012172698975,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.045918580144643784,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.9190044403076172,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.044876597821712494,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.9148699045181274,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.04615379497408867,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.9099400043487549,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.044768523424863815,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.9174376726150513,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.04711288958787918,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.9337024688720703,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.04604453220963478,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.918162226676941,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.046346515417099,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.9226276874542236,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.046291086822748184,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.9002764225006104,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.04728492349386215,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.9176394939422607,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.0452590174973011,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.9092847108840942,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.04720590263605118,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.9305121898651123,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.04423863813281059,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.917733907699585,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.047705911099910736,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.9264805316925049,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.04461591690778732,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.9155296087265015,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.0448867566883564,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.9237422943115234,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.04488728940486908,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.9229776859283447,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.04524501785635948,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.9315156936645508,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.04549748823046684,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.9230515956878662,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.04490918666124344,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8992328643798828,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.04507176950573921,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.919519305229187,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.04591760039329529,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.915913462638855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.04368108510971069,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.931168556213379,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.04612324759364128,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.9031120538711548,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.04388239607214928,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.912826657295227,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.04572778567671776,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.924182415008545,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.04501771181821823,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.9176487922668457,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.043582577258348465,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.9067806005477905,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.046558983623981476,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.9344135522842407,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.04396207630634308,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.9220595359802246,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.04515782743692398,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.9215635061264038,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.045465730130672455,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.9135242700576782,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.04482322558760643,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.9089176654815674,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.04502297565340996,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.9229989051818848,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.044661134481430054,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.9119620323181152,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.04521520808339119,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.937756896018982,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.04591496288776398,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.9198966026306152,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.04410246014595032,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.9341609477996826,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.04488343000411987,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.9275271892547607,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.04497985169291496,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.9064011573791504,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.043899375945329666,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.9203660488128662,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.0378071591258049,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.4432313442230225,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.5599055290222168,
+ "eval_runtime": 40.2366,
+ "eval_samples_per_second": 60.691,
+ "eval_steps_per_second": 0.497,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.04420118033885956,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.893591284751892,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.04334490746259689,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.9110057353973389,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.04583484306931496,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.903444528579712,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.04383937269449234,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.9030766487121582,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.043749865144491196,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.9130524396896362,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.04311221092939377,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.9107348918914795,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.045599307864904404,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.900320053100586,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.04430649057030678,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.9028031826019287,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.04488218575716019,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.9213577508926392,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.04538808390498161,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8968687057495117,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.04458931088447571,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.9092092514038086,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.046152856200933456,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.9046111106872559,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.043571822345256805,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.9015637636184692,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.04416032135486603,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.8788703680038452,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.04414350166916847,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.9068684577941895,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.04326542839407921,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.9123764038085938,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.04510084167122841,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.9027619361877441,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.0441674180328846,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8962973356246948,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.04522429034113884,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.9108083248138428,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.044228654354810715,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.895268440246582,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.044145651161670685,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.9096617698669434,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.04376067593693733,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8920894861221313,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.0455496646463871,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.9054405689239502,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.0457804873585701,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.9108986854553223,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.046842969954013824,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.9257216453552246,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.04604218900203705,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8883439302444458,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.045921169221401215,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.917250156402588,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.04587477445602417,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.9154161214828491,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.04593200236558914,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.9063808917999268,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.046741142868995667,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.903794527053833,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.0460849292576313,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.9034333229064941,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.04705662652850151,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.9169785976409912,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.046874064952135086,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.9086027145385742,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.04523243382573128,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8996422290802002,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.04941021278500557,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8924407958984375,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.046277012676000595,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.9230189323425293,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.04795045778155327,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.9096146821975708,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.046317312866449356,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.903681993484497,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.04782787710428238,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8976242542266846,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.04749831184744835,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8980826139450073,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.048178333789110184,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.9099817276000977,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.04797761142253876,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.918223261833191,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.04733513295650482,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8991427421569824,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.04613934084773064,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.9202003479003906,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.04839421436190605,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.910476565361023,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.04656097665429115,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.894330620765686,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.04690321907401085,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.922321081161499,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.0483844019472599,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.9088165760040283,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.04675137251615524,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.9161102771759033,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.048790913075208664,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.9126578569412231,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.04615939408540726,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.9056590795516968,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.04707014560699463,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.9129831790924072,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.04887249693274498,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.9198627471923828,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.04701855778694153,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.904289960861206,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.04752900078892708,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.9119199514389038,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.04637937620282173,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.9015456438064575,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.04624813422560692,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.9151562452316284,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.04688073322176933,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.9010138511657715,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.04610495641827583,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.9150097370147705,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.04617947340011597,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.9171550273895264,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.047766949981451035,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.9131733179092407,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.04596418887376785,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.9148085117340088,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.04751482605934143,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.8954293727874756,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.04667142033576965,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.9257514476776123,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.04714122414588928,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.9146203994750977,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.046158310025930405,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.9000868797302246,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.0453617125749588,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.8987735509872437,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.045940201729536057,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.9061667919158936,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.04766112565994263,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.9178999662399292,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.04459957405924797,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.9119558334350586,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.0476016104221344,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.900212287902832,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03775295615196228,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.4189457893371582,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.5608142018318176,
+ "eval_runtime": 40.0941,
+ "eval_samples_per_second": 60.907,
+ "eval_steps_per_second": 0.499,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.04691528528928757,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.9091784954071045,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.044649846851825714,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.887937068939209,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.0458390973508358,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.9007302522659302,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.044493917375802994,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.896045446395874,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.04401393234729767,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.8799163103103638,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.04522944241762161,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.9080159664154053,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.04545010253787041,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.8961689472198486,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.044937968254089355,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.8832945823669434,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.04527098685503006,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.8932111263275146,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.045020874589681625,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.8807295560836792,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.044883109629154205,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8942033052444458,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.04531681910157204,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.897594690322876,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.04620317742228508,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.881105661392212,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.04480401799082756,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.907268762588501,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.046019479632377625,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.8711462020874023,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.04485408961772919,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8994673490524292,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.044721443206071854,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.9041085243225098,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.04607081413269043,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.8861747980117798,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.045138005167245865,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.9011361598968506,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.04558892175555229,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8930423259735107,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.04461068660020828,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.9006925821304321,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.04619097337126732,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.894855260848999,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.04536662623286247,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8980623483657837,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.04698953405022621,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.9184906482696533,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.04509678855538368,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.897698163986206,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.04784569889307022,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8914282321929932,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.046398840844631195,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8883490562438965,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.0459408275783062,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.8927901983261108,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.04603567346930504,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.8987791538238525,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.04574081301689148,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.9107396602630615,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.04680564999580383,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.896730899810791,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.04629705101251602,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.8787988424301147,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.046353038400411606,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8965022563934326,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.04517079144716263,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.8964993953704834,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.04716475307941437,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.893757939338684,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.045174792408943176,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.892754316329956,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.04810452088713646,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8958793878555298,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.046722661703825,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.89261794090271,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.046140771359205246,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.893494725227356,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0471862368285656,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.896652340888977,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.045774709433317184,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.9030897617340088,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.04702781140804291,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.9008216857910156,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.04491126537322998,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.8858935832977295,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.046226441860198975,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8982845544815063,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.046491123735904694,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.9116873741149902,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.04627670720219612,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8874033689498901,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.04598962143063545,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.8797005414962769,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.04507545381784439,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8928991556167603,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.04748183488845825,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.884603500366211,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.045718979090452194,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.9003963470458984,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.04665536805987358,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.8925182819366455,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.046419307589530945,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.9061237573623657,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.04635924845933914,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.906002402305603,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.04521135613322258,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8919563293457031,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.045106884092092514,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.904160737991333,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.04707646369934082,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.8977832794189453,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.04630834981799126,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.894344687461853,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.047408487647771835,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.9038341045379639,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.04631415754556656,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.894762635231018,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.04664890095591545,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.9022518396377563,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.04597138240933418,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.907623052597046,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.04781361296772957,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.91298508644104,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.046326275914907455,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8928176164627075,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.04668324813246727,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.9014129638671875,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.046763088554143906,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.896491527557373,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.9125089645385742,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.04805731400847435,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.9019800424575806,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.04599045217037201,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8966295719146729,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.047478046268224716,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.9278576374053955,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.04642656445503235,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.9214816093444824,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.04634053260087967,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.8993182182312012,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03797267749905586,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.4253604412078857,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.5617476105690002,
+ "eval_runtime": 45.755,
+ "eval_samples_per_second": 53.371,
+ "eval_steps_per_second": 0.437,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.04599457234144211,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.8775392770767212,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.04625241830945015,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.8828479051589966,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.04525088518857956,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8901206254959106,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.04521792009472847,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.886819839477539,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.04478102922439575,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.8718209266662598,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.04654891788959503,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.8746660947799683,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.045480672270059586,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.8890061378479004,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.04630589112639427,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.8757891654968262,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.04659707844257355,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.8867700099945068,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.04641665518283844,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.866898775100708,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.04771355912089348,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.8754963874816895,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.04529627785086632,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.8854069709777832,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.04694652929902077,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.8742434978485107,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.04678728058934212,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.871158242225647,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.04631989821791649,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.8754173517227173,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.04773801937699318,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.891624927520752,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.04650811851024628,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.9068515300750732,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.04727979004383087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.8853774070739746,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.04714864864945412,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8933064937591553,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.04628478363156319,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.8800125122070312,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.04849104955792427,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.8784363269805908,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.04615073278546333,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.8884400129318237,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.049269143491983414,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.8754403591156006,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.047510817646980286,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8950352668762207,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.04819583520293236,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.8889074325561523,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.046504657715559006,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.8806939125061035,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.04833124950528145,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.8870890140533447,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.045960672199726105,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.892927646636963,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.04889349266886711,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.9047961235046387,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.04624068737030029,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.8811109066009521,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.045885734260082245,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.8678951263427734,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.047633565962314606,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8910961151123047,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.04605350270867348,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.8854566812515259,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.047033410519361496,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.8889634609222412,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.04733380302786827,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.8894245624542236,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.04729244485497475,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8977644443511963,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.048333797603845596,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.884790301322937,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.047064345329999924,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.8918182849884033,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.04642755165696144,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.879097580909729,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.04668281227350235,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.8825325965881348,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.04552120715379715,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.8836299180984497,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.04680962115526199,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.88942289352417,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.04515194892883301,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.8945739269256592,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.047427091747522354,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.8871266841888428,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.04722534120082855,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.888176679611206,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.047272250056266785,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.8819680213928223,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.04718516021966934,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8838449716567993,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.04651009663939476,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.8843472003936768,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.04740661755204201,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.8730781078338623,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.04755423963069916,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8883650302886963,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.04771524667739868,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.889858365058899,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.04731367900967598,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.8849236965179443,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.047406550496816635,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.9015733003616333,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.04808863624930382,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.888007640838623,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.04662946239113808,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.8868497610092163,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.048229385167360306,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.8910794258117676,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.04799312353134155,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.89329195022583,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.04724393039941788,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8961341381072998,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.047718726098537445,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.8932898044586182,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.047182634472846985,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.9052118062973022,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.048551157116889954,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.9023537635803223,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.046883247792720795,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8965660333633423,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.04889964684844017,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8938546180725098,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.047213371843099594,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.8865680694580078,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.04776838421821594,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.8883678913116455,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.047268882393836975,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.8857024908065796,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.04802943393588066,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.891611099243164,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.04715752974152565,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.892876148223877,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.04750922694802284,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.893934726715088,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.04800679534673691,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8960907459259033,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.047234755009412766,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.8783557415008545,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.039721645414829254,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.4016635417938232,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.56258225440979,
+ "eval_runtime": 40.2416,
+ "eval_samples_per_second": 60.684,
+ "eval_steps_per_second": 0.497,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.04587586596608162,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.8849360942840576,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.045933645218610764,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.8720365762710571,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.04638395458459854,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.8566157817840576,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.045058928430080414,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.8719701766967773,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.04727335646748543,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.862802505493164,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.04480801895260811,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.8806850910186768,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.044394250959157944,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.869253396987915,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.04730968177318573,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.8577207326889038,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.04695093631744385,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.8769750595092773,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.046326130628585815,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.8785123825073242,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.04555234685540199,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.8725554943084717,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.04600582271814346,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.866944670677185,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.047153543680906296,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.8842374086380005,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.04612027481198311,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.8856291770935059,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.046780217438936234,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.8687922954559326,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.04749324172735214,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.8813189268112183,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.04665037617087364,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.8800989389419556,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.04646308720111847,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.8763478994369507,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.04771328344941139,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.8815187215805054,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.04543618485331535,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.8635611534118652,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.04651203751564026,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.8835220336914062,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.04736996814608574,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.8735085725784302,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.04747792333364487,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.8725488185882568,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.04807161167263985,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.8877787590026855,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.04677852243185043,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.8738372325897217,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.04674002155661583,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.8771154880523682,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.04732203856110573,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.8681632280349731,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.04681850224733353,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.8689024448394775,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.0475701242685318,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.854485034942627,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.04836683347821236,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.8911771774291992,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.048116907477378845,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.8842213153839111,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.048552945256233215,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.8793752193450928,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.04715408384799957,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.882337212562561,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.04756082221865654,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.8776161670684814,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.048822641372680664,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.8759829998016357,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.04774912819266319,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.876424789428711,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.04727640748023987,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.8738853931427002,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.04769284278154373,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.8824584484100342,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.046457018703222275,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.8755215406417847,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.047964878380298615,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.8781219720840454,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.048171646893024445,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.8883323669433594,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.047379788011312485,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.8814680576324463,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.04854615405201912,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.8766605854034424,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.04816821590065956,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.889110803604126,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.04919019341468811,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.877069115638733,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.04694439098238945,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.8778671026229858,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.04880919307470322,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.8846547603607178,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.04854793846607208,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.8765785694122314,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.046748582273721695,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.886781930923462,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.04887055978178978,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8989977836608887,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.04723396897315979,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.8773930072784424,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.04740145057439804,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.8844830989837646,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.04773439094424248,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.885941743850708,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.046996936202049255,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.8765010833740234,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.047432053834199905,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.88028085231781,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.04719124361872673,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.8810229301452637,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.04668697342276573,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.8809888362884521,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.047171056270599365,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.8816734552383423,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.04659772291779518,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.8802306652069092,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.04730924963951111,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.8817310333251953,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.04733939841389656,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.8873801231384277,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.046300336718559265,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.885282278060913,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.04842502623796463,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.8790912628173828,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.04681224003434181,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.8639018535614014,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.04780548810958862,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.8776453733444214,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.04874429106712341,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.8740344047546387,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.04724373295903206,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.8684015274047852,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.04648366570472717,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.8760385513305664,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.0487273670732975,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.878537893295288,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.047121427953243256,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.8744267225265503,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.04703124985098839,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.88151216506958,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.039533697068691254,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3954941034317017,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.5634603500366211,
+ "eval_runtime": 40.4405,
+ "eval_samples_per_second": 60.385,
+ "eval_steps_per_second": 0.495,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.04424447938799858,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.857087254524231,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.04616435989737511,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.8573684692382812,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.04607802629470825,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.8647383451461792,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.046404775232076645,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.8564095497131348,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.046073272824287415,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.870673656463623,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.04589724540710449,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.8656566143035889,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.04557689651846886,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.863551139831543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.04528677463531494,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.8726980686187744,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.04518650844693184,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.8608030080795288,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.045101597905159,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.8723397254943848,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.04577193036675453,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.8651150465011597,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.04554104804992676,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.868842363357544,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.04631081968545914,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.8642723560333252,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.04638633877038956,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.879462718963623,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.04831362143158913,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.8652305603027344,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.0457226000726223,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.8560177087783813,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.04682072252035141,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.8643035888671875,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.0461200475692749,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.8737964630126953,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.04666521027684212,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.8659546375274658,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.046206701546907425,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.867607831954956,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.0452481210231781,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.8645520210266113,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.04539201781153679,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.8712077140808105,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.0461915098130703,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.8585699796676636,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.04550711438059807,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.861148476600647,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.04656198248267174,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.8621909618377686,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.045940566807985306,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.8835539817810059,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.04591699317097664,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.8564835786819458,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.04533873498439789,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.8683639764785767,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.04501830413937569,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.8729286193847656,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.046648286283016205,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.8827842473983765,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.04606254771351814,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.8655245304107666,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.04632389172911644,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.855072021484375,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.046645358204841614,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.8784645795822144,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.04681893065571785,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.854441523551941,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.04625078663229942,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.8647122383117676,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.04613354429602623,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.8762892484664917,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.04709402844309807,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.8600044250488281,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.04574209824204445,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.870466947555542,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.04667045921087265,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.880115032196045,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.046597469598054886,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.861691951751709,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.046084433794021606,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.874401569366455,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.04673402011394501,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.8739302158355713,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.04635137319564819,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.8740499019622803,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.046038344502449036,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.8763980865478516,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.04640313237905502,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.8664462566375732,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.04735850170254707,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.858694314956665,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.045747581869363785,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.8658379316329956,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.047455597668886185,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.8692824840545654,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.04588734358549118,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.8633465766906738,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.04588395729660988,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.8773810863494873,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.045151300728321075,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.8701531887054443,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.046557553112506866,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.8634908199310303,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.04677796736359596,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.8754336833953857,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.045793842524290085,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.8494234085083008,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.04776719585061073,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.8638850450515747,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.04652281850576401,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.8739361763000488,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.04655012488365173,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.8665215969085693,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.04638802632689476,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.8756872415542603,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.04754665121436119,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.8617222309112549,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.04615491256117821,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.8502249717712402,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.047482844442129135,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.8753585815429688,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.04747573658823967,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.87173330783844,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.046401239931583405,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.8768082857131958,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.04762646555900574,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.9006664752960205,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.0466943122446537,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.874403476715088,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.046864643692970276,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.8817310333251953,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.047573674470186234,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.8714301586151123,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.046654365956783295,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.8701894283294678,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.04718669503927231,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.8631205558776855,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.04694142937660217,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.8714566230773926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.04527781158685684,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.8774428367614746,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.038824740797281265,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3961008787155151,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.564454197883606,
+ "eval_runtime": 41.0298,
+ "eval_samples_per_second": 59.518,
+ "eval_steps_per_second": 0.487,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.045273441821336746,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.8562266826629639,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.04486487805843353,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.847863793373108,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.04506559669971466,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.8449368476867676,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.04576808586716652,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.8547484874725342,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.04573819041252136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.8487834930419922,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.045875146985054016,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.8855187892913818,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.04527868703007698,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.8507651090621948,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.04526630416512489,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.854073405265808,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.04650398716330528,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.8605797290802002,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.04373805224895477,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.8525786399841309,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.04591311886906624,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.8643308877944946,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.04575144872069359,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.8453545570373535,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.04499814286828041,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.8434433937072754,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.04602697491645813,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.8541452884674072,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0453011728823185,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.8705689907073975,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.045442380011081696,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.8543713092803955,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.04572557657957077,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.8648017644882202,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.04642609506845474,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.8579998016357422,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.04620853066444397,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.8584175109863281,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.045815497636795044,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.8525311946868896,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.04605135694146156,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.8759641647338867,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.046593330800533295,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.8701608180999756,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.04522516578435898,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.860581874847412,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.045406781136989594,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.8480677604675293,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.04634137079119682,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.8395036458969116,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.04579410329461098,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.8447685241699219,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.046178966760635376,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.857448935508728,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.04611853137612343,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.8510942459106445,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.04615642875432968,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.8571457862854004,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.047718342393636703,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.8718993663787842,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.04689454659819603,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.8596794605255127,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.04662420228123665,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.8419709205627441,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.04593484848737717,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.8577172756195068,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.04478100687265396,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.866506576538086,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.04657815396785736,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.8815147876739502,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0467715822160244,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.8446149826049805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.04502555727958679,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.8656551837921143,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.046003151684999466,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.8393070697784424,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.047252554446458817,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.8601068258285522,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.04726157337427139,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.8633754253387451,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.04711516946554184,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.8661010265350342,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.04675743728876114,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.8634257316589355,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.04670685529708862,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.8717167377471924,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.04617537558078766,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.8575352430343628,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.04698266461491585,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.871026873588562,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.04679175093770027,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.8709101676940918,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.046020276844501495,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.8659570217132568,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.044609472155570984,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.8701958656311035,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.04686872661113739,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.8471758365631104,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.04671822115778923,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.8661935329437256,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.04792126268148422,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.8482842445373535,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.04631195589900017,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.8454066514968872,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.045949000865221024,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.8641464710235596,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.04714781418442726,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.8783040046691895,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.04625905305147171,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.8647475242614746,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.04681667312979698,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.854670763015747,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.04787219688296318,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.8676559925079346,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.04680484160780907,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.8692317008972168,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.04705028980970383,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.8703923225402832,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.04703309014439583,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.8560512065887451,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.047461897134780884,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.8604670763015747,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.04655826464295387,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.8620721101760864,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.04759373143315315,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.8544520139694214,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.048612091690301895,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.8653002977371216,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.04786037281155586,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.8577156066894531,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.047871846705675125,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.8632076978683472,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.04765869304537773,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.861595869064331,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.04793299362063408,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.8503496646881104,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.04850494861602783,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.870901346206665,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.04661532863974571,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.8583464622497559,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.04766553267836571,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.8652809858322144,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039074305444955826,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3917547464370728,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 0.5652567148208618,
+ "eval_runtime": 44.7883,
+ "eval_samples_per_second": 54.523,
+ "eval_steps_per_second": 0.447,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01393728222997,
+ "grad_norm": 0.04581065475940704,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 1.8576879501342773,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02787456445993,
+ "grad_norm": 0.04604090750217438,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 1.860574722290039,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041811846689896,
+ "grad_norm": 0.043389830738306046,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 1.8410645723342896,
+ "step": 2883
+ },
+ {
+ "epoch": 40.055749128919864,
+ "grad_norm": 0.04611266404390335,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 1.8361502885818481,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069686411149824,
+ "grad_norm": 0.04488025978207588,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 1.8595123291015625,
+ "step": 2885
+ },
+ {
+ "epoch": 40.08362369337979,
+ "grad_norm": 0.04536508396267891,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 1.8513383865356445,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09756097560975,
+ "grad_norm": 0.04426852613687515,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 1.839638352394104,
+ "step": 2887
+ },
+ {
+ "epoch": 40.11149825783972,
+ "grad_norm": 0.04593079164624214,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 1.8578227758407593,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12543554006969,
+ "grad_norm": 0.044979073107242584,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 1.8479740619659424,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13937282229965,
+ "grad_norm": 0.043976493179798126,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 1.8572100400924683,
+ "step": 2890
+ },
+ {
+ "epoch": 40.153310104529616,
+ "grad_norm": 0.04430258646607399,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 1.874776840209961,
+ "step": 2891
+ },
+ {
+ "epoch": 40.167247386759584,
+ "grad_norm": 0.04562745988368988,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 1.850245475769043,
+ "step": 2892
+ },
+ {
+ "epoch": 40.181184668989545,
+ "grad_norm": 0.045609358698129654,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 1.839333415031433,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19512195121951,
+ "grad_norm": 0.045071765780448914,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 1.8484327793121338,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20905923344948,
+ "grad_norm": 0.04535095766186714,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 1.85935378074646,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22299651567944,
+ "grad_norm": 0.04447855427861214,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 1.824277400970459,
+ "step": 2896
+ },
+ {
+ "epoch": 40.23693379790941,
+ "grad_norm": 0.046172190457582474,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 1.8522751331329346,
+ "step": 2897
+ },
+ {
+ "epoch": 40.250871080139376,
+ "grad_norm": 0.045050252228975296,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 1.8372678756713867,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26480836236934,
+ "grad_norm": 0.0454912930727005,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 1.8425825834274292,
+ "step": 2899
+ },
+ {
+ "epoch": 40.278745644599304,
+ "grad_norm": 0.04504179581999779,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 1.8535411357879639,
+ "step": 2900
+ },
+ {
+ "epoch": 40.292682926829265,
+ "grad_norm": 0.04541248828172684,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 1.8414499759674072,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30662020905923,
+ "grad_norm": 0.0445893332362175,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 1.858358383178711,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3205574912892,
+ "grad_norm": 0.04436104744672775,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 1.8480253219604492,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33449477351916,
+ "grad_norm": 0.04517560824751854,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 1.8603742122650146,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34843205574913,
+ "grad_norm": 0.04632033035159111,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 1.8452311754226685,
+ "step": 2905
+ },
+ {
+ "epoch": 40.362369337979096,
+ "grad_norm": 0.04483526945114136,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 1.8499393463134766,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37630662020906,
+ "grad_norm": 0.04684896022081375,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 1.8404357433319092,
+ "step": 2907
+ },
+ {
+ "epoch": 40.390243902439025,
+ "grad_norm": 0.04500189796090126,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 1.8502023220062256,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40418118466899,
+ "grad_norm": 0.04662676155567169,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 1.8539161682128906,
+ "step": 2909
+ },
+ {
+ "epoch": 40.41811846689895,
+ "grad_norm": 0.04650403931736946,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 1.857225775718689,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43205574912892,
+ "grad_norm": 0.045979999005794525,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 1.853894829750061,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44599303135889,
+ "grad_norm": 0.04603036493062973,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 1.8374602794647217,
+ "step": 2912
+ },
+ {
+ "epoch": 40.45993031358885,
+ "grad_norm": 0.04565034806728363,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 1.8581715822219849,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47386759581882,
+ "grad_norm": 0.04700600728392601,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 1.863142967224121,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48780487804878,
+ "grad_norm": 0.046727560460567474,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 1.8413915634155273,
+ "step": 2915
+ },
+ {
+ "epoch": 40.501742160278745,
+ "grad_norm": 0.04613753780722618,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 1.8476002216339111,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51567944250871,
+ "grad_norm": 0.046748168766498566,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 1.8631737232208252,
+ "step": 2917
+ },
+ {
+ "epoch": 40.52961672473867,
+ "grad_norm": 0.04585091769695282,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 1.8531389236450195,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54355400696864,
+ "grad_norm": 0.04741860553622246,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 1.8504502773284912,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55749128919861,
+ "grad_norm": 0.04608471691608429,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 1.8614468574523926,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57142857142857,
+ "grad_norm": 0.045783061534166336,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 1.847042202949524,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58536585365854,
+ "grad_norm": 0.046531978994607925,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 1.857452630996704,
+ "step": 2922
+ },
+ {
+ "epoch": 40.599303135888505,
+ "grad_norm": 0.045963630080223083,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 1.8329434394836426,
+ "step": 2923
+ },
+ {
+ "epoch": 40.613240418118465,
+ "grad_norm": 0.047076087445020676,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 1.8511266708374023,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62717770034843,
+ "grad_norm": 0.04569230228662491,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 1.848214864730835,
+ "step": 2925
+ },
+ {
+ "epoch": 40.641114982578394,
+ "grad_norm": 0.04599694907665253,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 1.8513484001159668,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65505226480836,
+ "grad_norm": 0.04567144811153412,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 1.852655053138733,
+ "step": 2927
+ },
+ {
+ "epoch": 40.66898954703833,
+ "grad_norm": 0.04657620191574097,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 1.8545030355453491,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68292682926829,
+ "grad_norm": 0.04635767266154289,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 1.8457564115524292,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69686411149826,
+ "grad_norm": 0.04688902199268341,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 1.8710882663726807,
+ "step": 2930
+ },
+ {
+ "epoch": 40.710801393728225,
+ "grad_norm": 0.046263087540864944,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 1.8523743152618408,
+ "step": 2931
+ },
+ {
+ "epoch": 40.724738675958186,
+ "grad_norm": 0.04730024188756943,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 1.8681535720825195,
+ "step": 2932
+ },
+ {
+ "epoch": 40.73867595818815,
+ "grad_norm": 0.046389758586883545,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 1.8416533470153809,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75261324041812,
+ "grad_norm": 0.04619358852505684,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 1.8427306413650513,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76655052264808,
+ "grad_norm": 0.04706164449453354,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 1.8589917421340942,
+ "step": 2935
+ },
+ {
+ "epoch": 40.78048780487805,
+ "grad_norm": 0.04530758410692215,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 1.8476457595825195,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79442508710802,
+ "grad_norm": 0.0465627983212471,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 1.857927680015564,
+ "step": 2937
+ },
+ {
+ "epoch": 40.80836236933798,
+ "grad_norm": 0.04658791050314903,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 1.8649942874908447,
+ "step": 2938
+ },
+ {
+ "epoch": 40.822299651567945,
+ "grad_norm": 0.04632649943232536,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 1.8567063808441162,
+ "step": 2939
+ },
+ {
+ "epoch": 40.836236933797906,
+ "grad_norm": 0.046698298305273056,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 1.8344563245773315,
+ "step": 2940
+ },
+ {
+ "epoch": 40.850174216027874,
+ "grad_norm": 0.04579460620880127,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 1.8580782413482666,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86411149825784,
+ "grad_norm": 0.04626711830496788,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 1.8724932670593262,
+ "step": 2942
+ },
+ {
+ "epoch": 40.8780487804878,
+ "grad_norm": 0.04788089543581009,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 1.8562324047088623,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89198606271777,
+ "grad_norm": 0.04617566615343094,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 1.8600659370422363,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90592334494774,
+ "grad_norm": 0.04684928432106972,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 1.8548005819320679,
+ "step": 2945
+ },
+ {
+ "epoch": 40.9198606271777,
+ "grad_norm": 0.046167418360710144,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 1.8505282402038574,
+ "step": 2946
+ },
+ {
+ "epoch": 40.933797909407666,
+ "grad_norm": 0.04595042020082474,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 1.8442347049713135,
+ "step": 2947
+ },
+ {
+ "epoch": 40.94773519163763,
+ "grad_norm": 0.04705922678112984,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 1.8773528337478638,
+ "step": 2948
+ },
+ {
+ "epoch": 40.961672473867594,
+ "grad_norm": 0.04602619260549545,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 1.8423988819122314,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97560975609756,
+ "grad_norm": 0.046535808593034744,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 1.8612971305847168,
+ "step": 2950
+ },
+ {
+ "epoch": 40.98954703832753,
+ "grad_norm": 0.04720211401581764,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 1.8486204147338867,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03822942450642586,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 1.3866174221038818,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 0.5661606192588806,
+ "eval_runtime": 45.637,
+ "eval_samples_per_second": 53.509,
+ "eval_steps_per_second": 0.438,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01393728222997,
+ "grad_norm": 0.043283119797706604,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 1.8436756134033203,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02787456445993,
+ "grad_norm": 0.04369339346885681,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 1.8353145122528076,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041811846689896,
+ "grad_norm": 0.04360329359769821,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 1.8567733764648438,
+ "step": 2955
+ },
+ {
+ "epoch": 41.055749128919864,
+ "grad_norm": 0.043255530297756195,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 1.8404110670089722,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069686411149824,
+ "grad_norm": 0.04273942485451698,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 1.8405885696411133,
+ "step": 2957
+ },
+ {
+ "epoch": 41.08362369337979,
+ "grad_norm": 0.042693208903074265,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 1.8433363437652588,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09756097560975,
+ "grad_norm": 0.043486230075359344,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 1.861177921295166,
+ "step": 2959
+ },
+ {
+ "epoch": 41.11149825783972,
+ "grad_norm": 0.043162327259778976,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 1.8321999311447144,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12543554006969,
+ "grad_norm": 0.04251302778720856,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 1.8236079216003418,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13937282229965,
+ "grad_norm": 0.042925577610731125,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 1.8445379734039307,
+ "step": 2962
+ },
+ {
+ "epoch": 41.153310104529616,
+ "grad_norm": 0.043494079262018204,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 1.836974859237671,
+ "step": 2963
+ },
+ {
+ "epoch": 41.167247386759584,
+ "grad_norm": 0.04464002326130867,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 1.8345468044281006,
+ "step": 2964
+ },
+ {
+ "epoch": 41.181184668989545,
+ "grad_norm": 0.04361235350370407,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 1.827946424484253,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19512195121951,
+ "grad_norm": 0.04371578246355057,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 1.8348188400268555,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20905923344948,
+ "grad_norm": 0.04279749467968941,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 1.8443548679351807,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22299651567944,
+ "grad_norm": 0.043772123754024506,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 1.851645588874817,
+ "step": 2968
+ },
+ {
+ "epoch": 41.23693379790941,
+ "grad_norm": 0.044871680438518524,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 1.8620007038116455,
+ "step": 2969
+ },
+ {
+ "epoch": 41.250871080139376,
+ "grad_norm": 0.04412626475095749,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 1.8353114128112793,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26480836236934,
+ "grad_norm": 0.04473226144909859,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 1.8540171384811401,
+ "step": 2971
+ },
+ {
+ "epoch": 41.278745644599304,
+ "grad_norm": 0.04381468519568443,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 1.8486981391906738,
+ "step": 2972
+ },
+ {
+ "epoch": 41.292682926829265,
+ "grad_norm": 0.044379618018865585,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 1.8348345756530762,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30662020905923,
+ "grad_norm": 0.04532220959663391,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 1.8499282598495483,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3205574912892,
+ "grad_norm": 0.04509032890200615,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 1.8378188610076904,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33449477351916,
+ "grad_norm": 0.044669464230537415,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 1.8504490852355957,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34843205574913,
+ "grad_norm": 0.04408831521868706,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 1.8496140241622925,
+ "step": 2977
+ },
+ {
+ "epoch": 41.362369337979096,
+ "grad_norm": 0.04405682161450386,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 1.8265156745910645,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37630662020906,
+ "grad_norm": 0.0449211560189724,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 1.8349684476852417,
+ "step": 2979
+ },
+ {
+ "epoch": 41.390243902439025,
+ "grad_norm": 0.04524354636669159,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 1.8338544368743896,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40418118466899,
+ "grad_norm": 0.04570724070072174,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 1.8393343687057495,
+ "step": 2981
+ },
+ {
+ "epoch": 41.41811846689895,
+ "grad_norm": 0.044838614761829376,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 1.839355230331421,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43205574912892,
+ "grad_norm": 0.04447508975863457,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 1.850361704826355,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44599303135889,
+ "grad_norm": 0.04565313830971718,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 1.8427982330322266,
+ "step": 2984
+ },
+ {
+ "epoch": 41.45993031358885,
+ "grad_norm": 0.045442406088113785,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 1.8470102548599243,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47386759581882,
+ "grad_norm": 0.04505537077784538,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 1.8490915298461914,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48780487804878,
+ "grad_norm": 0.04411616921424866,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 1.8453279733657837,
+ "step": 2987
+ },
+ {
+ "epoch": 41.501742160278745,
+ "grad_norm": 0.045155517756938934,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 1.8424794673919678,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51567944250871,
+ "grad_norm": 0.04467189684510231,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 1.8279569149017334,
+ "step": 2989
+ },
+ {
+ "epoch": 41.52961672473867,
+ "grad_norm": 0.04471253976225853,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 1.8532087802886963,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54355400696864,
+ "grad_norm": 0.04528309404850006,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 1.8601353168487549,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55749128919861,
+ "grad_norm": 0.044879160821437836,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 1.8488407135009766,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57142857142857,
+ "grad_norm": 0.04477518051862717,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 1.8469840288162231,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58536585365854,
+ "grad_norm": 0.045121919363737106,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 1.8432965278625488,
+ "step": 2994
+ },
+ {
+ "epoch": 41.599303135888505,
+ "grad_norm": 0.0455213338136673,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 1.8416352272033691,
+ "step": 2995
+ },
+ {
+ "epoch": 41.613240418118465,
+ "grad_norm": 0.045097120106220245,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 1.8244754076004028,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62717770034843,
+ "grad_norm": 0.045695506036281586,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 1.8472155332565308,
+ "step": 2997
+ },
+ {
+ "epoch": 41.641114982578394,
+ "grad_norm": 0.04512687399983406,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 1.8457170724868774,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65505226480836,
+ "grad_norm": 0.04511284828186035,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 1.8473683595657349,
+ "step": 2999
+ },
+ {
+ "epoch": 41.66898954703833,
+ "grad_norm": 0.04571816325187683,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 1.8575892448425293,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68292682926829,
+ "grad_norm": 0.04539170488715172,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 1.8518251180648804,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69686411149826,
+ "grad_norm": 0.045744556933641434,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 1.8498783111572266,
+ "step": 3002
+ },
+ {
+ "epoch": 41.710801393728225,
+ "grad_norm": 0.04591347649693489,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 1.8562829494476318,
+ "step": 3003
+ },
+ {
+ "epoch": 41.724738675958186,
+ "grad_norm": 0.04476889595389366,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 1.844900131225586,
+ "step": 3004
+ },
+ {
+ "epoch": 41.73867595818815,
+ "grad_norm": 0.04576639086008072,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 1.851822853088379,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75261324041812,
+ "grad_norm": 0.0454561747610569,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 1.8366072177886963,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76655052264808,
+ "grad_norm": 0.04497859627008438,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 1.8351812362670898,
+ "step": 3007
+ },
+ {
+ "epoch": 41.78048780487805,
+ "grad_norm": 0.04735438898205757,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 1.8487967252731323,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79442508710802,
+ "grad_norm": 0.04591703414916992,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 1.8630578517913818,
+ "step": 3009
+ },
+ {
+ "epoch": 41.80836236933798,
+ "grad_norm": 0.045530978590250015,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 1.8396573066711426,
+ "step": 3010
+ },
+ {
+ "epoch": 41.822299651567945,
+ "grad_norm": 0.04629819467663765,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 1.85617196559906,
+ "step": 3011
+ },
+ {
+ "epoch": 41.836236933797906,
+ "grad_norm": 0.04543247073888779,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 1.8447198867797852,
+ "step": 3012
+ },
+ {
+ "epoch": 41.850174216027874,
+ "grad_norm": 0.04568076133728027,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 1.8438677787780762,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86411149825784,
+ "grad_norm": 0.04532733932137489,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 1.8392868041992188,
+ "step": 3014
+ },
+ {
+ "epoch": 41.8780487804878,
+ "grad_norm": 0.04588212072849274,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 1.8385963439941406,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89198606271777,
+ "grad_norm": 0.04528142139315605,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 1.8491675853729248,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90592334494774,
+ "grad_norm": 0.0453830361366272,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 1.8378946781158447,
+ "step": 3017
+ },
+ {
+ "epoch": 41.9198606271777,
+ "grad_norm": 0.04505406320095062,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 1.8556562662124634,
+ "step": 3018
+ },
+ {
+ "epoch": 41.933797909407666,
+ "grad_norm": 0.0457124337553978,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 1.8567328453063965,
+ "step": 3019
+ },
+ {
+ "epoch": 41.94773519163763,
+ "grad_norm": 0.0463649146258831,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 1.8532863855361938,
+ "step": 3020
+ },
+ {
+ "epoch": 41.961672473867594,
+ "grad_norm": 0.04467569664120674,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 1.8407166004180908,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97560975609756,
+ "grad_norm": 0.046316634863615036,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 1.838756799697876,
+ "step": 3022
+ },
+ {
+ "epoch": 41.98954703832753,
+ "grad_norm": 0.04641919583082199,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 1.843226671218872,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.03849948197603226,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 1.3771156072616577,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 0.5671271085739136,
+ "eval_runtime": 41.0853,
+ "eval_samples_per_second": 59.437,
+ "eval_steps_per_second": 0.487,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01393728222997,
+ "grad_norm": 0.043033167719841,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 1.859142541885376,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02787456445993,
+ "grad_norm": 0.04264276847243309,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 1.8393397331237793,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041811846689896,
+ "grad_norm": 0.0429818220436573,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 1.8451480865478516,
+ "step": 3027
+ },
+ {
+ "epoch": 42.055749128919864,
+ "grad_norm": 0.042798664420843124,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 1.821479320526123,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069686411149824,
+ "grad_norm": 0.042912937700748444,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 1.8287068605422974,
+ "step": 3029
+ },
+ {
+ "epoch": 42.08362369337979,
+ "grad_norm": 0.04305548593401909,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 1.834540843963623,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09756097560975,
+ "grad_norm": 0.042472828179597855,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 1.8312969207763672,
+ "step": 3031
+ },
+ {
+ "epoch": 42.11149825783972,
+ "grad_norm": 0.04286946728825569,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 1.838828682899475,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12543554006969,
+ "grad_norm": 0.042256396263837814,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 1.8407673835754395,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13937282229965,
+ "grad_norm": 0.04323839768767357,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 1.840158462524414,
+ "step": 3034
+ },
+ {
+ "epoch": 42.153310104529616,
+ "grad_norm": 0.04271084815263748,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 1.831402063369751,
+ "step": 3035
+ },
+ {
+ "epoch": 42.167247386759584,
+ "grad_norm": 0.04220888018608093,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 1.8363348245620728,
+ "step": 3036
+ },
+ {
+ "epoch": 42.181184668989545,
+ "grad_norm": 0.04255302995443344,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 1.8299152851104736,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19512195121951,
+ "grad_norm": 0.043367963284254074,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 1.8389928340911865,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20905923344948,
+ "grad_norm": 0.04356318712234497,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 1.8285727500915527,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22299651567944,
+ "grad_norm": 0.04307481646537781,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 1.836822748184204,
+ "step": 3040
+ },
+ {
+ "epoch": 42.23693379790941,
+ "grad_norm": 0.04301309585571289,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 1.8238312005996704,
+ "step": 3041
+ },
+ {
+ "epoch": 42.250871080139376,
+ "grad_norm": 0.04459020867943764,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 1.8265539407730103,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26480836236934,
+ "grad_norm": 0.04376321658492088,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 1.8323041200637817,
+ "step": 3043
+ },
+ {
+ "epoch": 42.278745644599304,
+ "grad_norm": 0.04337432235479355,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 1.8414857387542725,
+ "step": 3044
+ },
+ {
+ "epoch": 42.292682926829265,
+ "grad_norm": 0.0428093746304512,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 1.8486511707305908,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30662020905923,
+ "grad_norm": 0.04354057461023331,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 1.8414597511291504,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3205574912892,
+ "grad_norm": 0.04413049295544624,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 1.8411592245101929,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33449477351916,
+ "grad_norm": 0.043653059750795364,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 1.8368980884552002,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34843205574913,
+ "grad_norm": 0.044159434735774994,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 1.830837607383728,
+ "step": 3049
+ },
+ {
+ "epoch": 42.362369337979096,
+ "grad_norm": 0.04386448860168457,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 1.8371152877807617,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37630662020906,
+ "grad_norm": 0.04408277943730354,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 1.8459904193878174,
+ "step": 3051
+ },
+ {
+ "epoch": 42.390243902439025,
+ "grad_norm": 0.04339437186717987,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 1.8393545150756836,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40418118466899,
+ "grad_norm": 0.0438951700925827,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 1.8426868915557861,
+ "step": 3053
+ },
+ {
+ "epoch": 42.41811846689895,
+ "grad_norm": 0.043328989297151566,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 1.8371739387512207,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43205574912892,
+ "grad_norm": 0.04357768967747688,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 1.8241708278656006,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44599303135889,
+ "grad_norm": 0.04369310662150383,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 1.8402345180511475,
+ "step": 3056
+ },
+ {
+ "epoch": 42.45993031358885,
+ "grad_norm": 0.04351942986249924,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 1.8468050956726074,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47386759581882,
+ "grad_norm": 0.043610475957393646,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 1.8299753665924072,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48780487804878,
+ "grad_norm": 0.043054915964603424,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 1.8180890083312988,
+ "step": 3059
+ },
+ {
+ "epoch": 42.501742160278745,
+ "grad_norm": 0.04340444505214691,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 1.8330085277557373,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51567944250871,
+ "grad_norm": 0.04379405826330185,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 1.8336195945739746,
+ "step": 3061
+ },
+ {
+ "epoch": 42.52961672473867,
+ "grad_norm": 0.04441037401556969,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 1.8209092617034912,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54355400696864,
+ "grad_norm": 0.04327032342553139,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 1.8422727584838867,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55749128919861,
+ "grad_norm": 0.04349714145064354,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 1.837844967842102,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57142857142857,
+ "grad_norm": 0.04442324489355087,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 1.8405824899673462,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58536585365854,
+ "grad_norm": 0.04327923804521561,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 1.8318226337432861,
+ "step": 3066
+ },
+ {
+ "epoch": 42.599303135888505,
+ "grad_norm": 0.04397011175751686,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 1.8401890993118286,
+ "step": 3067
+ },
+ {
+ "epoch": 42.613240418118465,
+ "grad_norm": 0.04364022985100746,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 1.8424272537231445,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62717770034843,
+ "grad_norm": 0.0444519929587841,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 1.8474915027618408,
+ "step": 3069
+ },
+ {
+ "epoch": 42.641114982578394,
+ "grad_norm": 0.04536392167210579,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 1.8506238460540771,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65505226480836,
+ "grad_norm": 0.04419903829693794,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 1.829318881034851,
+ "step": 3071
+ },
+ {
+ "epoch": 42.66898954703833,
+ "grad_norm": 0.04335397854447365,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 1.8465934991836548,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68292682926829,
+ "grad_norm": 0.04473445937037468,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 1.8495752811431885,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69686411149826,
+ "grad_norm": 0.04403151199221611,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 1.8424298763275146,
+ "step": 3074
+ },
+ {
+ "epoch": 42.710801393728225,
+ "grad_norm": 0.04413284733891487,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 1.8399462699890137,
+ "step": 3075
+ },
+ {
+ "epoch": 42.724738675958186,
+ "grad_norm": 0.04536854103207588,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 1.8377766609191895,
+ "step": 3076
+ },
+ {
+ "epoch": 42.73867595818815,
+ "grad_norm": 0.044716671109199524,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 1.852107048034668,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75261324041812,
+ "grad_norm": 0.04425983875989914,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 1.8261748552322388,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76655052264808,
+ "grad_norm": 0.044471606612205505,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 1.8378055095672607,
+ "step": 3079
+ },
+ {
+ "epoch": 42.78048780487805,
+ "grad_norm": 0.04529954120516777,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 1.8272700309753418,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79442508710802,
+ "grad_norm": 0.0445031002163887,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 1.840920090675354,
+ "step": 3081
+ },
+ {
+ "epoch": 42.80836236933798,
+ "grad_norm": 0.04563571512699127,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 1.8449896574020386,
+ "step": 3082
+ },
+ {
+ "epoch": 42.822299651567945,
+ "grad_norm": 0.04528859630227089,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 1.8387556076049805,
+ "step": 3083
+ },
+ {
+ "epoch": 42.836236933797906,
+ "grad_norm": 0.04515692964196205,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 1.8260384798049927,
+ "step": 3084
+ },
+ {
+ "epoch": 42.850174216027874,
+ "grad_norm": 0.044755179435014725,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 1.8353691101074219,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86411149825784,
+ "grad_norm": 0.043564774096012115,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 1.8313343524932861,
+ "step": 3086
+ },
+ {
+ "epoch": 42.8780487804878,
+ "grad_norm": 0.04526788368821144,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 1.838407039642334,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89198606271777,
+ "grad_norm": 0.044409558176994324,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 1.8428899049758911,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90592334494774,
+ "grad_norm": 0.044329989701509476,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 1.8307888507843018,
+ "step": 3089
+ },
+ {
+ "epoch": 42.9198606271777,
+ "grad_norm": 0.04492166265845299,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 1.8467289209365845,
+ "step": 3090
+ },
+ {
+ "epoch": 42.933797909407666,
+ "grad_norm": 0.044873740524053574,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 1.849194884300232,
+ "step": 3091
+ },
+ {
+ "epoch": 42.94773519163763,
+ "grad_norm": 0.043883100152015686,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 1.8298711776733398,
+ "step": 3092
+ },
+ {
+ "epoch": 42.961672473867594,
+ "grad_norm": 0.04485436901450157,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 1.8333513736724854,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97560975609756,
+ "grad_norm": 0.0442371666431427,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 1.842345118522644,
+ "step": 3094
+ },
+ {
+ "epoch": 42.98954703832753,
+ "grad_norm": 0.0444684699177742,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 1.8418967723846436,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.037779301404953,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 1.3890820741653442,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 0.568034827709198,
+ "eval_runtime": 40.6911,
+ "eval_samples_per_second": 60.013,
+ "eval_steps_per_second": 0.492,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01393728222997,
+ "grad_norm": 0.041755788028240204,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 1.8242251873016357,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02787456445993,
+ "grad_norm": 0.04130164906382561,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 1.8275182247161865,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041811846689896,
+ "grad_norm": 0.04172128438949585,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 1.8375258445739746,
+ "step": 3099
+ },
+ {
+ "epoch": 43.055749128919864,
+ "grad_norm": 0.041675738990306854,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 1.8304169178009033,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069686411149824,
+ "grad_norm": 0.04046240448951721,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 1.819670557975769,
+ "step": 3101
+ },
+ {
+ "epoch": 43.08362369337979,
+ "grad_norm": 0.043102554976940155,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 1.8364059925079346,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09756097560975,
+ "grad_norm": 0.04226138815283775,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 1.8402340412139893,
+ "step": 3103
+ },
+ {
+ "epoch": 43.11149825783972,
+ "grad_norm": 0.04109962284564972,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 1.8291298151016235,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12543554006969,
+ "grad_norm": 0.041706398129463196,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 1.815910816192627,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13937282229965,
+ "grad_norm": 0.04183833301067352,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 1.8370800018310547,
+ "step": 3106
+ },
+ {
+ "epoch": 43.153310104529616,
+ "grad_norm": 0.042008765041828156,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 1.8254024982452393,
+ "step": 3107
+ },
+ {
+ "epoch": 43.167247386759584,
+ "grad_norm": 0.041388146579265594,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 1.8285032510757446,
+ "step": 3108
+ },
+ {
+ "epoch": 43.181184668989545,
+ "grad_norm": 0.04239530488848686,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 1.8442203998565674,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19512195121951,
+ "grad_norm": 0.04213891178369522,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 1.8368709087371826,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20905923344948,
+ "grad_norm": 0.0414174422621727,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 1.8290977478027344,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22299651567944,
+ "grad_norm": 0.04276357963681221,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 1.8521924018859863,
+ "step": 3112
+ },
+ {
+ "epoch": 43.23693379790941,
+ "grad_norm": 0.04216967895627022,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 1.8426485061645508,
+ "step": 3113
+ },
+ {
+ "epoch": 43.250871080139376,
+ "grad_norm": 0.041897550225257874,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 1.8292419910430908,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26480836236934,
+ "grad_norm": 0.042900241911411285,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 1.8384134769439697,
+ "step": 3115
+ },
+ {
+ "epoch": 43.278745644599304,
+ "grad_norm": 0.04171181097626686,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 1.8256819248199463,
+ "step": 3116
+ },
+ {
+ "epoch": 43.292682926829265,
+ "grad_norm": 0.042783740907907486,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 1.8219621181488037,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30662020905923,
+ "grad_norm": 0.0425715297460556,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 1.8290386199951172,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3205574912892,
+ "grad_norm": 0.041529279202222824,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 1.809150218963623,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33449477351916,
+ "grad_norm": 0.04237184301018715,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 1.8306704759597778,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34843205574913,
+ "grad_norm": 0.04296001046895981,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 1.8338277339935303,
+ "step": 3121
+ },
+ {
+ "epoch": 43.362369337979096,
+ "grad_norm": 0.043587733060121536,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 1.8377881050109863,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37630662020906,
+ "grad_norm": 0.04307651147246361,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 1.8373091220855713,
+ "step": 3123
+ },
+ {
+ "epoch": 43.390243902439025,
+ "grad_norm": 0.04286980628967285,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 1.8166065216064453,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40418118466899,
+ "grad_norm": 0.041704170405864716,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 1.822685956954956,
+ "step": 3125
+ },
+ {
+ "epoch": 43.41811846689895,
+ "grad_norm": 0.0430915392935276,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 1.8373184204101562,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43205574912892,
+ "grad_norm": 0.043403565883636475,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 1.83347487449646,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44599303135889,
+ "grad_norm": 0.04228387773036957,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 1.8338899612426758,
+ "step": 3128
+ },
+ {
+ "epoch": 43.45993031358885,
+ "grad_norm": 0.04362794756889343,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 1.8204160928726196,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47386759581882,
+ "grad_norm": 0.043391771614551544,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 1.8214062452316284,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48780487804878,
+ "grad_norm": 0.042706526815891266,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 1.8245747089385986,
+ "step": 3131
+ },
+ {
+ "epoch": 43.501742160278745,
+ "grad_norm": 0.04246161878108978,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 1.8324651718139648,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51567944250871,
+ "grad_norm": 0.04267415031790733,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 1.8303415775299072,
+ "step": 3133
+ },
+ {
+ "epoch": 43.52961672473867,
+ "grad_norm": 0.04291039705276489,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 1.8433070182800293,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54355400696864,
+ "grad_norm": 0.04282749071717262,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 1.8245047330856323,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55749128919861,
+ "grad_norm": 0.04216161370277405,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 1.8312617540359497,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57142857142857,
+ "grad_norm": 0.043468136340379715,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 1.8443996906280518,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58536585365854,
+ "grad_norm": 0.042424485087394714,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 1.8224906921386719,
+ "step": 3138
+ },
+ {
+ "epoch": 43.599303135888505,
+ "grad_norm": 0.04219109192490578,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 1.8375517129898071,
+ "step": 3139
+ },
+ {
+ "epoch": 43.613240418118465,
+ "grad_norm": 0.04363148286938667,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 1.8292778730392456,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62717770034843,
+ "grad_norm": 0.04349498078227043,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 1.8259801864624023,
+ "step": 3141
+ },
+ {
+ "epoch": 43.641114982578394,
+ "grad_norm": 0.04312172532081604,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 1.8397953510284424,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65505226480836,
+ "grad_norm": 0.041848644614219666,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 1.8278770446777344,
+ "step": 3143
+ },
+ {
+ "epoch": 43.66898954703833,
+ "grad_norm": 0.04276103526353836,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 1.841288685798645,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68292682926829,
+ "grad_norm": 0.04220271110534668,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 1.8277270793914795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69686411149826,
+ "grad_norm": 0.042644038796424866,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 1.838760495185852,
+ "step": 3146
+ },
+ {
+ "epoch": 43.710801393728225,
+ "grad_norm": 0.04334203898906708,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 1.824927568435669,
+ "step": 3147
+ },
+ {
+ "epoch": 43.724738675958186,
+ "grad_norm": 0.043542634695768356,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 1.8389196395874023,
+ "step": 3148
+ },
+ {
+ "epoch": 43.73867595818815,
+ "grad_norm": 0.04350470006465912,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 1.831343412399292,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75261324041812,
+ "grad_norm": 0.04323652759194374,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 1.8332481384277344,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76655052264808,
+ "grad_norm": 0.04270172491669655,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 1.8313982486724854,
+ "step": 3151
+ },
+ {
+ "epoch": 43.78048780487805,
+ "grad_norm": 0.04284636303782463,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 1.8393759727478027,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79442508710802,
+ "grad_norm": 0.04346014931797981,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 1.8414231538772583,
+ "step": 3153
+ },
+ {
+ "epoch": 43.80836236933798,
+ "grad_norm": 0.04241521656513214,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 1.83127760887146,
+ "step": 3154
+ },
+ {
+ "epoch": 43.822299651567945,
+ "grad_norm": 0.0434398278594017,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 1.8269448280334473,
+ "step": 3155
+ },
+ {
+ "epoch": 43.836236933797906,
+ "grad_norm": 0.04204972833395004,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 1.8330512046813965,
+ "step": 3156
+ },
+ {
+ "epoch": 43.850174216027874,
+ "grad_norm": 0.04379865154623985,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 1.8335158824920654,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86411149825784,
+ "grad_norm": 0.042788635939359665,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 1.8349730968475342,
+ "step": 3158
+ },
+ {
+ "epoch": 43.8780487804878,
+ "grad_norm": 0.04402446001768112,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 1.8353137969970703,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89198606271777,
+ "grad_norm": 0.043420035392045975,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 1.8265647888183594,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90592334494774,
+ "grad_norm": 0.04296764358878136,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 1.825549602508545,
+ "step": 3161
+ },
+ {
+ "epoch": 43.9198606271777,
+ "grad_norm": 0.042602673172950745,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 1.816074252128601,
+ "step": 3162
+ },
+ {
+ "epoch": 43.933797909407666,
+ "grad_norm": 0.042352914810180664,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 1.806208848953247,
+ "step": 3163
+ },
+ {
+ "epoch": 43.94773519163763,
+ "grad_norm": 0.04364747554063797,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 1.8404154777526855,
+ "step": 3164
+ },
+ {
+ "epoch": 43.961672473867594,
+ "grad_norm": 0.04315781593322754,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 1.8351466655731201,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97560975609756,
+ "grad_norm": 0.04377793148159981,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 1.82896089553833,
+ "step": 3166
+ },
+ {
+ "epoch": 43.98954703832753,
+ "grad_norm": 0.042686767876148224,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 1.831189751625061,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.035291463136672974,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 1.378066062927246,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 0.5686545968055725,
+ "eval_runtime": 40.4531,
+ "eval_samples_per_second": 60.366,
+ "eval_steps_per_second": 0.494,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01393728222997,
+ "grad_norm": 0.04012283682823181,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 1.8265893459320068,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02787456445993,
+ "grad_norm": 0.04090325906872749,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 1.8426353931427002,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041811846689896,
+ "grad_norm": 0.040709443390369415,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 1.818056344985962,
+ "step": 3171
+ },
+ {
+ "epoch": 44.055749128919864,
+ "grad_norm": 0.04033218324184418,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 1.831639051437378,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069686411149824,
+ "grad_norm": 0.03961346670985222,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 1.814626693725586,
+ "step": 3173
+ },
+ {
+ "epoch": 44.08362369337979,
+ "grad_norm": 0.039504192769527435,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 1.8343188762664795,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09756097560975,
+ "grad_norm": 0.040817201137542725,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 1.8264881372451782,
+ "step": 3175
+ },
+ {
+ "epoch": 44.11149825783972,
+ "grad_norm": 0.040353622287511826,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 1.8277415037155151,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12543554006969,
+ "grad_norm": 0.03955855593085289,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 1.838287115097046,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13937282229965,
+ "grad_norm": 0.04031500965356827,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 1.839491367340088,
+ "step": 3178
+ },
+ {
+ "epoch": 44.153310104529616,
+ "grad_norm": 0.04065636917948723,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 1.8324538469314575,
+ "step": 3179
+ },
+ {
+ "epoch": 44.167247386759584,
+ "grad_norm": 0.04097805544734001,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 1.8229095935821533,
+ "step": 3180
+ },
+ {
+ "epoch": 44.181184668989545,
+ "grad_norm": 0.040136951953172684,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 1.8288922309875488,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19512195121951,
+ "grad_norm": 0.04041105881333351,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 1.8189140558242798,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20905923344948,
+ "grad_norm": 0.04008181020617485,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 1.8303568363189697,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22299651567944,
+ "grad_norm": 0.040335267782211304,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 1.8067408800125122,
+ "step": 3184
+ },
+ {
+ "epoch": 44.23693379790941,
+ "grad_norm": 0.04041079804301262,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 1.8251125812530518,
+ "step": 3185
+ },
+ {
+ "epoch": 44.250871080139376,
+ "grad_norm": 0.04136280715465546,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 1.8412597179412842,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26480836236934,
+ "grad_norm": 0.041318975389003754,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 1.8279335498809814,
+ "step": 3187
+ },
+ {
+ "epoch": 44.278745644599304,
+ "grad_norm": 0.04022998735308647,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 1.8238388299942017,
+ "step": 3188
+ },
+ {
+ "epoch": 44.292682926829265,
+ "grad_norm": 0.04024851694703102,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 1.8237464427947998,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30662020905923,
+ "grad_norm": 0.0401102639734745,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 1.8157517910003662,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3205574912892,
+ "grad_norm": 0.04096611216664314,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 1.8276509046554565,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33449477351916,
+ "grad_norm": 0.040685027837753296,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 1.8301713466644287,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34843205574913,
+ "grad_norm": 0.03960665315389633,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 1.8226325511932373,
+ "step": 3193
+ },
+ {
+ "epoch": 44.362369337979096,
+ "grad_norm": 0.04150325432419777,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 1.8439123630523682,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37630662020906,
+ "grad_norm": 0.041081447154283524,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 1.8389525413513184,
+ "step": 3195
+ },
+ {
+ "epoch": 44.390243902439025,
+ "grad_norm": 0.04033765569329262,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 1.8072166442871094,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40418118466899,
+ "grad_norm": 0.04054395109415054,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 1.805227279663086,
+ "step": 3197
+ },
+ {
+ "epoch": 44.41811846689895,
+ "grad_norm": 0.041252195835113525,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 1.82516348361969,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43205574912892,
+ "grad_norm": 0.04182847961783409,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 1.8129563331604004,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44599303135889,
+ "grad_norm": 0.04063313826918602,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 1.8264102935791016,
+ "step": 3200
+ },
+ {
+ "epoch": 44.45993031358885,
+ "grad_norm": 0.041621435433626175,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 1.8325570821762085,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47386759581882,
+ "grad_norm": 0.04100432246923447,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 1.832534670829773,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48780487804878,
+ "grad_norm": 0.04114148020744324,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 1.8242387771606445,
+ "step": 3203
+ },
+ {
+ "epoch": 44.501742160278745,
+ "grad_norm": 0.04099183529615402,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 1.8444900512695312,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51567944250871,
+ "grad_norm": 0.042078860104084015,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 1.8267149925231934,
+ "step": 3205
+ },
+ {
+ "epoch": 44.52961672473867,
+ "grad_norm": 0.041067935526371,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 1.835890769958496,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54355400696864,
+ "grad_norm": 0.041415996849536896,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 1.8300652503967285,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55749128919861,
+ "grad_norm": 0.04093599691987038,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 1.8179421424865723,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57142857142857,
+ "grad_norm": 0.04115108773112297,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 1.8296093940734863,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58536585365854,
+ "grad_norm": 0.04121313989162445,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 1.8320389986038208,
+ "step": 3210
+ },
+ {
+ "epoch": 44.599303135888505,
+ "grad_norm": 0.04163472726941109,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 1.835364580154419,
+ "step": 3211
+ },
+ {
+ "epoch": 44.613240418118465,
+ "grad_norm": 0.04068630561232567,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 1.812204122543335,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62717770034843,
+ "grad_norm": 0.041977010667324066,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 1.8214073181152344,
+ "step": 3213
+ },
+ {
+ "epoch": 44.641114982578394,
+ "grad_norm": 0.04133937135338783,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 1.8485758304595947,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65505226480836,
+ "grad_norm": 0.04129327833652496,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 1.8360936641693115,
+ "step": 3215
+ },
+ {
+ "epoch": 44.66898954703833,
+ "grad_norm": 0.04142966866493225,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 1.8329055309295654,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68292682926829,
+ "grad_norm": 0.040923792868852615,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 1.8267674446105957,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69686411149826,
+ "grad_norm": 0.0429806150496006,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 1.8320714235305786,
+ "step": 3218
+ },
+ {
+ "epoch": 44.710801393728225,
+ "grad_norm": 0.04135902598500252,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 1.8205543756484985,
+ "step": 3219
+ },
+ {
+ "epoch": 44.724738675958186,
+ "grad_norm": 0.041571829468011856,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 1.8293137550354004,
+ "step": 3220
+ },
+ {
+ "epoch": 44.73867595818815,
+ "grad_norm": 0.04200465977191925,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 1.8262722492218018,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75261324041812,
+ "grad_norm": 0.04169396683573723,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 1.8219014406204224,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76655052264808,
+ "grad_norm": 0.04217948019504547,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 1.8328770399093628,
+ "step": 3223
+ },
+ {
+ "epoch": 44.78048780487805,
+ "grad_norm": 0.04185833781957626,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 1.8211348056793213,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79442508710802,
+ "grad_norm": 0.04128005728125572,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 1.836426019668579,
+ "step": 3225
+ },
+ {
+ "epoch": 44.80836236933798,
+ "grad_norm": 0.04298657923936844,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 1.8236331939697266,
+ "step": 3226
+ },
+ {
+ "epoch": 44.822299651567945,
+ "grad_norm": 0.04233536496758461,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 1.8302421569824219,
+ "step": 3227
+ },
+ {
+ "epoch": 44.836236933797906,
+ "grad_norm": 0.0404512919485569,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 1.8221288919448853,
+ "step": 3228
+ },
+ {
+ "epoch": 44.850174216027874,
+ "grad_norm": 0.04277321696281433,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 1.8438160419464111,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86411149825784,
+ "grad_norm": 0.04114941135048866,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 1.813044548034668,
+ "step": 3230
+ },
+ {
+ "epoch": 44.8780487804878,
+ "grad_norm": 0.04186549782752991,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 1.8115606307983398,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89198606271777,
+ "grad_norm": 0.04288652166724205,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 1.8294615745544434,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90592334494774,
+ "grad_norm": 0.04122888669371605,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 1.8323924541473389,
+ "step": 3233
+ },
+ {
+ "epoch": 44.9198606271777,
+ "grad_norm": 0.04217100515961647,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 1.8310256004333496,
+ "step": 3234
+ },
+ {
+ "epoch": 44.933797909407666,
+ "grad_norm": 0.04174754023551941,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 1.8133013248443604,
+ "step": 3235
+ },
+ {
+ "epoch": 44.94773519163763,
+ "grad_norm": 0.04145873337984085,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 1.821353554725647,
+ "step": 3236
+ },
+ {
+ "epoch": 44.961672473867594,
+ "grad_norm": 0.041830070316791534,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 1.8098801374435425,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97560975609756,
+ "grad_norm": 0.04206479340791702,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 1.8126614093780518,
+ "step": 3238
+ },
+ {
+ "epoch": 44.98954703832753,
+ "grad_norm": 0.041661541908979416,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 1.834889531135559,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.03448311612010002,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 1.3827283382415771,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 0.5693315267562866,
+ "eval_runtime": 44.663,
+ "eval_samples_per_second": 54.676,
+ "eval_steps_per_second": 0.448,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01393728222997,
+ "grad_norm": 0.03804962709546089,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 1.8160731792449951,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02787456445993,
+ "grad_norm": 0.038541555404663086,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 1.8115675449371338,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041811846689896,
+ "grad_norm": 0.03854883834719658,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 1.8275638818740845,
+ "step": 3243
+ },
+ {
+ "epoch": 45.055749128919864,
+ "grad_norm": 0.039343953132629395,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 1.8255051374435425,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069686411149824,
+ "grad_norm": 0.03887559846043587,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 1.8165631294250488,
+ "step": 3245
+ },
+ {
+ "epoch": 45.08362369337979,
+ "grad_norm": 0.037434209138154984,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 1.800934076309204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09756097560975,
+ "grad_norm": 0.039692964404821396,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 1.8156676292419434,
+ "step": 3247
+ },
+ {
+ "epoch": 45.11149825783972,
+ "grad_norm": 0.03872457146644592,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 1.8144007921218872,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12543554006969,
+ "grad_norm": 0.039204299449920654,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 1.8212580680847168,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13937282229965,
+ "grad_norm": 0.03880956396460533,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 1.8254890441894531,
+ "step": 3250
+ },
+ {
+ "epoch": 45.153310104529616,
+ "grad_norm": 0.03808530792593956,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 1.8107939958572388,
+ "step": 3251
+ },
+ {
+ "epoch": 45.167247386759584,
+ "grad_norm": 0.0385596863925457,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 1.8174121379852295,
+ "step": 3252
+ },
+ {
+ "epoch": 45.181184668989545,
+ "grad_norm": 0.03879447653889656,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 1.8203976154327393,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19512195121951,
+ "grad_norm": 0.039234139025211334,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 1.8293979167938232,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20905923344948,
+ "grad_norm": 0.038931410759687424,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 1.8315434455871582,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22299651567944,
+ "grad_norm": 0.03932173550128937,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 1.841637372970581,
+ "step": 3256
+ },
+ {
+ "epoch": 45.23693379790941,
+ "grad_norm": 0.039927590638399124,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 1.8218448162078857,
+ "step": 3257
+ },
+ {
+ "epoch": 45.250871080139376,
+ "grad_norm": 0.03933421149849892,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 1.8131401538848877,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26480836236934,
+ "grad_norm": 0.03989296406507492,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 1.8303776979446411,
+ "step": 3259
+ },
+ {
+ "epoch": 45.278745644599304,
+ "grad_norm": 0.03908485546708107,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 1.8149232864379883,
+ "step": 3260
+ },
+ {
+ "epoch": 45.292682926829265,
+ "grad_norm": 0.04010489210486412,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 1.833211064338684,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30662020905923,
+ "grad_norm": 0.038881924003362656,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 1.8228731155395508,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3205574912892,
+ "grad_norm": 0.038621384650468826,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 1.8206193447113037,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33449477351916,
+ "grad_norm": 0.04007110744714737,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 1.8334887027740479,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34843205574913,
+ "grad_norm": 0.039445661008358,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 1.8256685733795166,
+ "step": 3265
+ },
+ {
+ "epoch": 45.362369337979096,
+ "grad_norm": 0.039494067430496216,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 1.8400928974151611,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37630662020906,
+ "grad_norm": 0.040508098900318146,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 1.8301441669464111,
+ "step": 3267
+ },
+ {
+ "epoch": 45.390243902439025,
+ "grad_norm": 0.03979017958045006,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 1.819502830505371,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40418118466899,
+ "grad_norm": 0.039606064558029175,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 1.8092172145843506,
+ "step": 3269
+ },
+ {
+ "epoch": 45.41811846689895,
+ "grad_norm": 0.0389973483979702,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 1.8205041885375977,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43205574912892,
+ "grad_norm": 0.03953901678323746,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 1.8137129545211792,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44599303135889,
+ "grad_norm": 0.03977903723716736,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 1.820631742477417,
+ "step": 3272
+ },
+ {
+ "epoch": 45.45993031358885,
+ "grad_norm": 0.041030652821063995,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 1.8384974002838135,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47386759581882,
+ "grad_norm": 0.039959415793418884,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 1.821049690246582,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48780487804878,
+ "grad_norm": 0.03957919776439667,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 1.8212099075317383,
+ "step": 3275
+ },
+ {
+ "epoch": 45.501742160278745,
+ "grad_norm": 0.039428792893886566,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 1.8184154033660889,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51567944250871,
+ "grad_norm": 0.03976895660161972,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 1.8303883075714111,
+ "step": 3277
+ },
+ {
+ "epoch": 45.52961672473867,
+ "grad_norm": 0.04005315527319908,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 1.8244171142578125,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54355400696864,
+ "grad_norm": 0.03982092812657356,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 1.8125770092010498,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55749128919861,
+ "grad_norm": 0.039305951446294785,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 1.8318464756011963,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57142857142857,
+ "grad_norm": 0.0402311310172081,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 1.824058175086975,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58536585365854,
+ "grad_norm": 0.03971250727772713,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 1.8198316097259521,
+ "step": 3282
+ },
+ {
+ "epoch": 45.599303135888505,
+ "grad_norm": 0.0397382415831089,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 1.821345567703247,
+ "step": 3283
+ },
+ {
+ "epoch": 45.613240418118465,
+ "grad_norm": 0.03970851004123688,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 1.83242928981781,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62717770034843,
+ "grad_norm": 0.03909887745976448,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 1.817423939704895,
+ "step": 3285
+ },
+ {
+ "epoch": 45.641114982578394,
+ "grad_norm": 0.04093371704220772,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 1.813448429107666,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65505226480836,
+ "grad_norm": 0.04021591320633888,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 1.8159441947937012,
+ "step": 3287
+ },
+ {
+ "epoch": 45.66898954703833,
+ "grad_norm": 0.040896277874708176,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 1.8356300592422485,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68292682926829,
+ "grad_norm": 0.040645867586135864,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 1.8241701126098633,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69686411149826,
+ "grad_norm": 0.04032387584447861,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 1.8330373764038086,
+ "step": 3290
+ },
+ {
+ "epoch": 45.710801393728225,
+ "grad_norm": 0.040198881179094315,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 1.8327387571334839,
+ "step": 3291
+ },
+ {
+ "epoch": 45.724738675958186,
+ "grad_norm": 0.04018297791481018,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 1.817549228668213,
+ "step": 3292
+ },
+ {
+ "epoch": 45.73867595818815,
+ "grad_norm": 0.03940814733505249,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 1.8228228092193604,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75261324041812,
+ "grad_norm": 0.04110323265194893,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 1.8279823064804077,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76655052264808,
+ "grad_norm": 0.040439825505018234,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 1.8036093711853027,
+ "step": 3295
+ },
+ {
+ "epoch": 45.78048780487805,
+ "grad_norm": 0.03988172113895416,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 1.8199386596679688,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79442508710802,
+ "grad_norm": 0.03971834480762482,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 1.816101312637329,
+ "step": 3297
+ },
+ {
+ "epoch": 45.80836236933798,
+ "grad_norm": 0.040226664394140244,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 1.8286610841751099,
+ "step": 3298
+ },
+ {
+ "epoch": 45.822299651567945,
+ "grad_norm": 0.03930222988128662,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 1.8172610998153687,
+ "step": 3299
+ },
+ {
+ "epoch": 45.836236933797906,
+ "grad_norm": 0.039948876947164536,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 1.8122256994247437,
+ "step": 3300
+ },
+ {
+ "epoch": 45.850174216027874,
+ "grad_norm": 0.03986191377043724,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 1.8269010782241821,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86411149825784,
+ "grad_norm": 0.04030618816614151,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 1.8224823474884033,
+ "step": 3302
+ },
+ {
+ "epoch": 45.8780487804878,
+ "grad_norm": 0.0404990129172802,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 1.8138632774353027,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89198606271777,
+ "grad_norm": 0.040071625262498856,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 1.8431313037872314,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90592334494774,
+ "grad_norm": 0.040142692625522614,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 1.8242772817611694,
+ "step": 3305
+ },
+ {
+ "epoch": 45.9198606271777,
+ "grad_norm": 0.04010387882590294,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 1.827866792678833,
+ "step": 3306
+ },
+ {
+ "epoch": 45.933797909407666,
+ "grad_norm": 0.040700338780879974,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 1.8090819120407104,
+ "step": 3307
+ },
+ {
+ "epoch": 45.94773519163763,
+ "grad_norm": 0.04036854952573776,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 1.8162214756011963,
+ "step": 3308
+ },
+ {
+ "epoch": 45.961672473867594,
+ "grad_norm": 0.04096735268831253,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 1.8477994203567505,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97560975609756,
+ "grad_norm": 0.04013029485940933,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 1.8104116916656494,
+ "step": 3310
+ },
+ {
+ "epoch": 45.98954703832753,
+ "grad_norm": 0.04097399488091469,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 1.8198802471160889,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.03355666249990463,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 1.3586153984069824,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 0.569923996925354,
+ "eval_runtime": 40.6198,
+ "eval_samples_per_second": 60.119,
+ "eval_steps_per_second": 0.492,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01393728222997,
+ "grad_norm": 0.03831125795841217,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 1.808218240737915,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02787456445993,
+ "grad_norm": 0.03766558691859245,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 1.8259367942810059,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041811846689896,
+ "grad_norm": 0.036555513739585876,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 1.8125407695770264,
+ "step": 3315
+ },
+ {
+ "epoch": 46.055749128919864,
+ "grad_norm": 0.03666675090789795,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 1.8213353157043457,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069686411149824,
+ "grad_norm": 0.037818584591150284,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 1.826871633529663,
+ "step": 3317
+ },
+ {
+ "epoch": 46.08362369337979,
+ "grad_norm": 0.0379820354282856,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 1.8245735168457031,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09756097560975,
+ "grad_norm": 0.03813442587852478,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 1.8237528800964355,
+ "step": 3319
+ },
+ {
+ "epoch": 46.11149825783972,
+ "grad_norm": 0.03853726014494896,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 1.820004940032959,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12543554006969,
+ "grad_norm": 0.03758777678012848,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 1.7936739921569824,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13937282229965,
+ "grad_norm": 0.0373636931180954,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 1.836148738861084,
+ "step": 3322
+ },
+ {
+ "epoch": 46.153310104529616,
+ "grad_norm": 0.037076495587825775,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 1.821706771850586,
+ "step": 3323
+ },
+ {
+ "epoch": 46.167247386759584,
+ "grad_norm": 0.03720506280660629,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 1.8140407800674438,
+ "step": 3324
+ },
+ {
+ "epoch": 46.181184668989545,
+ "grad_norm": 0.03853322193026543,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 1.8163692951202393,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19512195121951,
+ "grad_norm": 0.038212742656469345,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 1.8145291805267334,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20905923344948,
+ "grad_norm": 0.03763037174940109,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 1.8127399682998657,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22299651567944,
+ "grad_norm": 0.03820209205150604,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 1.8225712776184082,
+ "step": 3328
+ },
+ {
+ "epoch": 46.23693379790941,
+ "grad_norm": 0.037110067903995514,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 1.8229758739471436,
+ "step": 3329
+ },
+ {
+ "epoch": 46.250871080139376,
+ "grad_norm": 0.03818369284272194,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 1.8190522193908691,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26480836236934,
+ "grad_norm": 0.03743770346045494,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 1.8139934539794922,
+ "step": 3331
+ },
+ {
+ "epoch": 46.278745644599304,
+ "grad_norm": 0.03803284838795662,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 1.8183528184890747,
+ "step": 3332
+ },
+ {
+ "epoch": 46.292682926829265,
+ "grad_norm": 0.03784608468413353,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 1.8182880878448486,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30662020905923,
+ "grad_norm": 0.037429213523864746,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 1.808849573135376,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3205574912892,
+ "grad_norm": 0.038518618792295456,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 1.8263120651245117,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33449477351916,
+ "grad_norm": 0.03744640201330185,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 1.8109986782073975,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34843205574913,
+ "grad_norm": 0.03742145374417305,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 1.8148877620697021,
+ "step": 3337
+ },
+ {
+ "epoch": 46.362369337979096,
+ "grad_norm": 0.03771916404366493,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 1.8238847255706787,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37630662020906,
+ "grad_norm": 0.03808284550905228,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 1.8251694440841675,
+ "step": 3339
+ },
+ {
+ "epoch": 46.390243902439025,
+ "grad_norm": 0.03968566283583641,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 1.831655740737915,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40418118466899,
+ "grad_norm": 0.03965584561228752,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 1.8280460834503174,
+ "step": 3341
+ },
+ {
+ "epoch": 46.41811846689895,
+ "grad_norm": 0.037862010300159454,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 1.8117163181304932,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43205574912892,
+ "grad_norm": 0.03842945024371147,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 1.8222792148590088,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44599303135889,
+ "grad_norm": 0.037882935255765915,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 1.796486258506775,
+ "step": 3344
+ },
+ {
+ "epoch": 46.45993031358885,
+ "grad_norm": 0.038395076990127563,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 1.817350149154663,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47386759581882,
+ "grad_norm": 0.03876117989420891,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 1.824158787727356,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48780487804878,
+ "grad_norm": 0.03923864662647247,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 1.8217684030532837,
+ "step": 3347
+ },
+ {
+ "epoch": 46.501742160278745,
+ "grad_norm": 0.038607608526945114,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 1.8162826299667358,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51567944250871,
+ "grad_norm": 0.03831152245402336,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 1.8153542280197144,
+ "step": 3349
+ },
+ {
+ "epoch": 46.52961672473867,
+ "grad_norm": 0.03844587132334709,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 1.8167767524719238,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54355400696864,
+ "grad_norm": 0.038683440536260605,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 1.8062275648117065,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55749128919861,
+ "grad_norm": 0.03813035041093826,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 1.8278648853302002,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57142857142857,
+ "grad_norm": 0.03803053870797157,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 1.8156516551971436,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58536585365854,
+ "grad_norm": 0.038621220737695694,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 1.8223512172698975,
+ "step": 3354
+ },
+ {
+ "epoch": 46.599303135888505,
+ "grad_norm": 0.03917115554213524,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 1.8257312774658203,
+ "step": 3355
+ },
+ {
+ "epoch": 46.613240418118465,
+ "grad_norm": 0.03733129799365997,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 1.8140661716461182,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62717770034843,
+ "grad_norm": 0.0385662317276001,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 1.8204915523529053,
+ "step": 3357
+ },
+ {
+ "epoch": 46.641114982578394,
+ "grad_norm": 0.037781357765197754,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 1.8108971118927002,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65505226480836,
+ "grad_norm": 0.038371335715055466,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 1.8240822553634644,
+ "step": 3359
+ },
+ {
+ "epoch": 46.66898954703833,
+ "grad_norm": 0.037746723741292953,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 1.8115482330322266,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68292682926829,
+ "grad_norm": 0.0388336107134819,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 1.8158676624298096,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69686411149826,
+ "grad_norm": 0.037768274545669556,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 1.8176352977752686,
+ "step": 3362
+ },
+ {
+ "epoch": 46.710801393728225,
+ "grad_norm": 0.03783276677131653,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 1.8293941020965576,
+ "step": 3363
+ },
+ {
+ "epoch": 46.724738675958186,
+ "grad_norm": 0.03899708390235901,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 1.8130667209625244,
+ "step": 3364
+ },
+ {
+ "epoch": 46.73867595818815,
+ "grad_norm": 0.03806142508983612,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 1.8327434062957764,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75261324041812,
+ "grad_norm": 0.03903605788946152,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 1.8197782039642334,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76655052264808,
+ "grad_norm": 0.03788764029741287,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 1.8157106637954712,
+ "step": 3367
+ },
+ {
+ "epoch": 46.78048780487805,
+ "grad_norm": 0.03905672952532768,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 1.820918083190918,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79442508710802,
+ "grad_norm": 0.0389014407992363,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 1.8139166831970215,
+ "step": 3369
+ },
+ {
+ "epoch": 46.80836236933798,
+ "grad_norm": 0.038420338183641434,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 1.8178935050964355,
+ "step": 3370
+ },
+ {
+ "epoch": 46.822299651567945,
+ "grad_norm": 0.03841668367385864,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 1.8185274600982666,
+ "step": 3371
+ },
+ {
+ "epoch": 46.836236933797906,
+ "grad_norm": 0.03823021426796913,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 1.8150253295898438,
+ "step": 3372
+ },
+ {
+ "epoch": 46.850174216027874,
+ "grad_norm": 0.03832485154271126,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 1.8081377744674683,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86411149825784,
+ "grad_norm": 0.03849475830793381,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 1.816925048828125,
+ "step": 3374
+ },
+ {
+ "epoch": 46.8780487804878,
+ "grad_norm": 0.03906762972474098,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 1.8270701169967651,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89198606271777,
+ "grad_norm": 0.038746267557144165,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 1.8207285404205322,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90592334494774,
+ "grad_norm": 0.03853045031428337,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 1.8162529468536377,
+ "step": 3377
+ },
+ {
+ "epoch": 46.9198606271777,
+ "grad_norm": 0.03935963287949562,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 1.8271920680999756,
+ "step": 3378
+ },
+ {
+ "epoch": 46.933797909407666,
+ "grad_norm": 0.03892059251666069,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 1.822120189666748,
+ "step": 3379
+ },
+ {
+ "epoch": 46.94773519163763,
+ "grad_norm": 0.03952474519610405,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 1.8298530578613281,
+ "step": 3380
+ },
+ {
+ "epoch": 46.961672473867594,
+ "grad_norm": 0.039009276777505875,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 1.8412535190582275,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97560975609756,
+ "grad_norm": 0.03894372656941414,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 1.8213821649551392,
+ "step": 3382
+ },
+ {
+ "epoch": 46.98954703832753,
+ "grad_norm": 0.03953513130545616,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 1.8339545726776123,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.03188429772853851,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 1.3634908199310303,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 0.570444643497467,
+ "eval_runtime": 40.6308,
+ "eval_samples_per_second": 60.102,
+ "eval_steps_per_second": 0.492,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01393728222997,
+ "grad_norm": 0.036234039813280106,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 1.8182566165924072,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02787456445993,
+ "grad_norm": 0.03622264787554741,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 1.8090699911117554,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041811846689896,
+ "grad_norm": 0.03610070049762726,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 1.8131901025772095,
+ "step": 3387
+ },
+ {
+ "epoch": 47.055749128919864,
+ "grad_norm": 0.035964999347925186,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 1.8032443523406982,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069686411149824,
+ "grad_norm": 0.036281734704971313,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 1.8239645957946777,
+ "step": 3389
+ },
+ {
+ "epoch": 47.08362369337979,
+ "grad_norm": 0.036514367908239365,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 1.8228559494018555,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09756097560975,
+ "grad_norm": 0.03593939170241356,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 1.823681116104126,
+ "step": 3391
+ },
+ {
+ "epoch": 47.11149825783972,
+ "grad_norm": 0.036443162709474564,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 1.80690598487854,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12543554006969,
+ "grad_norm": 0.03648238256573677,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 1.8139559030532837,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13937282229965,
+ "grad_norm": 0.03722800686955452,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 1.8233599662780762,
+ "step": 3394
+ },
+ {
+ "epoch": 47.153310104529616,
+ "grad_norm": 0.03737233951687813,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 1.8193364143371582,
+ "step": 3395
+ },
+ {
+ "epoch": 47.167247386759584,
+ "grad_norm": 0.03650716692209244,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 1.8101320266723633,
+ "step": 3396
+ },
+ {
+ "epoch": 47.181184668989545,
+ "grad_norm": 0.03714330121874809,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 1.8295129537582397,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19512195121951,
+ "grad_norm": 0.035975657403469086,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 1.81499445438385,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20905923344948,
+ "grad_norm": 0.03743651136755943,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 1.8172564506530762,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22299651567944,
+ "grad_norm": 0.0368407666683197,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 1.8227181434631348,
+ "step": 3400
+ },
+ {
+ "epoch": 47.23693379790941,
+ "grad_norm": 0.03698154166340828,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 1.8278179168701172,
+ "step": 3401
+ },
+ {
+ "epoch": 47.250871080139376,
+ "grad_norm": 0.036741022020578384,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 1.8230552673339844,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26480836236934,
+ "grad_norm": 0.03758189454674721,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 1.8247655630111694,
+ "step": 3403
+ },
+ {
+ "epoch": 47.278745644599304,
+ "grad_norm": 0.03619777783751488,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 1.8097606897354126,
+ "step": 3404
+ },
+ {
+ "epoch": 47.292682926829265,
+ "grad_norm": 0.03801736235618591,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 1.8180854320526123,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30662020905923,
+ "grad_norm": 0.0365600660443306,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 1.8240909576416016,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3205574912892,
+ "grad_norm": 0.03668179735541344,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 1.817724585533142,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33449477351916,
+ "grad_norm": 0.036194052547216415,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 1.8089810609817505,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34843205574913,
+ "grad_norm": 0.03651675209403038,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 1.8198926448822021,
+ "step": 3409
+ },
+ {
+ "epoch": 47.362369337979096,
+ "grad_norm": 0.0368504598736763,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 1.808542251586914,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37630662020906,
+ "grad_norm": 0.03730998560786247,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 1.8217673301696777,
+ "step": 3411
+ },
+ {
+ "epoch": 47.390243902439025,
+ "grad_norm": 0.0364454910159111,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 1.8180444240570068,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40418118466899,
+ "grad_norm": 0.03698737919330597,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 1.8124010562896729,
+ "step": 3413
+ },
+ {
+ "epoch": 47.41811846689895,
+ "grad_norm": 0.03686196729540825,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 1.8283276557922363,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43205574912892,
+ "grad_norm": 0.036933958530426025,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 1.8205962181091309,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44599303135889,
+ "grad_norm": 0.0371149517595768,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 1.8190429210662842,
+ "step": 3416
+ },
+ {
+ "epoch": 47.45993031358885,
+ "grad_norm": 0.03656157851219177,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 1.816749095916748,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47386759581882,
+ "grad_norm": 0.03710705041885376,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 1.8079578876495361,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48780487804878,
+ "grad_norm": 0.036608871072530746,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 1.8152084350585938,
+ "step": 3419
+ },
+ {
+ "epoch": 47.501742160278745,
+ "grad_norm": 0.036530543118715286,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 1.8147070407867432,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51567944250871,
+ "grad_norm": 0.037391480058431625,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 1.7993264198303223,
+ "step": 3421
+ },
+ {
+ "epoch": 47.52961672473867,
+ "grad_norm": 0.038217637687921524,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 1.8257793188095093,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54355400696864,
+ "grad_norm": 0.03679857775568962,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 1.8350086212158203,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55749128919861,
+ "grad_norm": 0.037851132452487946,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 1.818297028541565,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57142857142857,
+ "grad_norm": 0.03697776794433594,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 1.8160109519958496,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58536585365854,
+ "grad_norm": 0.03800102323293686,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 1.8231701850891113,
+ "step": 3426
+ },
+ {
+ "epoch": 47.599303135888505,
+ "grad_norm": 0.036856334656476974,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 1.8287997245788574,
+ "step": 3427
+ },
+ {
+ "epoch": 47.613240418118465,
+ "grad_norm": 0.03697444498538971,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 1.8228754997253418,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62717770034843,
+ "grad_norm": 0.03705792501568794,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 1.8134121894836426,
+ "step": 3429
+ },
+ {
+ "epoch": 47.641114982578394,
+ "grad_norm": 0.037409644573926926,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 1.8300220966339111,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65505226480836,
+ "grad_norm": 0.03741020709276199,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 1.8231968879699707,
+ "step": 3431
+ },
+ {
+ "epoch": 47.66898954703833,
+ "grad_norm": 0.03742183372378349,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 1.810275673866272,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68292682926829,
+ "grad_norm": 0.03704936429858208,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 1.8122857809066772,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69686411149826,
+ "grad_norm": 0.037372391670942307,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 1.8202271461486816,
+ "step": 3434
+ },
+ {
+ "epoch": 47.710801393728225,
+ "grad_norm": 0.03666345775127411,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 1.8207899332046509,
+ "step": 3435
+ },
+ {
+ "epoch": 47.724738675958186,
+ "grad_norm": 0.0371788889169693,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 1.814274787902832,
+ "step": 3436
+ },
+ {
+ "epoch": 47.73867595818815,
+ "grad_norm": 0.036899879574775696,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 1.802245855331421,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75261324041812,
+ "grad_norm": 0.037005357444286346,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 1.802647590637207,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76655052264808,
+ "grad_norm": 0.03721495717763901,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 1.818315863609314,
+ "step": 3439
+ },
+ {
+ "epoch": 47.78048780487805,
+ "grad_norm": 0.03772353753447533,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 1.8147387504577637,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79442508710802,
+ "grad_norm": 0.03746752813458443,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 1.8030140399932861,
+ "step": 3441
+ },
+ {
+ "epoch": 47.80836236933798,
+ "grad_norm": 0.03725863993167877,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 1.8103176355361938,
+ "step": 3442
+ },
+ {
+ "epoch": 47.822299651567945,
+ "grad_norm": 0.03709195926785469,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 1.8098822832107544,
+ "step": 3443
+ },
+ {
+ "epoch": 47.836236933797906,
+ "grad_norm": 0.036143504083156586,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 1.827465295791626,
+ "step": 3444
+ },
+ {
+ "epoch": 47.850174216027874,
+ "grad_norm": 0.037823550403118134,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 1.8266834020614624,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86411149825784,
+ "grad_norm": 0.0386071652173996,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 1.8062219619750977,
+ "step": 3446
+ },
+ {
+ "epoch": 47.8780487804878,
+ "grad_norm": 0.037505585700273514,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 1.8197021484375,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89198606271777,
+ "grad_norm": 0.03761082887649536,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 1.8047385215759277,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90592334494774,
+ "grad_norm": 0.03725675120949745,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 1.818946123123169,
+ "step": 3449
+ },
+ {
+ "epoch": 47.9198606271777,
+ "grad_norm": 0.03737959265708923,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 1.815201997756958,
+ "step": 3450
+ },
+ {
+ "epoch": 47.933797909407666,
+ "grad_norm": 0.03683176264166832,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 1.815251111984253,
+ "step": 3451
+ },
+ {
+ "epoch": 47.94773519163763,
+ "grad_norm": 0.037342533469200134,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 1.8211082220077515,
+ "step": 3452
+ },
+ {
+ "epoch": 47.961672473867594,
+ "grad_norm": 0.03740851581096649,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 1.831331491470337,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97560975609756,
+ "grad_norm": 0.0371260829269886,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 1.8026540279388428,
+ "step": 3454
+ },
+ {
+ "epoch": 47.98954703832753,
+ "grad_norm": 0.037461310625076294,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 1.8171451091766357,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.03164761886000633,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 1.3563566207885742,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 0.5708308815956116,
+ "eval_runtime": 45.3724,
+ "eval_samples_per_second": 53.821,
+ "eval_steps_per_second": 0.441,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01393728222997,
+ "grad_norm": 0.03629855066537857,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 1.7924854755401611,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02787456445993,
+ "grad_norm": 0.03457314521074295,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 1.8161628246307373,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041811846689896,
+ "grad_norm": 0.03477388620376587,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 1.8240430355072021,
+ "step": 3459
+ },
+ {
+ "epoch": 48.055749128919864,
+ "grad_norm": 0.035154037177562714,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 1.826117992401123,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069686411149824,
+ "grad_norm": 0.03554321452975273,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 1.82192862033844,
+ "step": 3461
+ },
+ {
+ "epoch": 48.08362369337979,
+ "grad_norm": 0.03570706397294998,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 1.8137774467468262,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09756097560975,
+ "grad_norm": 0.03513845428824425,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 1.8105733394622803,
+ "step": 3463
+ },
+ {
+ "epoch": 48.11149825783972,
+ "grad_norm": 0.03588775172829628,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 1.8099284172058105,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12543554006969,
+ "grad_norm": 0.03483646363019943,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 1.806551218032837,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13937282229965,
+ "grad_norm": 0.03583027049899101,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 1.833876371383667,
+ "step": 3466
+ },
+ {
+ "epoch": 48.153310104529616,
+ "grad_norm": 0.03557566925883293,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 1.8166601657867432,
+ "step": 3467
+ },
+ {
+ "epoch": 48.167247386759584,
+ "grad_norm": 0.035372570157051086,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 1.8163450956344604,
+ "step": 3468
+ },
+ {
+ "epoch": 48.181184668989545,
+ "grad_norm": 0.03511631488800049,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 1.816368818283081,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19512195121951,
+ "grad_norm": 0.036221299320459366,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 1.8288164138793945,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20905923344948,
+ "grad_norm": 0.03544488176703453,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 1.8189771175384521,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22299651567944,
+ "grad_norm": 0.035947974771261215,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 1.8223621845245361,
+ "step": 3472
+ },
+ {
+ "epoch": 48.23693379790941,
+ "grad_norm": 0.03604043275117874,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 1.8249821662902832,
+ "step": 3473
+ },
+ {
+ "epoch": 48.250871080139376,
+ "grad_norm": 0.03524555638432503,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 1.8064708709716797,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26480836236934,
+ "grad_norm": 0.0354890301823616,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 1.815854787826538,
+ "step": 3475
+ },
+ {
+ "epoch": 48.278745644599304,
+ "grad_norm": 0.035895008593797684,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 1.82632577419281,
+ "step": 3476
+ },
+ {
+ "epoch": 48.292682926829265,
+ "grad_norm": 0.035078972578048706,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 1.8131970167160034,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30662020905923,
+ "grad_norm": 0.035954076796770096,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 1.8012189865112305,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3205574912892,
+ "grad_norm": 0.035505831241607666,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 1.8137649297714233,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33449477351916,
+ "grad_norm": 0.03499651700258255,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 1.8057328462600708,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34843205574913,
+ "grad_norm": 0.03543255478143692,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 1.8157145977020264,
+ "step": 3481
+ },
+ {
+ "epoch": 48.362369337979096,
+ "grad_norm": 0.036324430257081985,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 1.8117613792419434,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37630662020906,
+ "grad_norm": 0.03556879609823227,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 1.7929470539093018,
+ "step": 3483
+ },
+ {
+ "epoch": 48.390243902439025,
+ "grad_norm": 0.036090344190597534,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 1.8033666610717773,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40418118466899,
+ "grad_norm": 0.03546901047229767,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 1.8219467401504517,
+ "step": 3485
+ },
+ {
+ "epoch": 48.41811846689895,
+ "grad_norm": 0.03552090749144554,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 1.818065881729126,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43205574912892,
+ "grad_norm": 0.03627750650048256,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 1.8128200769424438,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44599303135889,
+ "grad_norm": 0.035575345158576965,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 1.8105305433273315,
+ "step": 3488
+ },
+ {
+ "epoch": 48.45993031358885,
+ "grad_norm": 0.03635450452566147,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 1.8195160627365112,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47386759581882,
+ "grad_norm": 0.03578576818108559,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 1.824038028717041,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48780487804878,
+ "grad_norm": 0.035146407783031464,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 1.797800064086914,
+ "step": 3491
+ },
+ {
+ "epoch": 48.501742160278745,
+ "grad_norm": 0.036025770008563995,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 1.8308684825897217,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51567944250871,
+ "grad_norm": 0.03566950187087059,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 1.8228070735931396,
+ "step": 3493
+ },
+ {
+ "epoch": 48.52961672473867,
+ "grad_norm": 0.0352281890809536,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 1.807770013809204,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54355400696864,
+ "grad_norm": 0.03641564026474953,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 1.8235619068145752,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55749128919861,
+ "grad_norm": 0.03627626970410347,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 1.8067023754119873,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57142857142857,
+ "grad_norm": 0.03654465824365616,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 1.8202476501464844,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58536585365854,
+ "grad_norm": 0.03691043332219124,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 1.813307523727417,
+ "step": 3498
+ },
+ {
+ "epoch": 48.599303135888505,
+ "grad_norm": 0.03620709851384163,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 1.8031121492385864,
+ "step": 3499
+ },
+ {
+ "epoch": 48.613240418118465,
+ "grad_norm": 0.03640243411064148,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 1.8108452558517456,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62717770034843,
+ "grad_norm": 0.03600089251995087,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 1.800875186920166,
+ "step": 3501
+ },
+ {
+ "epoch": 48.641114982578394,
+ "grad_norm": 0.03609528765082359,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 1.8231141567230225,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65505226480836,
+ "grad_norm": 0.03573886677622795,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 1.8068389892578125,
+ "step": 3503
+ },
+ {
+ "epoch": 48.66898954703833,
+ "grad_norm": 0.03632653132081032,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 1.8186371326446533,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68292682926829,
+ "grad_norm": 0.03575076907873154,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 1.8107867240905762,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69686411149826,
+ "grad_norm": 0.036322932690382004,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 1.8210351467132568,
+ "step": 3506
+ },
+ {
+ "epoch": 48.710801393728225,
+ "grad_norm": 0.03688248246908188,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 1.8184314966201782,
+ "step": 3507
+ },
+ {
+ "epoch": 48.724738675958186,
+ "grad_norm": 0.036379583179950714,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 1.8191511631011963,
+ "step": 3508
+ },
+ {
+ "epoch": 48.73867595818815,
+ "grad_norm": 0.03610221669077873,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 1.8295822143554688,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75261324041812,
+ "grad_norm": 0.03595640882849693,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 1.8217889070510864,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76655052264808,
+ "grad_norm": 0.03602292388677597,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 1.808424949645996,
+ "step": 3511
+ },
+ {
+ "epoch": 48.78048780487805,
+ "grad_norm": 0.036950740963220596,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 1.8091317415237427,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79442508710802,
+ "grad_norm": 0.036086443811655045,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 1.8232715129852295,
+ "step": 3513
+ },
+ {
+ "epoch": 48.80836236933798,
+ "grad_norm": 0.0364021398127079,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 1.8184512853622437,
+ "step": 3514
+ },
+ {
+ "epoch": 48.822299651567945,
+ "grad_norm": 0.03581502288579941,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 1.8097623586654663,
+ "step": 3515
+ },
+ {
+ "epoch": 48.836236933797906,
+ "grad_norm": 0.035823773592710495,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 1.8216334581375122,
+ "step": 3516
+ },
+ {
+ "epoch": 48.850174216027874,
+ "grad_norm": 0.03622235357761383,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 1.8186612129211426,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86411149825784,
+ "grad_norm": 0.03565097600221634,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 1.8125202655792236,
+ "step": 3518
+ },
+ {
+ "epoch": 48.8780487804878,
+ "grad_norm": 0.03602040559053421,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 1.812522292137146,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89198606271777,
+ "grad_norm": 0.03570236265659332,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 1.8004727363586426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90592334494774,
+ "grad_norm": 0.036522027105093,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 1.8292300701141357,
+ "step": 3521
+ },
+ {
+ "epoch": 48.9198606271777,
+ "grad_norm": 0.03595087304711342,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 1.8144701719284058,
+ "step": 3522
+ },
+ {
+ "epoch": 48.933797909407666,
+ "grad_norm": 0.0362931489944458,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 1.8179306983947754,
+ "step": 3523
+ },
+ {
+ "epoch": 48.94773519163763,
+ "grad_norm": 0.036648187786340714,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 1.8063626289367676,
+ "step": 3524
+ },
+ {
+ "epoch": 48.961672473867594,
+ "grad_norm": 0.0363408662378788,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 1.8124263286590576,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97560975609756,
+ "grad_norm": 0.0361749492585659,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 1.8167306184768677,
+ "step": 3526
+ },
+ {
+ "epoch": 48.98954703832753,
+ "grad_norm": 0.038660429418087006,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 1.8031257390975952,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.030300110578536987,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 1.3611235618591309,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 0.5712114572525024,
+ "eval_runtime": 40.574,
+ "eval_samples_per_second": 60.186,
+ "eval_steps_per_second": 0.493,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01393728222997,
+ "grad_norm": 0.0349261648952961,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 1.8257231712341309,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02787456445993,
+ "grad_norm": 0.034937694668769836,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 1.807671070098877,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041811846689896,
+ "grad_norm": 0.034675996750593185,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 1.811928391456604,
+ "step": 3531
+ },
+ {
+ "epoch": 49.055749128919864,
+ "grad_norm": 0.034592363983392715,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 1.8053536415100098,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069686411149824,
+ "grad_norm": 0.035122353583574295,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 1.8182408809661865,
+ "step": 3533
+ },
+ {
+ "epoch": 49.08362369337979,
+ "grad_norm": 0.03578760474920273,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 1.816204309463501,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09756097560975,
+ "grad_norm": 0.03511287644505501,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 1.8092085123062134,
+ "step": 3535
+ },
+ {
+ "epoch": 49.11149825783972,
+ "grad_norm": 0.034398045390844345,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 1.8259904384613037,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12543554006969,
+ "grad_norm": 0.034659773111343384,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 1.8264241218566895,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13937282229965,
+ "grad_norm": 0.03455929085612297,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 1.8158332109451294,
+ "step": 3538
+ },
+ {
+ "epoch": 49.153310104529616,
+ "grad_norm": 0.034366924315690994,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 1.8242806196212769,
+ "step": 3539
+ },
+ {
+ "epoch": 49.167247386759584,
+ "grad_norm": 0.03513622283935547,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 1.8003861904144287,
+ "step": 3540
+ },
+ {
+ "epoch": 49.181184668989545,
+ "grad_norm": 0.034501831978559494,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 1.8021810054779053,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19512195121951,
+ "grad_norm": 0.03477906435728073,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 1.8226642608642578,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20905923344948,
+ "grad_norm": 0.0343802347779274,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 1.8261330127716064,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22299651567944,
+ "grad_norm": 0.035619400441646576,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 1.8201040029525757,
+ "step": 3544
+ },
+ {
+ "epoch": 49.23693379790941,
+ "grad_norm": 0.03490610420703888,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 1.8058046102523804,
+ "step": 3545
+ },
+ {
+ "epoch": 49.250871080139376,
+ "grad_norm": 0.03439458832144737,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 1.8113988637924194,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26480836236934,
+ "grad_norm": 0.034571822732686996,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 1.8146417140960693,
+ "step": 3547
+ },
+ {
+ "epoch": 49.278745644599304,
+ "grad_norm": 0.03475602716207504,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 1.8065515756607056,
+ "step": 3548
+ },
+ {
+ "epoch": 49.292682926829265,
+ "grad_norm": 0.0347902849316597,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 1.8095703125,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30662020905923,
+ "grad_norm": 0.035196300595998764,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 1.8078017234802246,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3205574912892,
+ "grad_norm": 0.03524475917220116,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 1.8112115859985352,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33449477351916,
+ "grad_norm": 0.03507944568991661,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 1.801833987236023,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34843205574913,
+ "grad_norm": 0.03482398763298988,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 1.8134243488311768,
+ "step": 3553
+ },
+ {
+ "epoch": 49.362369337979096,
+ "grad_norm": 0.03497553616762161,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 1.8120372295379639,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37630662020906,
+ "grad_norm": 0.03511975705623627,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 1.801702618598938,
+ "step": 3555
+ },
+ {
+ "epoch": 49.390243902439025,
+ "grad_norm": 0.034673333168029785,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 1.8115878105163574,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40418118466899,
+ "grad_norm": 0.03553884103894234,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 1.8298025131225586,
+ "step": 3557
+ },
+ {
+ "epoch": 49.41811846689895,
+ "grad_norm": 0.03548285737633705,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 1.7986981868743896,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43205574912892,
+ "grad_norm": 0.035433996468782425,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 1.8225340843200684,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44599303135889,
+ "grad_norm": 0.03566813841462135,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 1.81766676902771,
+ "step": 3560
+ },
+ {
+ "epoch": 49.45993031358885,
+ "grad_norm": 0.03483427315950394,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 1.8111839294433594,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47386759581882,
+ "grad_norm": 0.034937791526317596,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 1.8155089616775513,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48780487804878,
+ "grad_norm": 0.035568978637456894,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 1.80054771900177,
+ "step": 3563
+ },
+ {
+ "epoch": 49.501742160278745,
+ "grad_norm": 0.03480701521039009,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 1.8138140439987183,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51567944250871,
+ "grad_norm": 0.03553345799446106,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 1.8020243644714355,
+ "step": 3565
+ },
+ {
+ "epoch": 49.52961672473867,
+ "grad_norm": 0.03477746620774269,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 1.813517451286316,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54355400696864,
+ "grad_norm": 0.035427916795015335,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 1.8224480152130127,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55749128919861,
+ "grad_norm": 0.03546629846096039,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 1.8119386434555054,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57142857142857,
+ "grad_norm": 0.03501473367214203,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 1.802550196647644,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58536585365854,
+ "grad_norm": 0.035156771540641785,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 1.8053243160247803,
+ "step": 3570
+ },
+ {
+ "epoch": 49.599303135888505,
+ "grad_norm": 0.03525850176811218,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 1.80426025390625,
+ "step": 3571
+ },
+ {
+ "epoch": 49.613240418118465,
+ "grad_norm": 0.0358700267970562,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 1.8231768608093262,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62717770034843,
+ "grad_norm": 0.03521254286170006,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 1.809835433959961,
+ "step": 3573
+ },
+ {
+ "epoch": 49.641114982578394,
+ "grad_norm": 0.035778582096099854,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 1.8094618320465088,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65505226480836,
+ "grad_norm": 0.03537479415535927,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 1.8168811798095703,
+ "step": 3575
+ },
+ {
+ "epoch": 49.66898954703833,
+ "grad_norm": 0.03526917099952698,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 1.8193936347961426,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68292682926829,
+ "grad_norm": 0.035044506192207336,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 1.8063331842422485,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69686411149826,
+ "grad_norm": 0.03599041327834129,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 1.8187506198883057,
+ "step": 3578
+ },
+ {
+ "epoch": 49.710801393728225,
+ "grad_norm": 0.03554947301745415,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 1.8184163570404053,
+ "step": 3579
+ },
+ {
+ "epoch": 49.724738675958186,
+ "grad_norm": 0.03548790141940117,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 1.8302017450332642,
+ "step": 3580
+ },
+ {
+ "epoch": 49.73867595818815,
+ "grad_norm": 0.03567434847354889,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 1.821744441986084,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75261324041812,
+ "grad_norm": 0.03565153479576111,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 1.8048158884048462,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76655052264808,
+ "grad_norm": 0.03563283011317253,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 1.807836890220642,
+ "step": 3583
+ },
+ {
+ "epoch": 49.78048780487805,
+ "grad_norm": 0.035419758409261703,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 1.8032561540603638,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79442508710802,
+ "grad_norm": 0.035276975482702255,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 1.8236784934997559,
+ "step": 3585
+ },
+ {
+ "epoch": 49.80836236933798,
+ "grad_norm": 0.0359327606856823,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 1.8199987411499023,
+ "step": 3586
+ },
+ {
+ "epoch": 49.822299651567945,
+ "grad_norm": 0.035315241664648056,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 1.7996082305908203,
+ "step": 3587
+ },
+ {
+ "epoch": 49.836236933797906,
+ "grad_norm": 0.035822171717882156,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 1.8212453126907349,
+ "step": 3588
+ },
+ {
+ "epoch": 49.850174216027874,
+ "grad_norm": 0.03549942746758461,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 1.8298600912094116,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86411149825784,
+ "grad_norm": 0.03578030690550804,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 1.8200526237487793,
+ "step": 3590
+ },
+ {
+ "epoch": 49.8780487804878,
+ "grad_norm": 0.035630639642477036,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 1.8144354820251465,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89198606271777,
+ "grad_norm": 0.03501582518219948,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 1.8072082996368408,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90592334494774,
+ "grad_norm": 0.03523965924978256,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 1.8066928386688232,
+ "step": 3593
+ },
+ {
+ "epoch": 49.9198606271777,
+ "grad_norm": 0.036136284470558167,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 1.8209614753723145,
+ "step": 3594
+ },
+ {
+ "epoch": 49.933797909407666,
+ "grad_norm": 0.03623069450259209,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 1.8138306140899658,
+ "step": 3595
+ },
+ {
+ "epoch": 49.94773519163763,
+ "grad_norm": 0.03473196551203728,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 1.8141272068023682,
+ "step": 3596
+ },
+ {
+ "epoch": 49.961672473867594,
+ "grad_norm": 0.03600392863154411,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 1.8084322214126587,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97560975609756,
+ "grad_norm": 0.03603222221136093,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 1.8122612237930298,
+ "step": 3598
+ },
+ {
+ "epoch": 49.98954703832753,
+ "grad_norm": 0.03523667901754379,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 1.8080532550811768,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.030087772756814957,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 1.3623769283294678,
+ "step": 3600
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": true
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5388280082137088e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-3600/training_args.bin b/runs/bi-ssl/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-72/chat_template.jinja b/runs/bi-ssl/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-72/config.json b/runs/bi-ssl/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-72/generation_config.json b/runs/bi-ssl/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-72/model.safetensors b/runs/bi-ssl/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3424b2a37595d416628f1052176fc05a6c12ca40
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:98ea19c03df63ea385a3905e6dee11a15d4b20e15497cf33202bcb0e861af534
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-72/optimizer.pt b/runs/bi-ssl/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7770eadc32b6bbf78de1d72c6d08d05b384ee300
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:799be6477a97dfd3463af773ecfc4a231f7c73bdabc91e063465296cdf2d1a3a
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-72/rng_state_0.pth b/runs/bi-ssl/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3fc68e18ddaf65dfbdec55893d9a925ff5e43a18
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4dd7671ce88d469c49c0530724ac76b2306574002d1ecd1ca9294e41621fd96a
+size 14917
diff --git a/runs/bi-ssl/checkpoint-72/rng_state_1.pth b/runs/bi-ssl/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..79d9de29ae34b3b0c10ea8ba0348aeafb0c12226
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3246ef1170ccca541a03b89ad6f20e01c51eb6834a2c2211c78c71c70f896879
+size 14917
diff --git a/runs/bi-ssl/checkpoint-72/scheduler.pt b/runs/bi-ssl/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b3af158e6a18004b03a150114c32a235df6d16a0
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ad58a4676ce2fb1ab2dc9d3047a7897e6cdf70ba2536ad730ac906c3b3dd935
+size 1465
diff --git a/runs/bi-ssl/checkpoint-72/tokenizer.json b/runs/bi-ssl/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-72/tokenizer_config.json b/runs/bi-ssl/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-72/trainer_state.json b/runs/bi-ssl/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..0789b3847d04652af37b9fcad2181b2b3e3b7cdb
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/trainer_state.json
@@ -0,0 +1,538 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 1.0,
+ "eval_steps": 500,
+ "global_step": 72,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0776560164274176e+16,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-72/training_args.bin b/runs/bi-ssl/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201
diff --git a/runs/bi-ssl/checkpoint-720/chat_template.jinja b/runs/bi-ssl/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/bi-ssl/checkpoint-720/config.json b/runs/bi-ssl/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/bi-ssl/checkpoint-720/generation_config.json b/runs/bi-ssl/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/bi-ssl/checkpoint-720/model.safetensors b/runs/bi-ssl/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..163ad78a5665f4f847f1441b9489a93b5cdeaca0
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d28119ebac2ebdc0b50b9130cbec0ab7ba196a3fbb0363720f171879d2a9e6f
+size 583356232
diff --git a/runs/bi-ssl/checkpoint-720/optimizer.pt b/runs/bi-ssl/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..aef2bfe8b57ebf62d684154bb6b7de96a8212223
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9bed211cb074bd592f8d720d7efaf1c8d3a68801cf4906f68992bd5ed53b2e2d
+size 1166825803
diff --git a/runs/bi-ssl/checkpoint-720/rng_state_0.pth b/runs/bi-ssl/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..64991ceae73e5d3389476a9b448c3cda96f73b10
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed1b9484e9cec07c14c677aaf97ebf9dff6fa34fc12bae83c65f98c9d2c9ad0d
+size 14917
diff --git a/runs/bi-ssl/checkpoint-720/rng_state_1.pth b/runs/bi-ssl/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fee3b6b64b847dcce05678311e2696b568d3185a
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d30790dc4fc4171a789605cefdf649fd85c4d4afb59efd35ee6fea409dad4915
+size 14917
diff --git a/runs/bi-ssl/checkpoint-720/scheduler.pt b/runs/bi-ssl/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1ad4496e97265851e778415cb1e0b7cabc192960
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b29c543d5f10e6bbf88f194409dab3a0645a2f26aa18a377a9b03e338e95d97b
+size 1465
diff --git a/runs/bi-ssl/checkpoint-720/tokenizer.json b/runs/bi-ssl/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/bi-ssl/checkpoint-720/tokenizer_config.json b/runs/bi-ssl/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/bi-ssl/checkpoint-720/trainer_state.json b/runs/bi-ssl/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5001a64a7a8adbf99c9dd3d4bf4dbba6ea804305
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/trainer_state.json
@@ -0,0 +1,5146 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 10.0,
+ "eval_steps": 500,
+ "global_step": 720,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.22071656584739685,
+ "learning_rate": 0.0,
+ "loss": 4.011302947998047,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.21752870082855225,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.011987686157227,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.21887962520122528,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.9982194900512695,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.21431784331798553,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.9704742431640625,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.20284771919250488,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.935602903366089,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.19318585097789764,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8928165435791016,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.15932577848434448,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.8482651710510254,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11974568665027618,
+ "learning_rate": 4.2e-05,
+ "loss": 3.810851573944092,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08989036828279495,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7773494720458984,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07003935426473618,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7488479614257812,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.054483916610479355,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7301974296569824,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.043061915785074234,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.7146263122558594,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.0349731408059597,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.703019857406616,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.02814316749572754,
+ "learning_rate": 7.8e-05,
+ "loss": 3.695601463317871,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.023652097210288048,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6905417442321777,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.020724255591630936,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.6873743534088135,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.018440809100866318,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.684276580810547,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.016532842069864273,
+ "learning_rate": 0.000102,
+ "loss": 3.68220853805542,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.014706931076943874,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.680957794189453,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013402832671999931,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.677640914916992,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.011304082348942757,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6799569129943848,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010074867866933346,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.6757569313049316,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.008811882697045803,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.673326015472412,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.007864435203373432,
+ "learning_rate": 0.000138,
+ "loss": 3.671532154083252,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.007402472663670778,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.6700358390808105,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.00743637653067708,
+ "learning_rate": 0.00015,
+ "loss": 3.6645007133483887,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006430565379559994,
+ "learning_rate": 0.000156,
+ "loss": 3.667693614959717,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.007084940560162067,
+ "learning_rate": 0.000162,
+ "loss": 3.659360408782959,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007031656801700592,
+ "learning_rate": 0.000168,
+ "loss": 3.6632261276245117,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.006854100152850151,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.6591620445251465,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008192425593733788,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.6597182750701904,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.007312905974686146,
+ "learning_rate": 0.000186,
+ "loss": 3.6565051078796387,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.007517640013247728,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.656726837158203,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.008977632969617844,
+ "learning_rate": 0.000198,
+ "loss": 3.6536781787872314,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012315826490521431,
+ "learning_rate": 0.000204,
+ "loss": 3.6583123207092285,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.012805779464542866,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.652751922607422,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.015627294778823853,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.649430513381958,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.014518190175294876,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.6448311805725098,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.015194125473499298,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.6381869316101074,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.015481601469218731,
+ "learning_rate": 0.000234,
+ "loss": 3.6353516578674316,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.018133334815502167,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.629021406173706,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016185984015464783,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.620015859603882,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.017972102388739586,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.60906982421875,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.022311991080641747,
+ "learning_rate": 0.000258,
+ "loss": 3.60957670211792,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.02219993807375431,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.6040844917297363,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.02366837114095688,
+ "learning_rate": 0.00027,
+ "loss": 3.5949902534484863,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.015453220345079899,
+ "learning_rate": 0.000276,
+ "loss": 3.5881400108337402,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.014435963705182076,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.583190441131592,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.024382617324590683,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5806713104248047,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.024851005524396896,
+ "learning_rate": 0.000294,
+ "loss": 3.5813088417053223,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.03871433809399605,
+ "learning_rate": 0.0003,
+ "loss": 3.5744190216064453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.08047135174274445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.5775208473205566,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.09829588234424591,
+ "learning_rate": 0.000312,
+ "loss": 3.573587417602539,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.013397958129644394,
+ "learning_rate": 0.000318,
+ "loss": 3.5676701068878174,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.08339901268482208,
+ "learning_rate": 0.000324,
+ "loss": 3.5664734840393066,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.017370233312249184,
+ "learning_rate": 0.00033,
+ "loss": 3.558870553970337,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.04826698079705238,
+ "learning_rate": 0.000336,
+ "loss": 3.561772584915161,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.022810276597738266,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5518975257873535,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.035093434154987335,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.551295042037964,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.04428909718990326,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.54909086227417,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.010418211109936237,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.537184238433838,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.03773047775030136,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.5432024002075195,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.022128675132989883,
+ "learning_rate": 0.000372,
+ "loss": 3.534902572631836,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.02584594301879406,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.533478260040283,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.023685211315751076,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.531026840209961,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.021846814081072807,
+ "learning_rate": 0.00039,
+ "loss": 3.529097557067871,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.028645051643252373,
+ "learning_rate": 0.000396,
+ "loss": 3.525829792022705,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.027033163234591484,
+ "learning_rate": 0.000402,
+ "loss": 3.515672445297241,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.026904357597231865,
+ "learning_rate": 0.000408,
+ "loss": 3.5150890350341797,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.026976002380251884,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.5037522315979004,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.03834955394268036,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.5042171478271484,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.02567807398736477,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.624364137649536,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8744457364082336,
+ "eval_runtime": 44.4427,
+ "eval_samples_per_second": 54.947,
+ "eval_steps_per_second": 0.45,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.03301653638482094,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.488966941833496,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.05172659456729889,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.487753391265869,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.028785737231373787,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.473418712615967,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.050938427448272705,
+ "learning_rate": 0.00045,
+ "loss": 3.474337100982666,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.05293378233909607,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.470837354660034,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.03940776735544205,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4545955657958984,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.0517834797501564,
+ "learning_rate": 0.000468,
+ "loss": 3.4592180252075195,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.027749599888920784,
+ "learning_rate": 0.000474,
+ "loss": 3.4524033069610596,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.045425571501255035,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4431424140930176,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.07511161267757416,
+ "learning_rate": 0.000486,
+ "loss": 3.4357924461364746,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.10061430931091309,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.435218334197998,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.17552587389945984,
+ "learning_rate": 0.000498,
+ "loss": 3.4566359519958496,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.09855161607265472,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.4308149814605713,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.04665074124932289,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.4224071502685547,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.049781639128923416,
+ "learning_rate": 0.000516,
+ "loss": 3.4198875427246094,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.06632078438997269,
+ "learning_rate": 0.000522,
+ "loss": 3.4176318645477295,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.08945070952177048,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.4096131324768066,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.06856776773929596,
+ "learning_rate": 0.000534,
+ "loss": 3.4063868522644043,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.04386090859770775,
+ "learning_rate": 0.00054,
+ "loss": 3.3988611698150635,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.03759616240859032,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.388916492462158,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.03716498240828514,
+ "learning_rate": 0.000552,
+ "loss": 3.3856236934661865,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.038459550589323044,
+ "learning_rate": 0.000558,
+ "loss": 3.3752079010009766,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.0411856509745121,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3772990703582764,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.04652026295661926,
+ "learning_rate": 0.00057,
+ "loss": 3.3726632595062256,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.02635767310857773,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3646931648254395,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.05751117318868637,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.361600637435913,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.048085134476423264,
+ "learning_rate": 0.000588,
+ "loss": 3.353908061981201,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.04301032796502113,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.344508171081543,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.0299446452409029,
+ "learning_rate": 0.0006,
+ "loss": 3.3438167572021484,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.04096505418419838,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.3334643840789795,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.048826929181814194,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.328244209289551,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.08334039151668549,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.323514461517334,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.06794880330562592,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.314000129699707,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.044827479869127274,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.304079055786133,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.035360127687454224,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.297659397125244,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.052651818841695786,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2917890548706055,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.05842744559049606,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.286853313446045,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.04874598607420921,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.281400203704834,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.11422774940729141,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2827210426330566,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.16027876734733582,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2931175231933594,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.10201781243085861,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2810747623443604,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.051149219274520874,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2716431617736816,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.07098586112260818,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2627599239349365,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.04968981444835663,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.2663016319274902,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.0657707080245018,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2563395500183105,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.038385968655347824,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2464935779571533,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05093603953719139,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.2445449829101562,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04153640195727348,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.230341672897339,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.04138407111167908,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2285306453704834,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.023382801562547684,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.2276129722595215,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.03821573778986931,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2195324897766113,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.03504394367337227,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2159366607666016,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.021674949675798416,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2052114009857178,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.03602723404765129,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.2057807445526123,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.04320183023810387,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2048683166503906,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.024531852453947067,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.1923530101776123,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.02791837602853775,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.1838245391845703,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.03150961920619011,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.1830921173095703,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.0534214973449707,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.1805105209350586,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07657510787248611,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1714420318603516,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.09685046225786209,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1751060485839844,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08254189789295197,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.164543867111206,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.09224818646907806,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.159278392791748,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.058040399104356766,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1518473625183105,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.08511250466108322,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1528029441833496,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.05029832944273949,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.143618106842041,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.07737547904253006,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1390485763549805,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.07813066244125366,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1385655403137207,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.094785675406456,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1300759315490723,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.08976659178733826,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1215360164642334,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.06807997077703476,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.114490509033203,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06884586066007614,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3325283527374268,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7787111401557922,
+ "eval_runtime": 40.934,
+ "eval_samples_per_second": 59.657,
+ "eval_steps_per_second": 0.489,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.05255240574479103,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.102677822113037,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.0626261904835701,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.0951690673828125,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.06338804960250854,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.0997562408447266,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.044026345014572144,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.0890495777130127,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.04112977162003517,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.0917208194732666,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.032628972083330154,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.0808000564575195,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.03766812011599541,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.0776731967926025,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.038869187235832214,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.0692577362060547,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.03446304425597191,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.0602598190307617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.03687914460897446,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.0537476539611816,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.04114660993218422,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.0553317070007324,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.050415679812431335,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.047668695449829,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.08315202593803406,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.048184633255005,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.1173558384180069,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.0458052158355713,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.10666743665933609,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.051492214202881,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.06743288785219193,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.040518283843994,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.07287093997001648,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.035322904586792,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.0514291450381279,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.0276384353637695,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.06155439466238022,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.021681070327759,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.04693302512168884,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.021973133087158,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.05525592714548111,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.016526937484741,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.038560014218091965,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.0029349327087402,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.04673083871603012,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.0092921257019043,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.04296767711639404,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 2.9986355304718018,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.05065205693244934,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 2.9946205615997314,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.051720310002565384,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 2.984386682510376,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.04810711741447449,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 2.9824275970458984,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.03596913814544678,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 2.9740066528320312,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04214359447360039,
+ "learning_rate": 0.000599379982511273,
+ "loss": 2.9735870361328125,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.04861219972372055,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 2.9714341163635254,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.06415710598230362,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 2.973360300064087,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.07116593420505524,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 2.973864793777466,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.06729625165462494,
+ "learning_rate": 0.000599309205504528,
+ "loss": 2.966299057006836,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.045576248317956924,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 2.953540325164795,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.05805512145161629,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 2.953089952468872,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.0605042539536953,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 2.9520363807678223,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.0521051362156868,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 2.9434263706207275,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.05085117742419243,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 2.9455413818359375,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.05966535955667496,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 2.9492735862731934,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.0505884513258934,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 2.9355762004852295,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.04014795646071434,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 2.9320106506347656,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.0371386744081974,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 2.922492504119873,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.0443817600607872,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 2.9175052642822266,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.04461454227566719,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 2.91937255859375,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.06355974078178406,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 2.916482925415039,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.06821264326572418,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 2.918750762939453,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.06474653631448746,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 2.9090218544006348,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.07842458039522171,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 2.9109203815460205,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.06561946868896484,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 2.9103739261627197,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.07700146734714508,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 2.9081473350524902,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.09043361991643906,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 2.917818784713745,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.06968985497951508,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 2.90151309967041,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.08414923399686813,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 2.9011778831481934,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.07595831900835037,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 2.885026216506958,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.08169621229171753,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 2.8999099731445312,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.054117344319820404,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 2.8921408653259277,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.0641949400305748,
+ "learning_rate": 0.000598804365316586,
+ "loss": 2.890707015991211,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.06207820400595665,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 2.8879384994506836,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.051602188497781754,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 2.882479429244995,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.042452309280633926,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 2.8730645179748535,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.044760074466466904,
+ "learning_rate": 0.000598706872384039,
+ "loss": 2.8806967735290527,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03414278104901314,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 2.87882661819458,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.047569163143634796,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 2.8632259368896484,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.04271185025572777,
+ "learning_rate": 0.000598631251036868,
+ "loss": 2.861994743347168,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.03206771984696388,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 2.8625998497009277,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.03906479477882385,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 2.8631322383880615,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.03727274388074875,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 2.8653817176818848,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.036476653069257736,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.8467228412628174,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.03561816364526749,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.8462443351745605,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.0383661687374115,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.8496313095092773,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.029070306569337845,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.839839458465576,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.025146806612610817,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.130557060241699,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7122665047645569,
+ "eval_runtime": 44.7022,
+ "eval_samples_per_second": 54.628,
+ "eval_steps_per_second": 0.447,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.02979670837521553,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.8392157554626465,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.04034191742539406,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.8347957134246826,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.049924880266189575,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.8356382846832275,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.06257615238428116,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.8342854976654053,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.07320816069841385,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.8251686096191406,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.05860547721385956,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.8289620876312256,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.04978411644697189,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.824395179748535,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.0488462969660759,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.825712203979492,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.04726667329668999,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 2.821969985961914,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.05774849280714989,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.8190128803253174,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.058106981217861176,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.8121743202209473,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.0743136927485466,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.819901466369629,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.08398531377315521,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.8263232707977295,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.07304553687572479,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.822258472442627,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.050054050981998444,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.8051788806915283,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.050488341599702835,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.816021680831909,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.05146707594394684,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.809223175048828,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.034048959612846375,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.8051414489746094,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.0400397963821888,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.802764415740967,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.026604780927300453,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.7899951934814453,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.03486903756856918,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.797166347503662,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.030646465718746185,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.7907090187072754,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.04421111196279526,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.8010897636413574,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.05848129466176033,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.7970056533813477,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.05355481803417206,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.793274402618408,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.03873617202043533,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.7846531867980957,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.04561037942767143,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.7790017127990723,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.04654275253415108,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.77921462059021,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.02990172617137432,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.7842020988464355,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.03585203364491463,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.774181365966797,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.03608817234635353,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.782205104827881,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.03341137245297432,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.775320529937744,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.037335071712732315,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.775031566619873,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.03208819031715393,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.773641586303711,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.044177863746881485,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.7813405990600586,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.047150034457445145,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.754333972930908,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.0531509630382061,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.7512407302856445,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.05771561339497566,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.7565090656280518,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.047886524349451065,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.7553963661193848,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.04439863562583923,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.759692668914795,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.04814993217587471,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.7522146701812744,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.055598169565200806,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.7501511573791504,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.06739863008260727,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.752868890762329,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.09067726880311966,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.757394313812256,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.07457330822944641,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.753371000289917,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.051880862563848495,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.746819019317627,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.04976704344153404,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.749997615814209,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.053853414952754974,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.749293327331543,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.04593636468052864,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.7392163276672363,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.04213574901223183,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.7330479621887207,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.03628932684659958,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.739452838897705,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03941183537244797,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.747791051864624,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.03798806294798851,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.734238624572754,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031907279044389725,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.734231948852539,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.025942718610167503,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.735797882080078,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.03068450093269348,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.7278406620025635,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.02900049276649952,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.723090410232544,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.024593016132712364,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.7182512283325195,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.02892460487782955,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.705540180206299,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.030340751633048058,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.7073934078216553,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.03996355086565018,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.7135391235351562,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.0396747924387455,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.7101235389709473,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042895395308732986,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.7084007263183594,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.04713243991136551,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.7015514373779297,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.04158826544880867,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.6974525451660156,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.03678924962878227,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.7093498706817627,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.03845341131091118,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.7074599266052246,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.041045960038900375,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.6965599060058594,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.047018349170684814,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.6894941329956055,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05804718658328056,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.697925329208374,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06046954542398453,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.6893367767333984,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.04456653073430061,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.0213191509246826,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.6763054132461548,
+ "eval_runtime": 40.8651,
+ "eval_samples_per_second": 59.758,
+ "eval_steps_per_second": 0.489,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.04810021072626114,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.6849052906036377,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.0590689517557621,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.68733549118042,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.06877399981021881,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.680755138397217,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.06913334131240845,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.700029134750366,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.05659080296754837,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.679058074951172,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.04815446212887764,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.6790528297424316,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.050804559141397476,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.6822781562805176,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.05752618610858917,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.6814327239990234,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.06027018651366234,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.677894115447998,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05980968847870827,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.6851983070373535,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.05144694074988365,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.6746139526367188,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.047837693244218826,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.6725218296051025,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.044660620391368866,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.6732683181762695,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.04078155383467674,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.6773061752319336,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03345143795013428,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.663872241973877,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.036593228578567505,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.6586718559265137,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.038924869149923325,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.6550309658050537,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.04014970362186432,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.653383255004883,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03432335704565048,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.658679723739624,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.03596983104944229,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.642582416534424,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.035005271434783936,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.644252061843872,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.0361204631626606,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.6324524879455566,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.032969336956739426,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.637019634246826,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.030927564948797226,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.6354575157165527,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.03063366375863552,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.641688346862793,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.034008126705884933,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.6367483139038086,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.036144617944955826,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.6323089599609375,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.03573477640748024,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.6422362327575684,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04088377580046654,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.6277856826782227,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.04289925843477249,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.6223864555358887,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.042138442397117615,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.626070499420166,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.030577464029192924,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.6180148124694824,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.03218294307589531,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.614924192428589,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.035986997187137604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.6116044521331787,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.038044240325689316,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.6235315799713135,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.038615863770246506,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.614234685897827,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.05051698535680771,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.612368106842041,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.08009623736143112,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.6198034286499023,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.09998307377099991,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.6099448204040527,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.10789201408624649,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.632755756378174,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0799160972237587,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.6363139152526855,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.0715254470705986,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.6309738159179688,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.06235096976161003,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.636120319366455,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.06612232327461243,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.6278488636016846,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.07092446833848953,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.6295065879821777,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.0715865045785904,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.627017021179199,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.053606610745191574,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.6149539947509766,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.03718339279294014,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.6140589714050293,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.04592828452587128,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.611191749572754,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.04046345502138138,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.6044394969940186,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.03516766428947449,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.6103196144104004,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.02982841245830059,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.607138156890869,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.030648963525891304,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.5984549522399902,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.02680288627743721,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.604039430618286,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.029848670586943626,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.5953240394592285,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.027549808844923973,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.5988316535949707,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.024730749428272247,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.5823278427124023,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.02506527677178383,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.5859322547912598,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.027518363669514656,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.588441848754883,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.029841506853699684,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.574119806289673,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.029894288629293442,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.583740711212158,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.028445448726415634,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.567072629928589,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.033528994768857956,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.580737829208374,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0348823256790638,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.575918674468994,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.04783475399017334,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.5674891471862793,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.06811662763357162,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.5710034370422363,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.06532859802246094,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.566183090209961,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.04240431636571884,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.5678768157958984,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.038800694048404694,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.5664775371551514,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.0398436076939106,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.5644540786743164,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.030827229842543602,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.5504446029663086,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.026178821921348572,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 1.92092764377594,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6441298723220825,
+ "eval_runtime": 44.5931,
+ "eval_samples_per_second": 54.762,
+ "eval_steps_per_second": 0.448,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.031992316246032715,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.544344902038574,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.03107154741883278,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.5476126670837402,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03429398313164711,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.5440673828125,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.03821518272161484,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.542421817779541,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.04735049232840538,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.548677921295166,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05321632698178291,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.5515997409820557,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04467267915606499,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.5402724742889404,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.035380423069000244,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.5348455905914307,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.03416815772652626,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.5350699424743652,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.03439902141690254,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.538092613220215,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.037012457847595215,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.531245708465576,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.0413362979888916,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.5239531993865967,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04590040445327759,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.530148506164551,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.04275987669825554,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.533613681793213,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.044208381325006485,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.5236921310424805,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.06308459490537643,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.528970718383789,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.0660448744893074,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.523627281188965,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.053042732179164886,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.522212028503418,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.05478225275874138,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.5280628204345703,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.05447018891572952,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.525697708129883,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.038953639566898346,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.5260205268859863,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.03882172331213951,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.516289710998535,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03447897732257843,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.5167675018310547,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.032364387065172195,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.5174927711486816,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.035803940147161484,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.515575408935547,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.05548325926065445,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.521345376968384,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.0879221111536026,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.513010025024414,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.0690401941537857,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.5208559036254883,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.055067289620637894,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.514549493789673,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.05255042016506195,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.5127179622650146,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.050256796181201935,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.5186221599578857,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.04443476349115372,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.5134854316711426,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.036368388682603836,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.4951624870300293,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04147929325699806,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.5018553733825684,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.04462911933660507,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.506937026977539,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.045406218618154526,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.5014476776123047,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.03980666399002075,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.4755189418792725,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.03697766736149788,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.494622230529785,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.03136422857642174,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.506051778793335,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.03164182975888252,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.4974365234375,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.035047486424446106,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.4742274284362793,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.03799869120121002,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.4782919883728027,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.043698444962501526,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.483191728591919,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.047802310436964035,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.4820713996887207,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.03777889162302017,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.481393814086914,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.03853036090731621,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.487879991531372,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.03929532319307327,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.4752821922302246,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.04131760448217392,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.478928565979004,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.03941361606121063,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.4878246784210205,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.03482220321893692,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.4702377319335938,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.03123808279633522,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.4736552238464355,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.034333840012550354,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.480649471282959,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.03388441726565361,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.4679908752441406,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.038519468158483505,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.4755568504333496,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.041406095027923584,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.469949722290039,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04305620491504669,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.481142520904541,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.03958253189921379,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.4544475078582764,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.034904614090919495,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.458460807800293,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.03795226663351059,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.468588352203369,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.04001384600996971,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.458078622817993,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.038275111466646194,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.470144271850586,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03852624073624611,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.4641294479370117,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.04813156649470329,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.4564208984375,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.04889321327209473,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.4625844955444336,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.042888663709163666,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.451308250427246,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.03279358521103859,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.442401647567749,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.03854290395975113,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.4559226036071777,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.03536423295736313,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.4545645713806152,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.03675871342420578,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.447526454925537,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.03924093768000603,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.4462928771972656,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.041029125452041626,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.448169708251953,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.030457494780421257,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.8244651556015015,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6170960068702698,
+ "eval_runtime": 40.7608,
+ "eval_samples_per_second": 59.91,
+ "eval_steps_per_second": 0.491,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.032823339104652405,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.4381232261657715,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.03485892713069916,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.4318556785583496,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.031230531632900238,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.438720226287842,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.03215096518397331,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.4377565383911133,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.030016958713531494,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.4306788444519043,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.032292455434799194,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.427821159362793,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.041801873594522476,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.4185237884521484,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.06081428751349449,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.4245169162750244,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.07346563786268234,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.444197416305542,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06982522457838058,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.4384589195251465,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.07159186154603958,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.439103126525879,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06747715920209885,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.4452733993530273,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.06010141968727112,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.4370641708374023,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.06250977516174316,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.438310384750366,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.07118832319974899,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.4388372898101807,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.08549836277961731,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.4471282958984375,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.08330308645963669,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.452788829803467,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.07739271968603134,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.4399614334106445,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.056545358151197433,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.429286479949951,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.04583094269037247,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.455265760421753,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.04576599970459938,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.4289498329162598,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.04403511807322502,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.4311814308166504,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04011240601539612,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.433716297149658,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.039712097495794296,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.420297622680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.039231784641742706,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.4189772605895996,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03510915860533714,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.439424991607666,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.027284741401672363,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.4215803146362305,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.029865408316254616,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.423736572265625,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.028644703328609467,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.4161336421966553,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.031065743416547775,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.4031970500946045,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.033013634383678436,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.4157025814056396,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.033514052629470825,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.407520294189453,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.03703322634100914,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.4011831283569336,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.04030891880393028,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.403472423553467,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.03583918884396553,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.408329963684082,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.03441445156931877,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.411060333251953,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.034898653626441956,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.403005361557007,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.04083970561623573,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.41583251953125,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.051118820905685425,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.407703399658203,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.04680216684937477,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.413285255432129,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.039204295724630356,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.3968708515167236,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.037358321249485016,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.416327476501465,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.03020458109676838,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.401472806930542,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.041528720408678055,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.39717960357666,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.03187109902501106,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.4020917415618896,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.025236845016479492,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.4034314155578613,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.029438963159918785,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.397761583328247,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.03244204819202423,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.3899693489074707,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0411805659532547,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.3935325145721436,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.05078775808215141,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.4006433486938477,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04580998420715332,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.3856022357940674,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03303203359246254,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.3906631469726562,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03286561369895935,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.401048183441162,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.033346179872751236,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.3965563774108887,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.030093099921941757,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.3867664337158203,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.030571797862648964,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.3813912868499756,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03299042582511902,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.3752694129943848,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.032950080931186676,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.3844351768493652,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03254655748605728,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.3963658809661865,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.029824430122971535,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.3801605701446533,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.02925029955804348,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.3881516456604004,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03368283808231354,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.3982391357421875,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03617767617106438,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.3793907165527344,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.03719615563750267,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.3904495239257812,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.037586409598588943,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.3844685554504395,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03381524980068207,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.3764421939849854,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.033011727035045624,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.3665802478790283,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.028017843142151833,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.380875825881958,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.027712343260645866,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.376673698425293,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.02990615926682949,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.3870530128479004,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.030154861509799957,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.3595094680786133,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.02579662576317787,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.785998821258545,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6004442572593689,
+ "eval_runtime": 40.7972,
+ "eval_samples_per_second": 59.857,
+ "eval_steps_per_second": 0.49,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.031130677089095116,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.350637912750244,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.0329064205288887,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.365894317626953,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.034322816878557205,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.360818386077881,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.033886391669511795,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.3649864196777344,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.03210915997624397,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.3563008308410645,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.036447785794734955,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.3397421836853027,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.036335598677396774,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.371328592300415,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.03501510992646217,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.358217239379883,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.04089249670505524,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.360690116882324,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.05192899703979492,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.3578248023986816,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.053302738815546036,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.3655660152435303,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.04229656979441643,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.35198974609375,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.03579021990299225,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.3579630851745605,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.040123388171195984,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.3476247787475586,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.04124383255839348,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.356581687927246,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.043829984962940216,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.3631088733673096,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.048104096204042435,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.358025074005127,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.05374299734830856,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.352292537689209,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.055594317615032196,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.359771490097046,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.04419751837849617,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.3490567207336426,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.04979948699474335,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.344054698944092,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.05933401361107826,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.3644070625305176,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.05835124850273132,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.3606631755828857,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.05046955496072769,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.3607664108276367,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.04373084008693695,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.3580663204193115,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.03615325689315796,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.3436131477355957,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.0396207757294178,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.342010498046875,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.0442534014582634,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.3489720821380615,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.05546874180436134,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.353278398513794,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.059291690587997437,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.3503928184509277,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.04768836498260498,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.358726739883423,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.0414792075753212,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.3403310775756836,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.044483691453933716,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.353760242462158,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.0392809733748436,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.3420040607452393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.03783603757619858,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.358088493347168,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.03350891172885895,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.338806629180908,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.030957678332924843,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.3366007804870605,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03345769643783569,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.342073678970337,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.032056909054517746,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.3403592109680176,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03663351386785507,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.3485753536224365,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.03356778249144554,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.3396291732788086,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028594449162483215,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.3283510208129883,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.027354419231414795,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.3394317626953125,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.03113793022930622,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.3351247310638428,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.03041609190404415,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.343315601348877,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.028977053239941597,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.340165615081787,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.029118210077285767,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.3421504497528076,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.028743630275130272,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.3331398963928223,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.028921784833073616,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.3419299125671387,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.03103632666170597,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.3264005184173584,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.028934553265571594,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.3368101119995117,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.026702173054218292,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.31412672996521,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.027074873447418213,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.3259642124176025,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.0266254935413599,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.321077823638916,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.0239931121468544,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.322950839996338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.027578866109251976,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.339834213256836,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.028765976428985596,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.3171143531799316,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.030212657526135445,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.3204123973846436,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03466416895389557,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.31998872756958,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.04105372726917267,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.3382840156555176,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.043108146637678146,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.3223342895507812,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.039406467229127884,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.3244850635528564,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.043929535895586014,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.338005542755127,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.05279233306646347,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.3192362785339355,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.05874667689204216,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.324679374694824,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.05975278839468956,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.3303022384643555,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.05256650224328041,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.3206334114074707,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.051403336226940155,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.330646276473999,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.035065293312072754,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.320955753326416,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.03592074662446976,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.3165171146392822,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03137669339776039,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.3273513317108154,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02398415468633175,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.7346559762954712,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.5889194011688232,
+ "eval_runtime": 40.4461,
+ "eval_samples_per_second": 60.377,
+ "eval_steps_per_second": 0.494,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.028425099328160286,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.3133232593536377,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.0295100174844265,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.2968108654022217,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.032318271696567535,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.3165457248687744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.03296588361263275,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.3084986209869385,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.036653321236371994,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.310817241668701,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.037104811519384384,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.2981972694396973,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.03359098732471466,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.309049606323242,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.03655795007944107,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.3039324283599854,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0398266464471817,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.301234483718872,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.04317345470190048,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.29533314704895,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.04061020165681839,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.301499843597412,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.03583843633532524,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.3037023544311523,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.031153611838817596,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.298825740814209,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.03453551232814789,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.3068058490753174,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.03456587716937065,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.306410789489746,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.037784699350595474,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.3069820404052734,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.03695699945092201,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.3021836280822754,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.03542326018214226,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.3018786907196045,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.03488027676939964,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.3045384883880615,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.03464312106370926,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.289572238922119,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.034402646124362946,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.3015902042388916,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.03489011153578758,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.301362991333008,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.034375254064798355,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.3093111515045166,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.031753335148096085,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.285815954208374,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.03271830454468727,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.302628993988037,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.04276163876056671,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.292898654937744,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.04538466036319733,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.2937850952148438,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03829379752278328,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.299643039703369,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03216429799795151,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.288672924041748,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03609590604901314,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.301632881164551,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.03484802320599556,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.3115720748901367,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.03462231159210205,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.284862518310547,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03183579072356224,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.310704231262207,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.03142647072672844,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.286024808883667,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.03276066109538078,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.2823328971862793,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.03034856915473938,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.2801764011383057,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.030054669827222824,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.2808260917663574,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.03011590801179409,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.301375389099121,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.029257727786898613,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.2773523330688477,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.030969979241490364,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.2757961750030518,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.033769503235816956,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.2840018272399902,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03950092941522598,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.2917728424072266,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.043188340961933136,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.2950308322906494,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.04103822261095047,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.2828192710876465,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.04110550507903099,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.288541555404663,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.04158076271414757,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.285560131072998,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.03756992518901825,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.286904811859131,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.04305992275476456,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.289543628692627,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.04740343615412712,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.291999340057373,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.045329149812459946,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.2817299365997314,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.048014622181653976,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.2835817337036133,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.04745716601610184,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.2785050868988037,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.0379294753074646,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.2969112396240234,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.042224690318107605,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.2898828983306885,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03754335641860962,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.278893232345581,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.035581670701503754,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.2798941135406494,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.035723909735679626,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.274533748626709,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.034623514860868454,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.2841086387634277,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.03230423107743263,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.2828001976013184,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.031698811799287796,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.280895233154297,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.032131683081388474,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.287318229675293,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.02833111770451069,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.278801679611206,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.030085593461990356,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.2762222290039062,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.02858203463256359,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.278630256652832,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.02931547909975052,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.2756547927856445,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.034986987709999084,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.274336338043213,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.04045342281460762,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.2787907123565674,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.0370338037610054,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.2852132320404053,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03187150880694389,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.2867465019226074,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.030912255868315697,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.271239995956421,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.033225253224372864,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.2804837226867676,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.025358978658914566,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.702669382095337,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.5792715549468994,
+ "eval_runtime": 40.2019,
+ "eval_samples_per_second": 60.743,
+ "eval_steps_per_second": 0.497,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.031287990510463715,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.260866641998291,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.035898152738809586,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.280045509338379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.03748388960957527,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.265040397644043,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.042530447244644165,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.2646751403808594,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.04369145259261131,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.2523860931396484,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.04937004670500755,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.265946388244629,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05600711330771446,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.2759861946105957,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.04005228728055954,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.2508511543273926,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.03255302831530571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.2683753967285156,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.03656825050711632,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.261918067932129,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.03547176346182823,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.2554831504821777,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.03555650636553764,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.2642321586608887,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.03591032698750496,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.2647805213928223,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.03637376055121422,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.264930248260498,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.03889090567827225,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.2467613220214844,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.04029703512787819,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.2674155235290527,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.03651541844010353,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.2525243759155273,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.033296119421720505,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.2636513710021973,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.03165296092629433,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.234494209289551,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.029399476945400238,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.249300479888916,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.031480032950639725,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.252270221710205,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.03073151595890522,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.243560552597046,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.027612006291747093,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.256105899810791,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.029484109953045845,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.249889612197876,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.03242531046271324,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.249189615249634,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.038936492055654526,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.2552847862243652,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.04393706098198891,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.26662015914917,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.04463733732700348,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.250842332839966,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.03748022019863129,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.2587552070617676,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.034337639808654785,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.255272626876831,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.034344758838415146,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.2527241706848145,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03373178839683533,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.247609853744507,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.038257621228694916,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.2673025131225586,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.04196399450302124,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.2579963207244873,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.04468139261007309,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.239560842514038,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.04611855000257492,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.2525315284729004,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.04122306779026985,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.2605111598968506,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03119390830397606,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.261892795562744,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03938557580113411,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.2536463737487793,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.04015006124973297,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.2672810554504395,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.037629470229148865,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.2585771083831787,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.036876130849123,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.272730827331543,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.032201770693063736,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.258300304412842,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.031680140644311905,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.242372512817383,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03373542055487633,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.2581257820129395,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.030970700085163116,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.2467164993286133,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.02908407337963581,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.248488187789917,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.02905588410794735,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.2449090480804443,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.029100295156240463,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.2503089904785156,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.02822701632976532,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.251636505126953,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.03191808983683586,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.2424707412719727,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03464989736676216,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.2432382106781006,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.034494005143642426,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.2556984424591064,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03609498590230942,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.25148344039917,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.036973465234041214,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.2435359954833984,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03525039553642273,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.2413344383239746,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03133779391646385,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.238283157348633,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.028117315843701363,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.2344303131103516,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.03240802139043808,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.253584384918213,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.03316225856542587,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.2289700508117676,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.033131830394268036,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.2427687644958496,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.028304794803261757,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.2512550354003906,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.02934206835925579,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.2457869052886963,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03584468364715576,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.2488300800323486,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.03383762389421463,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.2462406158447266,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.0275675468146801,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.2412757873535156,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.031216835603117943,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.2307944297790527,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.02827306091785431,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.2516443729400635,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.029719769954681396,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.2531368732452393,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.027880584821105003,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.2487902641296387,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.027874179184436798,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.2443385124206543,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.021581469103693962,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.6719448566436768,
+ "step": 720
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0776560164274176e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/bi-ssl/checkpoint-720/training_args.bin b/runs/bi-ssl/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..533310911f83c50ed090e5885545dda7714f49ef
--- /dev/null
+++ b/runs/bi-ssl/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae0daa59c70bcf5b6df5dfd03316b70f80f673bb0a4971a19c1d6198a7edc3ae
+size 5201