diff --git a/.gitattributes b/.gitattributes
index 217cb4d692349619a6835f70d937b350311a92f9..c0898b25f66ce6b9fbd54d84c347a1270723b96f 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -184,3 +184,14 @@ runs/l2r90-baseline/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs
runs/l2r90-baseline/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r90-baseline/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r90-baseline/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/l2r10-baseline/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/l2r10-baseline/checkpoint-1080/chat_template.jinja b/runs/l2r10-baseline/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1080/config.json b/runs/l2r10-baseline/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1080/generation_config.json b/runs/l2r10-baseline/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1080/model.safetensors b/runs/l2r10-baseline/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..a24cc93cc1cf78bfb76b8b1958cab40057aaf01b
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:585859bea874de2a01ff1706e0a43e1c22af52cdb38ed8d7e806d296f71cd3bf
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-1080/optimizer.pt b/runs/l2r10-baseline/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..922c24e741f7470f24eb5fdce53ce10055ce1b4c
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e6a776a123b93c27a75aaa2cdd7ee5bf6a151cdfa2399cca19e5c99cf0338f6
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-1080/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..691b2ea3e1b4f187dd5e6c0cda81e8858f6ac4cf
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:25e1b415517c5fe22089b6e5af2651408c03277402e7a2e6910a756d01bc912d
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1080/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8832e70f2d40e03d52900feac4951dac7fa3ec89
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5eac241b5f2b35e77529d15f1fe989e6cbe8bfc9e18a3b3e5d842da1f82ab4e2
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1080/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-1080/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..cc6afe867703008555530c3c86fd6cf35ab7d7b1
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e2e72c528a5f7c6676fb4c9abd29d59ee303309497199e2b8bea743dbd9d88db
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1080/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-1080/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4eb9917247f226d9cb7ed167e78dae92754ce06b
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:40d0c6d939e35fba984de75edb8ae6eeab9a914372a646423e26bfff4aff7f03
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1080/scheduler.pt b/runs/l2r10-baseline/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6460bf7d5e8aadff08654c5c446813d18e721d62
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bd8f1c3c3cf1427d3265ecb044cf76510643402bb89ce35df8f605375b066d14
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-1080/tokenizer.json b/runs/l2r10-baseline/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1080/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1080/trainer_state.json b/runs/l2r10-baseline/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..fc2bece02b8f4aff917ccaed58549545a2d2df2e
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "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.604420041998336e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-1080/training_args.bin b/runs/l2r10-baseline/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-1440/chat_template.jinja b/runs/l2r10-baseline/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1440/config.json b/runs/l2r10-baseline/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1440/generation_config.json b/runs/l2r10-baseline/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1440/model.safetensors b/runs/l2r10-baseline/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0906124eab1802814844b4b234f7b42751ef8740
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8fba3c3fed5e63905d5c66416d0ddf52514d5aec25ef30f029c926e467d40d71
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-1440/optimizer.pt b/runs/l2r10-baseline/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0c5d235f22c61f40692c99afb69fc95992d092ae
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:10c0025d1c864cc6024c533811187c83b231a39f147c7edef5832f40784041b8
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-1440/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..aeac82010ce2bacd37bd6af051976d38c4fe2812
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2b1dfed66aea4e59c5fbb97f6f7b9eedaa2102bc813da51af9a94ba9c42b0e8c
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1440/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f1f618778c4f7500b21ac62d13c3ef2bebccd4b9
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:31bbc97cda656d11c5036ea59105511b2f07d7b2834b974ae356d2de6f8d922d
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1440/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-1440/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5fdc074e62a1d8319b7a92b775a1095e5ea19aad
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f54eefd68dc84d612a90080eb0724dd4cdddd67659a3ca9aa7aeb336ba20c1fe
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1440/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-1440/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ffe532f21731696b54618fdc406075cce9e04300
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:37d7701ca99aff6a37aa49666cef9609252548ec1ef723213fedc3c95ad648af
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1440/scheduler.pt b/runs/l2r10-baseline/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..59b8db4a485766e1d20d11a905a37774da0cec09
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2fe49e98b5d706cd9174dc7cf5e5cd5039ca03537426b9020792a5363720022f
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-1440/tokenizer.json b/runs/l2r10-baseline/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1440/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1440/trainer_state.json b/runs/l2r10-baseline/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..304cf54beadbf2a50a8ae52f7dde222b2dbf2e06
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "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.139226722664448e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-1440/training_args.bin b/runs/l2r10-baseline/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-1800/chat_template.jinja b/runs/l2r10-baseline/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1800/config.json b/runs/l2r10-baseline/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1800/generation_config.json b/runs/l2r10-baseline/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1800/model.safetensors b/runs/l2r10-baseline/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c2d9db5d2b4bc840e7e3abafa1e5491f6ede74a1
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:74659c82772775f30000e109dba13c05c990af84e4598514d342aab8b2658d69
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-1800/optimizer.pt b/runs/l2r10-baseline/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4eba6de28f87050a9396a32d18078b00730ff651
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e73a7d8588099a362e5fca586a7d867d9846a2f99b671d47fe67c0895f069b88
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-1800/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0e1e82cfece0f9f4b960303264240de21a41f2b2
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8303cc5f635d6851ead500cf1dcb6114b8355d49a2ca28015d085bed26a36524
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1800/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4b06db675e31ec9653c89af439b51ab40f3cdab3
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:99e1b9386d1bf84a8e2951517d247f0644fbc1877429b25df213b0870f58484c
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1800/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-1800/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..88526073cc9c988c98d9074803bd3fbc38252bdd
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cb42dab9f2cc8d80099e5d46382913710a69bfab9566367bb8641baf78018e00
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1800/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-1800/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a9ec1a11b85512a95c1b62566c99d6bf9aa9c3ee
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:34a8598ceeb75c2fc78a1e5b43d2d5910250c2ea2784dd658d38680cdcec97b0
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-1800/scheduler.pt b/runs/l2r10-baseline/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6e0ba2afe167e5831737cd4b431b166033f17fab
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ee9cab552a4cabfd465ec6f079c65fbe7304d4a3df75e2e2b3e2eb614e447c70
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-1800/tokenizer.json b/runs/l2r10-baseline/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1800/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-1800/trainer_state.json b/runs/l2r10-baseline/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..33236f586de7aaef00c7785ad1a489ea8e241750
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "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.67403340333056e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-1800/training_args.bin b/runs/l2r10-baseline/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-2160/chat_template.jinja b/runs/l2r10-baseline/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2160/config.json b/runs/l2r10-baseline/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2160/generation_config.json b/runs/l2r10-baseline/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2160/model.safetensors b/runs/l2r10-baseline/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6adeb108ae09e39a6af5b4649c9af26e75135d68
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77d970fab243c05ad58f0fe820777b041c4cfdc8edb65095ffb0ec97a1536936
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-2160/optimizer.pt b/runs/l2r10-baseline/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84ff4fb04665fa73141f921926625cb1ef40989a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db81725683ac8c2d380b7c9e1719e2801fd4bd39d0467460d9d35ca1bc993f8c
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-2160/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..88d2248182b7fded85e1613b19e4b23df99807a8
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:08099d951fe225043bf5ed73f707acf33614689f66757b2a05711985ae68a49b
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2160/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f963be7f5cfeb7d06680588884ac6cd1c88f6843
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7de227da758404393630309e80adc97b4c158340b31e1f8ecfafc00d86ec519e
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2160/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-2160/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..45ba75ff4448dedf7ab83e4464cb19a4bce5fc27
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:afa836b4fa8a014b4e440884fd4c2cf366a9b2474a622d72ac44bf2bedb57156
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2160/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-2160/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..181c4a277a2b37c89f2d06083f8b4a7ca6902792
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6d94af1ab380b7f215a5ee3d3b50ab122adbd3dd0abfe48c29e83850925e0fa9
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2160/scheduler.pt b/runs/l2r10-baseline/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..35aefe7762df83336d8bfddab210c09c85e6b3aa
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a7d6a0a5c94f665a32f55d7b034b4fc829f9f44c468d851ff5b24b22d8388e63
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-2160/tokenizer.json b/runs/l2r10-baseline/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2160/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2160/trainer_state.json b/runs/l2r10-baseline/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a049ed911842d5df0b916d9f75a4456d8ca57341
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.099128723144531,
+ "eval_runtime": 56.8396,
+ "eval_samples_per_second": 42.963,
+ "eval_steps_per_second": 1.355,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02650369331240654,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.245565414428711,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.03795403614640236,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.2313404083251953,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.03605008125305176,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.2457761764526367,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.033865656703710556,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.236895799636841,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.03908597305417061,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.278275489807129,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.040220506489276886,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.2598671913146973,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.03662317618727684,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.288180112838745,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.03467962145805359,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.282745122909546,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.03267224133014679,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.256056547164917,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.033073775470256805,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.259392261505127,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.03392944857478142,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.2664551734924316,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.03331601992249489,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.272479295730591,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.032030750066041946,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.278921127319336,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.031217405572533607,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.269260883331299,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.028545768931508064,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.2556514739990234,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.029085848480463028,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.2199110984802246,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.027847737073898315,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.267047643661499,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.028855187818408012,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.267087459564209,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.027484651654958725,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.276724338531494,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.026942569762468338,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.2841362953186035,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.027965093031525612,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.2546982765197754,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.027496227994561195,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.2300760746002197,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.026141833513975143,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.2681469917297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.026588531211018562,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.295330047607422,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.0282877366989851,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.246816635131836,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.02680497244000435,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.2756869792938232,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02529861032962799,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.292912006378174,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.027711933478713036,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.328094244003296,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.026861567050218582,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.2854347229003906,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.026213087141513824,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.2591683864593506,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.025807173922657967,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.2941884994506836,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.024857092648744583,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.2978360652923584,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.024767041206359863,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.292267322540283,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.02368018589913845,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.2653818130493164,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02389381267130375,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.3316941261291504,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.024605995044112206,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.2812769412994385,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.024144303053617477,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.2859184741973877,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02431401051580906,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.3373374938964844,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.026107139885425568,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.279526948928833,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.024653980508446693,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.3347928524017334,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.025357453152537346,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.2909247875213623,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.024386251345276833,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.314579963684082,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.024505093693733215,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.3231546878814697,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.02523699961602688,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.271603584289551,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.024947956204414368,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.318005084991455,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024697156623005867,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.3308792114257812,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.023375261574983597,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.285569667816162,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.023240001872181892,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.2877140045166016,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.02440231665968895,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.325361967086792,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02395760267972946,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.3355207443237305,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.02394867315888405,
+ "learning_rate": 0.000303,
+ "loss": 3.3411712646484375,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.026035571470856667,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.3467907905578613,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02454688586294651,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.307335138320923,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.023200271651148796,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.3416378498077393,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.02673390321433544,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.33894944190979,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02540498599410057,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.2643580436706543,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02263791486620903,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.3205347061157227,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.023672081530094147,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.342198371887207,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02290850505232811,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.360527515411377,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.02199256792664528,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.313976287841797,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.02408529259264469,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.2987663745880127,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.022791776806116104,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.3329124450683594,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.023352347314357758,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.342763662338257,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.0230550616979599,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.3260750770568848,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.02257031761109829,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.33486270904541,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023672664538025856,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.342003345489502,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.024178389459848404,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.3288965225219727,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.022518686950206757,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.335498809814453,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.022953400388360023,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.319986581802368,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024052146822214127,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.2925193309783936,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.0233283843845129,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.3660390377044678,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.02665606327354908,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.2953720092773438,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.118098258972168,
+ "eval_runtime": 57.5101,
+ "eval_samples_per_second": 42.462,
+ "eval_steps_per_second": 1.339,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.02890697494149208,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.249951124191284,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.041633449494838715,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.2009143829345703,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.045876361429691315,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.243760585784912,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.04569151997566223,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.1994779109954834,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.04899405315518379,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.17582631111145,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.04929453134536743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.23600435256958,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.04230935871601105,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.252906560897827,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.03628655895590782,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.259765863418579,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.03702453523874283,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.214686393737793,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.03758135810494423,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.250516653060913,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.03414451703429222,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.2239394187927246,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.03131867200136185,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.2182369232177734,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.032515935599803925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.201007843017578,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.0324273519217968,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.2108006477355957,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0289190411567688,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.2271595001220703,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.030286597087979317,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.2005205154418945,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.029980774968862534,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.2406399250030518,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.030094027519226074,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.22554349899292,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.027732938528060913,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.191636085510254,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.02878301590681076,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.231097936630249,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.02830193005502224,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.2348110675811768,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.027315426617860794,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.236872434616089,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.02744620479643345,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.239691734313965,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.02737320400774479,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.2365617752075195,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.027895567938685417,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.2656173706054688,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.028630778193473816,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.2649641036987305,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.026158377528190613,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.205411911010742,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.02790597826242447,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.249823808670044,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.0281178280711174,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.2284631729125977,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.026781145483255386,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.2646565437316895,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.02716926671564579,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.23388934135437,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.026623109355568886,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.28131103515625,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.02563607692718506,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.2354767322540283,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.027210721746087074,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.2772653102874756,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.026623180136084557,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.280789613723755,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.026812341064214706,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.2569217681884766,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025391709059476852,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.239611864089966,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.028013214468955994,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.2758724689483643,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.02640947885811329,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.261630058288574,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02424028143286705,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.2681832313537598,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.025359483435750008,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.290400743484497,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.026214027777314186,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.242974281311035,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.025660529732704163,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.2581229209899902,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.025018133223056793,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.314174175262451,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.026054153218865395,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.2657594680786133,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.02707616798579693,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.2682297229766846,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.025845540687441826,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.2810416221618652,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02462257817387581,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.2729787826538086,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.0247847568243742,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.2813968658447266,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.024695508182048798,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.281198501586914,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02510354481637478,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.2675232887268066,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02423112839460373,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.313127279281616,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.023726003244519234,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.247558355331421,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.02415836974978447,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.298170804977417,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.0245672520250082,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.2992563247680664,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.023869989439845085,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.271489381790161,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023803818970918655,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.277963399887085,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.02492332085967064,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.2893974781036377,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024075444787740707,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.2436158657073975,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.024968193843960762,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.2588701248168945,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.02316642552614212,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.288280487060547,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.024051489308476448,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.338749647140503,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.024682875722646713,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.310123920440674,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023569269105792046,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.2981066703796387,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023198245093226433,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.3373751640319824,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.024926021695137024,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.284407138824463,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023436030372977257,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.286210775375366,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022795837372541428,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.2836194038391113,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.025310585275292397,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.315124750137329,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.023906854912638664,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.273519515991211,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.023158904165029526,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.3090248107910156,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.02710728347301483,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.3370521068573,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.1380791664123535,
+ "eval_runtime": 57.828,
+ "eval_samples_per_second": 42.229,
+ "eval_steps_per_second": 1.332,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028397580608725548,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.157905340194702,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.038552045822143555,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.168872833251953,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.03612525016069412,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.1779890060424805,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.034037038683891296,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.1505064964294434,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.03745132312178612,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.1749038696289062,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.0375814326107502,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.1900854110717773,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.03265482187271118,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.148488759994507,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.028728758916258812,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.1728153228759766,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.027440344914793968,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.175471544265747,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.028495166450738907,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.1602094173431396,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.027664585039019585,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.178624391555786,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.02791575901210308,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.1330881118774414,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.028835628181695938,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.201948642730713,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.030627859756350517,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.2166032791137695,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.030933234840631485,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.2238168716430664,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.028820496052503586,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.166398763656616,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.028881458565592766,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.2101995944976807,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.03201906755566597,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.188455581665039,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.033344775438308716,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.1890811920166016,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03553580492734909,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.1949586868286133,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036840688437223434,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.208887815475464,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03239849954843521,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.2023463249206543,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.02859567478299141,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.2354788780212402,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.029732951894402504,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.16135311126709,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03067614696919918,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.1891722679138184,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03014565072953701,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.2443408966064453,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.02737642452120781,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.22528076171875,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.02632616087794304,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.2110209465026855,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02590067684650421,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.205991268157959,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.026110181584954262,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.2602338790893555,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.02733764797449112,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.2435476779937744,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.026461347937583923,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.2302608489990234,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.024851882830262184,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.237276554107666,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.027676021680235863,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.2511582374572754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.028534185141324997,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.218414783477783,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.02874479629099369,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.2452523708343506,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.026604484766721725,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.2343528270721436,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.025352559983730316,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.2056655883789062,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.02720716781914234,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.2509307861328125,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.027365729212760925,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.1912002563476562,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.02664838545024395,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.242295265197754,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.026786725968122482,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.2326836585998535,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.02805040217936039,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.2520134449005127,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.026042792946100235,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.200939178466797,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.024807952344417572,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.27309250831604,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.027628514915704727,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.230095386505127,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02674996852874756,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.2413103580474854,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.025710299611091614,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.238966464996338,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.02538335882127285,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.2255516052246094,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.025578321889042854,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.2096924781799316,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02601344883441925,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.2297346591949463,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.026096008718013763,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.241189479827881,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02780098281800747,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.251811981201172,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.027289612218737602,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.2270426750183105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.026324691250920296,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.2375741004943848,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02650313824415207,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.2548668384552,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.026873862370848656,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.2308764457702637,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.026542654260993004,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.265718460083008,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.025225713849067688,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.2674314975738525,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.026227261871099472,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.2573204040527344,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02565634436905384,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.213150978088379,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.025645481422543526,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.256298303604126,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.026869403198361397,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.280714750289917,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.02498205378651619,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.2348437309265137,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024347074329853058,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.264981985092163,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.02532394789159298,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.2695374488830566,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.02515113539993763,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.2553372383117676,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.02415953390300274,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.2565059661865234,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.024644216522574425,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.250833034515381,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.02456027641892433,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.2761712074279785,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.02426525205373764,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.2629470825195312,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.028048187494277954,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.2276482582092285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.158375263214111,
+ "eval_runtime": 57.2344,
+ "eval_samples_per_second": 42.667,
+ "eval_steps_per_second": 1.345,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.02946070209145546,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.121852159500122,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.03865921497344971,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.1245241165161133,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.03603826463222504,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.1450228691101074,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.03139101341366768,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.1472625732421875,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.034746382385492325,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.151329755783081,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.03474539518356323,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.1338629722595215,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.033249594271183014,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.156055212020874,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.031936001032590866,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.141859292984009,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.03096783347427845,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.1524581909179688,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.03065602481365204,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.186131477355957,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.030547183007001877,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.1329398155212402,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.02896001562476158,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.1926004886627197,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.028308730572462082,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.1565964221954346,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.028324034065008163,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.1669921875,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.028712721541523933,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.1584408283233643,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.029040448367595673,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.1685431003570557,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.0281654242426157,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.166020393371582,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.02892228588461876,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.1665492057800293,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.029494833201169968,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.154541254043579,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.030289137735962868,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.1542015075683594,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.03235023096203804,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.1689505577087402,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.0317135788500309,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.14835262298584,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.030222205445170403,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.1633877754211426,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.02939915843307972,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.1395506858825684,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.030564088374376297,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.1217494010925293,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.029609909281134605,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.2093873023986816,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.027965130284428596,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.1839005947113037,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.028356825932860374,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.1262643337249756,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.027346370741724968,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.169198513031006,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.027762236073613167,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.163200855255127,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.029112881049513817,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.1838035583496094,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.029743950814008713,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.2060787677764893,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.030414888635277748,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.151318073272705,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026616528630256653,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.162863254547119,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.02728109061717987,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.2224156856536865,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027906913310289383,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.1820082664489746,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.02686009556055069,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.212308168411255,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.02723880484700203,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.195708751678467,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.028102140873670578,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.233551025390625,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.026631979271769524,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.2048614025115967,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.02571697160601616,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.211066722869873,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.026849795132875443,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.1466212272644043,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026982581242918968,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.1449697017669678,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.026633495464920998,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.21518611907959,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02661176398396492,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.1968324184417725,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.027553340420126915,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.1963584423065186,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.028503065928816795,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.164424419403076,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.028009451925754547,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.233910322189331,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.027892669662833214,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.2139945030212402,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.027213294059038162,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.1882662773132324,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.026182152330875397,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.1851303577423096,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02885112725198269,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.2572717666625977,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.028626110404729843,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.203584909439087,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02623717114329338,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.254133462905884,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.027923112735152245,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.221933126449585,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.02818283438682556,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.211678981781006,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026261597871780396,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.188681125640869,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02704189158976078,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.1620755195617676,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.026541976258158684,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.1781210899353027,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.026731157675385475,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.1845755577087402,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02696199342608452,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.2352161407470703,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.02645431086421013,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.214784860610962,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.025962313637137413,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.2050833702087402,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.027177246287465096,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.2680234909057617,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.02790023200213909,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.260568141937256,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.02651599608361721,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.227966547012329,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.02662951685488224,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.2258334159851074,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.025851519778370857,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.206686019897461,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.027288703247904778,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.1935949325561523,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.026220062747597694,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.2079954147338867,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.025760062038898468,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.2240872383117676,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03130556270480156,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.191253900527954,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.180140972137451,
+ "eval_runtime": 58.551,
+ "eval_samples_per_second": 41.707,
+ "eval_steps_per_second": 1.315,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.0355788990855217,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.1215739250183105,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04892604425549507,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.116471529006958,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.04660751670598984,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.1185190677642822,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04066198319196701,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.0865578651428223,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.04082629457116127,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.1207001209259033,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.03933149576187134,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.090609550476074,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.036161698400974274,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.1162736415863037,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.0331297442317009,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.0847244262695312,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.033159028738737106,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.11242938041687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.03180311247706413,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.1014082431793213,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.031308356672525406,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.0722479820251465,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03233671933412552,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.1153006553649902,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.03377128392457962,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.0850257873535156,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.033663321286439896,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.1224865913391113,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.03465031832456589,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.1194047927856445,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03184987232089043,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.1185622215270996,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.02998354844748974,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.1006929874420166,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03301263973116875,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.1423110961914062,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.031899046152830124,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.1092641353607178,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.030688438564538956,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.130136013031006,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.03196574002504349,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.112138271331787,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.033352479338645935,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.1272900104522705,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.03180698677897453,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.157930374145508,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.029812967404723167,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.1247220039367676,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.028813188895583153,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.089658260345459,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03237403556704521,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.138625383377075,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.03242601826786995,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.086696147918701,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.030924616381525993,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.1654038429260254,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.029315272346138954,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.1636850833892822,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.029705161228775978,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.1628870964050293,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.027950260788202286,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.1637582778930664,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.02769061177968979,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.1565256118774414,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.02836288884282112,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.148399829864502,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.02915837988257408,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.163072109222412,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.027166903018951416,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.106757640838623,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.027938751503825188,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.160259246826172,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.02934502437710762,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.141427516937256,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.027676397934556007,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.190730571746826,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.02690025605261326,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.1713430881500244,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.02652641572058201,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.137932777404785,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.027723152190446854,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.1590471267700195,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.02680366300046444,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.1951065063476562,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.027073737233877182,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.154332160949707,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.02711140178143978,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.178050994873047,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.026306450366973877,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.1711394786834717,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0266092661768198,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.153665065765381,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.0270571056753397,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.1791672706604004,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.02735244855284691,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.193817138671875,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.027825796976685524,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.192131519317627,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.02676193043589592,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.181812047958374,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.027864079922437668,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.1917107105255127,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.05341985076665878,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.1917757987976074,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.02956882305443287,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.163125991821289,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.028512390330433846,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.1717798709869385,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.028295889496803284,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.1639628410339355,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.027207838371396065,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.2133731842041016,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.028072115033864975,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.176164150238037,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.028681570664048195,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.18463134765625,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.027309462428092957,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.1805896759033203,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.027211535722017288,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.16485333442688,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.027867497876286507,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.1531105041503906,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.027384409680962563,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.2058889865875244,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.027143698185682297,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.157866954803467,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.027240339666604996,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.2181386947631836,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.028287801891565323,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.193422317504883,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.027239253744482994,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.189561367034912,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.028243936598300934,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.1677606105804443,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.02861366607248783,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.1926746368408203,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.0283220075070858,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.2236387729644775,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.02835279330611229,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.1697449684143066,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.02796671725809574,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.1984987258911133,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03166359290480614,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.19610595703125,
+ "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.208840083996672e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-2160/training_args.bin b/runs/l2r10-baseline/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-2520/chat_template.jinja b/runs/l2r10-baseline/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2520/config.json b/runs/l2r10-baseline/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2520/generation_config.json b/runs/l2r10-baseline/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2520/model.safetensors b/runs/l2r10-baseline/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..43726e84b037eceb893219b4e724144984429bb3
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cad3b56ff5e246d34dd08cb1c254ab6d2b9e7784b9cfef89233f868dd63c8bf6
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-2520/optimizer.pt b/runs/l2r10-baseline/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4081a8fddfb19bb6cff4c95ec0439f8b2ba9d81f
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1f3a69237c4f066c4094108c0b4cdc50d5643d25cab5e233e4503da6fcb99633
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-2520/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..eaeeea885c2ef4b0cef75101a8e62f4ab4851bd2
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d1e03ae1cb1232d1d92f456eeb7fed9b86dbea40002020bd21a8bff940afba04
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2520/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..81543e2df97bda93c650637e0e76e6eba567cc34
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:204f99921454e515b3056a84d1cf89d690447610764df571b00287728068baff
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2520/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-2520/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4ff4a5c1c578c912bb73e9e1039feddae85108d0
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9add74f0deb40ada69213c31c9eb2148f496716039a30fb746923520918c78da
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2520/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-2520/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fc461818ec193e0f1784351202790a5fa22189ee
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ff9312b009886e7daf125d940b7a052dd2e1a5c49cb82b56a0aaa5ca1c30fb9a
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2520/scheduler.pt b/runs/l2r10-baseline/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b53f13f877641b522f2c435934f587fdad6161cc
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f776ea81adcefd29eff4d7371e55373e8890bd750697e1c8b781d131e0a39a6
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-2520/tokenizer.json b/runs/l2r10-baseline/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2520/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2520/trainer_state.json b/runs/l2r10-baseline/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..f5d0793b83016c7906674eca26e41e0439b41b0f
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.099128723144531,
+ "eval_runtime": 56.8396,
+ "eval_samples_per_second": 42.963,
+ "eval_steps_per_second": 1.355,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02650369331240654,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.245565414428711,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.03795403614640236,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.2313404083251953,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.03605008125305176,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.2457761764526367,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.033865656703710556,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.236895799636841,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.03908597305417061,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.278275489807129,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.040220506489276886,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.2598671913146973,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.03662317618727684,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.288180112838745,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.03467962145805359,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.282745122909546,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.03267224133014679,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.256056547164917,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.033073775470256805,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.259392261505127,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.03392944857478142,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.2664551734924316,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.03331601992249489,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.272479295730591,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.032030750066041946,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.278921127319336,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.031217405572533607,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.269260883331299,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.028545768931508064,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.2556514739990234,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.029085848480463028,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.2199110984802246,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.027847737073898315,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.267047643661499,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.028855187818408012,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.267087459564209,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.027484651654958725,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.276724338531494,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.026942569762468338,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.2841362953186035,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.027965093031525612,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.2546982765197754,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.027496227994561195,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.2300760746002197,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.026141833513975143,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.2681469917297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.026588531211018562,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.295330047607422,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.0282877366989851,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.246816635131836,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.02680497244000435,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.2756869792938232,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02529861032962799,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.292912006378174,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.027711933478713036,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.328094244003296,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.026861567050218582,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.2854347229003906,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.026213087141513824,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.2591683864593506,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.025807173922657967,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.2941884994506836,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.024857092648744583,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.2978360652923584,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.024767041206359863,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.292267322540283,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.02368018589913845,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.2653818130493164,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02389381267130375,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.3316941261291504,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.024605995044112206,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.2812769412994385,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.024144303053617477,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.2859184741973877,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02431401051580906,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.3373374938964844,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.026107139885425568,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.279526948928833,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.024653980508446693,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.3347928524017334,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.025357453152537346,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.2909247875213623,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.024386251345276833,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.314579963684082,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.024505093693733215,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.3231546878814697,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.02523699961602688,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.271603584289551,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.024947956204414368,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.318005084991455,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024697156623005867,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.3308792114257812,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.023375261574983597,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.285569667816162,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.023240001872181892,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.2877140045166016,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.02440231665968895,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.325361967086792,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02395760267972946,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.3355207443237305,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.02394867315888405,
+ "learning_rate": 0.000303,
+ "loss": 3.3411712646484375,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.026035571470856667,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.3467907905578613,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02454688586294651,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.307335138320923,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.023200271651148796,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.3416378498077393,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.02673390321433544,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.33894944190979,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02540498599410057,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.2643580436706543,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02263791486620903,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.3205347061157227,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.023672081530094147,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.342198371887207,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02290850505232811,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.360527515411377,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.02199256792664528,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.313976287841797,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.02408529259264469,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.2987663745880127,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.022791776806116104,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.3329124450683594,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.023352347314357758,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.342763662338257,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.0230550616979599,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.3260750770568848,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.02257031761109829,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.33486270904541,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023672664538025856,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.342003345489502,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.024178389459848404,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.3288965225219727,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.022518686950206757,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.335498809814453,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.022953400388360023,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.319986581802368,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024052146822214127,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.2925193309783936,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.0233283843845129,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.3660390377044678,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.02665606327354908,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.2953720092773438,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.118098258972168,
+ "eval_runtime": 57.5101,
+ "eval_samples_per_second": 42.462,
+ "eval_steps_per_second": 1.339,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.02890697494149208,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.249951124191284,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.041633449494838715,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.2009143829345703,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.045876361429691315,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.243760585784912,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.04569151997566223,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.1994779109954834,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.04899405315518379,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.17582631111145,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.04929453134536743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.23600435256958,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.04230935871601105,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.252906560897827,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.03628655895590782,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.259765863418579,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.03702453523874283,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.214686393737793,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.03758135810494423,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.250516653060913,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.03414451703429222,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.2239394187927246,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.03131867200136185,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.2182369232177734,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.032515935599803925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.201007843017578,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.0324273519217968,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.2108006477355957,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0289190411567688,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.2271595001220703,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.030286597087979317,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.2005205154418945,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.029980774968862534,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.2406399250030518,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.030094027519226074,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.22554349899292,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.027732938528060913,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.191636085510254,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.02878301590681076,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.231097936630249,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.02830193005502224,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.2348110675811768,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.027315426617860794,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.236872434616089,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.02744620479643345,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.239691734313965,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.02737320400774479,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.2365617752075195,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.027895567938685417,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.2656173706054688,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.028630778193473816,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.2649641036987305,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.026158377528190613,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.205411911010742,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.02790597826242447,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.249823808670044,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.0281178280711174,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.2284631729125977,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.026781145483255386,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.2646565437316895,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.02716926671564579,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.23388934135437,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.026623109355568886,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.28131103515625,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.02563607692718506,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.2354767322540283,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.027210721746087074,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.2772653102874756,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.026623180136084557,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.280789613723755,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.026812341064214706,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.2569217681884766,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025391709059476852,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.239611864089966,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.028013214468955994,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.2758724689483643,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.02640947885811329,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.261630058288574,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02424028143286705,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.2681832313537598,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.025359483435750008,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.290400743484497,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.026214027777314186,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.242974281311035,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.025660529732704163,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.2581229209899902,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.025018133223056793,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.314174175262451,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.026054153218865395,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.2657594680786133,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.02707616798579693,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.2682297229766846,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.025845540687441826,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.2810416221618652,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02462257817387581,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.2729787826538086,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.0247847568243742,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.2813968658447266,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.024695508182048798,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.281198501586914,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02510354481637478,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.2675232887268066,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02423112839460373,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.313127279281616,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.023726003244519234,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.247558355331421,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.02415836974978447,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.298170804977417,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.0245672520250082,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.2992563247680664,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.023869989439845085,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.271489381790161,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023803818970918655,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.277963399887085,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.02492332085967064,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.2893974781036377,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024075444787740707,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.2436158657073975,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.024968193843960762,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.2588701248168945,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.02316642552614212,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.288280487060547,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.024051489308476448,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.338749647140503,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.024682875722646713,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.310123920440674,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023569269105792046,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.2981066703796387,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023198245093226433,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.3373751640319824,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.024926021695137024,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.284407138824463,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023436030372977257,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.286210775375366,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022795837372541428,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.2836194038391113,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.025310585275292397,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.315124750137329,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.023906854912638664,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.273519515991211,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.023158904165029526,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.3090248107910156,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.02710728347301483,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.3370521068573,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.1380791664123535,
+ "eval_runtime": 57.828,
+ "eval_samples_per_second": 42.229,
+ "eval_steps_per_second": 1.332,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028397580608725548,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.157905340194702,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.038552045822143555,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.168872833251953,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.03612525016069412,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.1779890060424805,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.034037038683891296,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.1505064964294434,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.03745132312178612,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.1749038696289062,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.0375814326107502,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.1900854110717773,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.03265482187271118,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.148488759994507,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.028728758916258812,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.1728153228759766,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.027440344914793968,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.175471544265747,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.028495166450738907,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.1602094173431396,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.027664585039019585,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.178624391555786,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.02791575901210308,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.1330881118774414,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.028835628181695938,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.201948642730713,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.030627859756350517,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.2166032791137695,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.030933234840631485,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.2238168716430664,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.028820496052503586,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.166398763656616,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.028881458565592766,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.2101995944976807,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.03201906755566597,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.188455581665039,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.033344775438308716,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.1890811920166016,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03553580492734909,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.1949586868286133,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036840688437223434,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.208887815475464,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03239849954843521,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.2023463249206543,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.02859567478299141,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.2354788780212402,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.029732951894402504,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.16135311126709,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03067614696919918,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.1891722679138184,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03014565072953701,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.2443408966064453,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.02737642452120781,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.22528076171875,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.02632616087794304,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.2110209465026855,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02590067684650421,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.205991268157959,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.026110181584954262,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.2602338790893555,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.02733764797449112,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.2435476779937744,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.026461347937583923,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.2302608489990234,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.024851882830262184,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.237276554107666,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.027676021680235863,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.2511582374572754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.028534185141324997,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.218414783477783,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.02874479629099369,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.2452523708343506,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.026604484766721725,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.2343528270721436,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.025352559983730316,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.2056655883789062,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.02720716781914234,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.2509307861328125,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.027365729212760925,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.1912002563476562,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.02664838545024395,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.242295265197754,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.026786725968122482,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.2326836585998535,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.02805040217936039,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.2520134449005127,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.026042792946100235,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.200939178466797,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.024807952344417572,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.27309250831604,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.027628514915704727,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.230095386505127,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02674996852874756,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.2413103580474854,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.025710299611091614,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.238966464996338,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.02538335882127285,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.2255516052246094,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.025578321889042854,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.2096924781799316,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02601344883441925,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.2297346591949463,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.026096008718013763,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.241189479827881,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02780098281800747,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.251811981201172,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.027289612218737602,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.2270426750183105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.026324691250920296,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.2375741004943848,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02650313824415207,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.2548668384552,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.026873862370848656,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.2308764457702637,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.026542654260993004,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.265718460083008,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.025225713849067688,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.2674314975738525,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.026227261871099472,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.2573204040527344,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02565634436905384,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.213150978088379,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.025645481422543526,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.256298303604126,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.026869403198361397,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.280714750289917,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.02498205378651619,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.2348437309265137,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024347074329853058,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.264981985092163,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.02532394789159298,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.2695374488830566,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.02515113539993763,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.2553372383117676,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.02415953390300274,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.2565059661865234,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.024644216522574425,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.250833034515381,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.02456027641892433,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.2761712074279785,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.02426525205373764,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.2629470825195312,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.028048187494277954,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.2276482582092285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.158375263214111,
+ "eval_runtime": 57.2344,
+ "eval_samples_per_second": 42.667,
+ "eval_steps_per_second": 1.345,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.02946070209145546,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.121852159500122,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.03865921497344971,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.1245241165161133,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.03603826463222504,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.1450228691101074,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.03139101341366768,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.1472625732421875,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.034746382385492325,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.151329755783081,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.03474539518356323,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.1338629722595215,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.033249594271183014,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.156055212020874,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.031936001032590866,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.141859292984009,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.03096783347427845,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.1524581909179688,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.03065602481365204,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.186131477355957,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.030547183007001877,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.1329398155212402,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.02896001562476158,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.1926004886627197,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.028308730572462082,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.1565964221954346,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.028324034065008163,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.1669921875,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.028712721541523933,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.1584408283233643,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.029040448367595673,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.1685431003570557,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.0281654242426157,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.166020393371582,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.02892228588461876,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.1665492057800293,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.029494833201169968,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.154541254043579,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.030289137735962868,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.1542015075683594,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.03235023096203804,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.1689505577087402,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.0317135788500309,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.14835262298584,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.030222205445170403,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.1633877754211426,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.02939915843307972,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.1395506858825684,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.030564088374376297,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.1217494010925293,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.029609909281134605,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.2093873023986816,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.027965130284428596,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.1839005947113037,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.028356825932860374,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.1262643337249756,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.027346370741724968,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.169198513031006,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.027762236073613167,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.163200855255127,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.029112881049513817,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.1838035583496094,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.029743950814008713,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.2060787677764893,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.030414888635277748,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.151318073272705,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026616528630256653,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.162863254547119,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.02728109061717987,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.2224156856536865,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027906913310289383,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.1820082664489746,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.02686009556055069,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.212308168411255,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.02723880484700203,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.195708751678467,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.028102140873670578,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.233551025390625,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.026631979271769524,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.2048614025115967,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.02571697160601616,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.211066722869873,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.026849795132875443,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.1466212272644043,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026982581242918968,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.1449697017669678,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.026633495464920998,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.21518611907959,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02661176398396492,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.1968324184417725,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.027553340420126915,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.1963584423065186,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.028503065928816795,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.164424419403076,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.028009451925754547,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.233910322189331,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.027892669662833214,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.2139945030212402,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.027213294059038162,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.1882662773132324,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.026182152330875397,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.1851303577423096,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02885112725198269,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.2572717666625977,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.028626110404729843,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.203584909439087,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02623717114329338,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.254133462905884,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.027923112735152245,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.221933126449585,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.02818283438682556,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.211678981781006,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026261597871780396,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.188681125640869,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02704189158976078,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.1620755195617676,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.026541976258158684,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.1781210899353027,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.026731157675385475,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.1845755577087402,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02696199342608452,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.2352161407470703,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.02645431086421013,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.214784860610962,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.025962313637137413,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.2050833702087402,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.027177246287465096,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.2680234909057617,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.02790023200213909,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.260568141937256,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.02651599608361721,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.227966547012329,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.02662951685488224,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.2258334159851074,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.025851519778370857,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.206686019897461,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.027288703247904778,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.1935949325561523,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.026220062747597694,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.2079954147338867,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.025760062038898468,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.2240872383117676,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03130556270480156,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.191253900527954,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.180140972137451,
+ "eval_runtime": 58.551,
+ "eval_samples_per_second": 41.707,
+ "eval_steps_per_second": 1.315,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.0355788990855217,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.1215739250183105,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04892604425549507,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.116471529006958,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.04660751670598984,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.1185190677642822,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04066198319196701,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.0865578651428223,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.04082629457116127,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.1207001209259033,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.03933149576187134,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.090609550476074,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.036161698400974274,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.1162736415863037,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.0331297442317009,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.0847244262695312,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.033159028738737106,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.11242938041687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.03180311247706413,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.1014082431793213,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.031308356672525406,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.0722479820251465,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03233671933412552,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.1153006553649902,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.03377128392457962,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.0850257873535156,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.033663321286439896,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.1224865913391113,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.03465031832456589,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.1194047927856445,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03184987232089043,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.1185622215270996,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.02998354844748974,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.1006929874420166,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03301263973116875,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.1423110961914062,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.031899046152830124,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.1092641353607178,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.030688438564538956,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.130136013031006,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.03196574002504349,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.112138271331787,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.033352479338645935,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.1272900104522705,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.03180698677897453,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.157930374145508,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.029812967404723167,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.1247220039367676,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.028813188895583153,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.089658260345459,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03237403556704521,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.138625383377075,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.03242601826786995,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.086696147918701,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.030924616381525993,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.1654038429260254,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.029315272346138954,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.1636850833892822,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.029705161228775978,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.1628870964050293,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.027950260788202286,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.1637582778930664,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.02769061177968979,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.1565256118774414,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.02836288884282112,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.148399829864502,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.02915837988257408,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.163072109222412,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.027166903018951416,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.106757640838623,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.027938751503825188,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.160259246826172,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.02934502437710762,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.141427516937256,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.027676397934556007,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.190730571746826,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.02690025605261326,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.1713430881500244,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.02652641572058201,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.137932777404785,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.027723152190446854,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.1590471267700195,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.02680366300046444,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.1951065063476562,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.027073737233877182,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.154332160949707,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.02711140178143978,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.178050994873047,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.026306450366973877,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.1711394786834717,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0266092661768198,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.153665065765381,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.0270571056753397,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.1791672706604004,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.02735244855284691,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.193817138671875,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.027825796976685524,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.192131519317627,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.02676193043589592,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.181812047958374,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.027864079922437668,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.1917107105255127,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.05341985076665878,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.1917757987976074,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.02956882305443287,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.163125991821289,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.028512390330433846,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.1717798709869385,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.028295889496803284,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.1639628410339355,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.027207838371396065,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.2133731842041016,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.028072115033864975,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.176164150238037,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.028681570664048195,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.18463134765625,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.027309462428092957,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.1805896759033203,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.027211535722017288,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.16485333442688,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.027867497876286507,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.1531105041503906,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.027384409680962563,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.2058889865875244,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.027143698185682297,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.157866954803467,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.027240339666604996,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.2181386947631836,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.028287801891565323,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.193422317504883,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.027239253744482994,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.189561367034912,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.028243936598300934,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.1677606105804443,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.02861366607248783,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.1926746368408203,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.0283220075070858,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.2236387729644775,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.02835279330611229,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.1697449684143066,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.02796671725809574,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.1984987258911133,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03166359290480614,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.19610595703125,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.2039618492126465,
+ "eval_runtime": 58.5416,
+ "eval_samples_per_second": 41.714,
+ "eval_steps_per_second": 1.315,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03369779884815216,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.0812559127807617,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05070783197879791,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.0677804946899414,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.051560062915086746,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.057511568069458,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04496128857135773,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.0786938667297363,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.04082498699426651,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.1139144897460938,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.042083434760570526,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.104275941848755,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.038129668682813644,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.0800914764404297,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.03446940705180168,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.076841354370117,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.03592631593346596,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.09020733833313,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.03772344812750816,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.09391713142395,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.034410931169986725,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.0629119873046875,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.03517600893974304,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.065742015838623,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.036171507090330124,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.1003737449645996,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.03234133496880531,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.0920376777648926,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.03142267093062401,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.10030198097229,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.033919043838977814,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.103757381439209,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.031541913747787476,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.083867311477661,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.030086882412433624,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.1067614555358887,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.02972504310309887,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.084838390350342,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.029621386900544167,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.0923590660095215,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.03075578436255455,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.146130084991455,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.030716707929968834,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.1039209365844727,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.03125046566128731,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.1153035163879395,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.02955695241689682,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.135328769683838,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.02832690440118313,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.1040847301483154,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.03152746707201004,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.106022834777832,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.03143440559506416,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.0805022716522217,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.028248652815818787,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.0860421657562256,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.02913457527756691,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.140413522720337,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.02998923510313034,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.129356861114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.030854487791657448,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.121748924255371,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.02916296012699604,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.1009695529937744,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.029774636030197144,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.1226165294647217,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.028826434165239334,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.160597085952759,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.03017219342291355,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.110243558883667,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.028641732409596443,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.0800039768218994,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.028798656538128853,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.179795026779175,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.029349444434046745,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.0988149642944336,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.029021043330430984,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.064181089401245,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.02870240993797779,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.1240763664245605,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.02823748253285885,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.146803140640259,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.028530996292829514,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.1475019454956055,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.029223430901765823,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.1216864585876465,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.027813591063022614,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.101078987121582,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.027918612584471703,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.1277475357055664,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.028475921601057053,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.125309467315674,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.028015555813908577,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.1116862297058105,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026905957609415054,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.100590467453003,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.027701787650585175,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.1296615600585938,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.027875013649463654,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.110649585723877,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.02704387530684471,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.110461473464966,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02804766595363617,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.1070356369018555,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.02761704847216606,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.1334657669067383,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.027547121047973633,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.128934621810913,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.028524842113256454,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.139470100402832,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02890404686331749,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.147649049758911,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02851000428199768,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.140340805053711,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.027430236339569092,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.141169548034668,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.027634181082248688,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.1349918842315674,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.027339693158864975,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.160902261734009,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.0271914079785347,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.1236281394958496,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.028070030733942986,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.14902400970459,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.027782054618000984,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.119905471801758,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.02806680090725422,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.1655449867248535,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.02678612992167473,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.125488758087158,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.026848314329981804,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.124390125274658,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.027314338833093643,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.135408639907837,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.027944346889853477,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.174356460571289,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.027283160015940666,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.1777257919311523,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02715890295803547,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.1342411041259766,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.026732949540019035,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.1567957401275635,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.032828811556100845,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.1452670097351074,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.23610782623291,
+ "eval_runtime": 57.861,
+ "eval_samples_per_second": 42.205,
+ "eval_steps_per_second": 1.331,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.031560398638248444,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.0346384048461914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.045797161757946014,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.0253865718841553,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.03975280746817589,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.064655303955078,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.03750868886709213,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.0535778999328613,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.0428822822868824,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.029329538345337,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.03772140294313431,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.038602113723755,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0340406708419323,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.024937152862549,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.036795567721128464,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.0093514919281006,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.034226614981889725,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.037254571914673,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.034093596041202545,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.0515356063842773,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.03472839668393135,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.020470142364502,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.03269178792834282,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.051333427429199,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.033917032182216644,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.052259922027588,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.03324243798851967,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.0460095405578613,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.032261185348033905,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.053861141204834,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.03396065905690193,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.048023223876953,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.034620821475982666,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.0418081283569336,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.032161977142095566,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.009852886199951,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.031200187280774117,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.0368716716766357,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03394074738025665,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.071866035461426,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.03577565774321556,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.080648422241211,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.03355010226368904,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.056335210800171,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.03100624494254589,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.070770263671875,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.030809594318270683,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.0508432388305664,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.029902741312980652,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.0698328018188477,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.029862644150853157,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.07668137550354,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.030799617990851402,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.0797815322875977,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.030734151601791382,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.0688986778259277,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03087432309985161,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.078287124633789,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.030203802511096,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.0989227294921875,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.030054137110710144,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.108900547027588,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.030525945127010345,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.0743603706359863,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03116847202181816,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.1147680282592773,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.02907412499189377,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.0795233249664307,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.029001710936427116,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.0691943168640137,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03244122490286827,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.0728673934936523,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03296313062310219,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.0621304512023926,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.030616287142038345,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.0865912437438965,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030837416648864746,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.0722920894622803,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.0298515222966671,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.074018955230713,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.02962825447320938,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.0872483253479004,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.0306903887540102,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.1015772819519043,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.02899639680981636,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.080179214477539,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.028741996735334396,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.0685665607452393,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03072701022028923,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.0677199363708496,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.028850078582763672,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.108672618865967,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.028551483526825905,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.1213910579681396,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03012346662580967,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.083681106567383,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.028515953570604324,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.100470781326294,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.030353186652064323,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.12215518951416,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.029224202036857605,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.105957269668579,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.02899855375289917,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.1268749237060547,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.029873481020331383,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.106316328048706,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02885374426841736,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.0703983306884766,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02765561453998089,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.1055452823638916,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.027459438890218735,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.1233561038970947,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.028457194566726685,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.085897445678711,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02814573235809803,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.0763416290283203,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.028196604922413826,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.079221248626709,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027772540226578712,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.101588726043701,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.028152190148830414,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.125788688659668,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.028581861406564713,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.1013102531433105,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.027978789061307907,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.1162004470825195,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.029316946864128113,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.1161651611328125,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.028609825298190117,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.1236777305603027,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028157226741313934,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.0862250328063965,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028885260224342346,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.139831304550171,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.027559489011764526,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.133944272994995,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.028318390250205994,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.144155979156494,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02769157849252224,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.1399827003479004,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.028807122260332108,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.080939769744873,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.033507585525512695,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.1044228076934814,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.260251998901367,
+ "eval_runtime": 57.818,
+ "eval_samples_per_second": 42.236,
+ "eval_steps_per_second": 1.332,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.03682977333664894,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.0096187591552734,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.049676790833473206,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.005502700805664,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.04197567328810692,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.986161231994629,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.040878161787986755,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.0177392959594727,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04427504912018776,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.9872331619262695,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.03664223104715347,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.982750654220581,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.03359461575746536,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.036256790161133,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.03522174432873726,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.9673585891723633,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.036801036447286606,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.9804298877716064,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.03503398597240448,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.0192883014678955,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.03201582282781601,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.0131349563598633,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.034218158572912216,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.018552541732788,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.034080881625413895,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.0217127799987793,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0325000062584877,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.9699440002441406,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.03486644849181175,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.996582508087158,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.033362530171871185,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.0134687423706055,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.03219781443476677,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.028303623199463,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.03249913081526756,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.041970729827881,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.03392951563000679,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.0437307357788086,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.035250015556812286,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.0016467571258545,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03219404071569443,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.9868557453155518,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.034740231931209564,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.0191102027893066,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.03378608450293541,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.9819235801696777,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.03126170486211777,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.0244431495666504,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.0341620147228241,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.025275230407715,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03303704410791397,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.0206751823425293,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.031866636127233505,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.065530300140381,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.03319002315402031,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.035928249359131,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.03198426961898804,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.035161018371582,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.02992428094148636,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.002439260482788,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.03143618628382683,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.0593252182006836,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.030728137120604515,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.043550491333008,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.029600419104099274,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.0696005821228027,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.031791139394044876,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.016582489013672,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.030455080792307854,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.021450996398926,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.0301319882273674,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.0840072631835938,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03059639409184456,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.069697380065918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.031164854764938354,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.0536410808563232,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03087274543941021,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.0589685440063477,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.03018832392990589,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.0317018032073975,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03111763298511505,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.0193753242492676,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.030017679557204247,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.033637046813965,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.030399367213249207,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.0928962230682373,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03129652142524719,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.0451242923736572,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.02999301627278328,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.0762739181518555,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.029050013050436974,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.035623550415039,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.030129432678222656,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.0518558025360107,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03071288764476776,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.070361375808716,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029714390635490417,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.0466830730438232,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031577423214912415,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.0402965545654297,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03088134154677391,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.041398525238037,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03100186213850975,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.0857033729553223,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.03201247379183769,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.0708329677581787,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.030221953988075256,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.0749387741088867,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.03167426586151123,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.086536169052124,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03179052844643593,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.0833234786987305,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.029809722676873207,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.0629539489746094,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03139837831258774,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.1162657737731934,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029216980561614037,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.075932025909424,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.030586371198296547,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.0647311210632324,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.02969566360116005,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.0812134742736816,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.028870539739727974,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.0748748779296875,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.029527587816119194,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.1284332275390625,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.029147129505872726,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.100613594055176,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028313715010881424,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.0623369216918945,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.029429465532302856,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.1212449073791504,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02836095355451107,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.104053497314453,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.028584513813257217,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.1087045669555664,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.0308294165879488,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.0686898231506348,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.028480850160121918,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.056847095489502,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.027765415608882904,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.0788183212280273,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03465089946985245,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.083177328109741,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.289492130279541,
+ "eval_runtime": 57.6739,
+ "eval_samples_per_second": 42.341,
+ "eval_steps_per_second": 1.335,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.03739845007658005,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.971905469894409,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.0454539880156517,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.9235942363739014,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.03972721844911575,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.943814277648926,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.039135806262493134,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.9464917182922363,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.038645751774311066,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.0013396739959717,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.03719992935657501,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.950340986251831,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.03530147671699524,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.013052225112915,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.034085702151060104,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.9704601764678955,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.03628101572394371,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.9669294357299805,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.035743679851293564,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.9868359565734863,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.03441668674349785,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.9880685806274414,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.03296050429344177,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.981017589569092,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.03243963047862053,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.9854543209075928,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.03302016481757164,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.946493148803711,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.033656030893325806,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.9685728549957275,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.03422021493315697,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.0115339756011963,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.034188102930784225,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.9989778995513916,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.031733572483062744,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.9996390342712402,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.03390700742602348,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.995767116546631,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.034200429916381836,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.9650206565856934,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.032906122505664825,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.0107078552246094,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.032964903861284256,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.9816744327545166,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.032815348356962204,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.9982123374938965,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.03259589150547981,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.0009212493896484,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.032530251890420914,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.99307918548584,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.032114770263433456,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.9932491779327393,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.032941076904535294,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.059328556060791,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.03325921669602394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.9920570850372314,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03189065307378769,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.986832857131958,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.0320298932492733,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.986527442932129,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.032062828540802,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.0112881660461426,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.03301781415939331,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.0216145515441895,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.0344916433095932,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.0155141353607178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.0320601612329483,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.9892053604125977,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03163528069853783,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.005617141723633,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0329110287129879,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.0535356998443604,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.030556878075003624,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.0203990936279297,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.031008001416921616,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.02127742767334,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.031155841425061226,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.9743614196777344,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.030541326850652695,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.014299154281616,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.031742338091135025,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.0051097869873047,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.02989187091588974,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.051193952560425,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.030058210715651512,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.017111301422119,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029765194281935692,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.053699016571045,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.030537934973835945,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.013504981994629,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03024795465171337,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.0272743701934814,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030360743403434753,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.030949354171753,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.03035072423517704,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.051844358444214,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030504168942570686,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.049577236175537,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.03011324070394039,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.9918508529663086,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03013714775443077,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.037904977798462,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.030488433316349983,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.027632236480713,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03132355213165283,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.056293249130249,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.03080538846552372,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.0026464462280273,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029128601774573326,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.0270485877990723,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.02996237576007843,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.0554800033569336,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.03137197345495224,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.030535936355591,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03169243037700653,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.006303310394287,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.030219880864024162,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.0744738578796387,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.03023732639849186,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.0363545417785645,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0328553169965744,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.040400981903076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.029735038056969643,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.028709888458252,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.030272237956523895,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.037313461303711,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.03199860826134682,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.0432136058807373,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.02964850887656212,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.0143280029296875,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.032533321529626846,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.075748920440674,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03221677988767624,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.0475339889526367,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.032870691269636154,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.077136993408203,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.0326097346842289,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.046293258666992,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.03128218278288841,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.024522066116333,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.031186817213892937,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.043630599975586,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03708904609084129,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.0491294860839844,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.324725151062012,
+ "eval_runtime": 58.8721,
+ "eval_samples_per_second": 41.48,
+ "eval_steps_per_second": 1.308,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03718156740069389,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.9137024879455566,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.04242836683988571,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.95491361618042,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.034661613404750824,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.931143283843994,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.03455570340156555,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.933091402053833,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.03829373046755791,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.938300132751465,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.037849120795726776,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.9631741046905518,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.036504197865724564,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.9297828674316406,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.032648202031850815,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.9342050552368164,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.03621445596218109,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.9636025428771973,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.03777499124407768,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.9307641983032227,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.03778013959527016,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.9447648525238037,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.034956999123096466,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.9596714973449707,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.033349718898534775,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.9255731105804443,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03491971269249916,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.8907923698425293,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.03583350032567978,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.9661455154418945,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.03390899673104286,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.9769177436828613,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.031930334866046906,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.941274881362915,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.03465861827135086,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.949491024017334,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.03498814254999161,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.9623749256134033,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.03372015431523323,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.952651023864746,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.032251399010419846,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.9634861946105957,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.03347077965736389,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.919717311859131,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.03428836911916733,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.9775307178497314,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.033225737512111664,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.981713056564331,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.033842265605926514,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.99894642829895,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.034690506756305695,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.9432735443115234,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.036143939942121506,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.993316411972046,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.03434835001826286,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.9919919967651367,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.03247698396444321,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.9784095287323,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03651128336787224,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.9647932052612305,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.03521955385804176,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.9638381004333496,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.03404879570007324,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.995042324066162,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.03397255018353462,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.98030948638916,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.034281399101018906,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.9578874111175537,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.03375784680247307,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.9310011863708496,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.032266587018966675,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.017228841781616,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.031346071511507034,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.985002040863037,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03182312101125717,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.968994140625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.031591545790433884,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.966625213623047,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03151732310652733,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.95800518989563,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.032275281846523285,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.9820804595947266,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03335779532790184,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.0172390937805176,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03131173551082611,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.967258930206299,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03147612512111664,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.0259766578674316,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.031647227704524994,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.984004020690918,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030623044818639755,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.9716386795043945,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03214540705084801,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.036837100982666,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03211726248264313,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.0012319087982178,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030490046367049217,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.000899314880371,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031676359474658966,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.999171733856201,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.03196047246456146,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.9652652740478516,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.03154071792960167,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.9977519512176514,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.03187791630625725,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.0295329093933105,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.030363669618964195,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.984137535095215,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.03208064287900925,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.007162094116211,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.030690619722008705,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.995037078857422,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.030634157359600067,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.002346992492676,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.0325019545853138,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.990049362182617,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03119182027876377,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.0190300941467285,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.032793447375297546,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.015969753265381,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03210591524839401,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.0110068321228027,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.031592607498168945,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.015460968017578,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.031449154019355774,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.980496406555176,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.0318843312561512,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.0351834297180176,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.030633851885795593,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.025505542755127,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03055507503449917,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.980363607406616,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.030444832518696785,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.0007693767547607,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.030038077384233475,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.9965107440948486,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030796151608228683,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.0268783569335938,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.032338906079530716,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.0161352157592773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.031326185911893845,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.998199939727783,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03641432896256447,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.99208664894104,
+ "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.0743646764662784e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-2520/training_args.bin b/runs/l2r10-baseline/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-2880/chat_template.jinja b/runs/l2r10-baseline/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2880/config.json b/runs/l2r10-baseline/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2880/generation_config.json b/runs/l2r10-baseline/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2880/model.safetensors b/runs/l2r10-baseline/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..77437a72672d0463581cf4a8baff4842e16ee0fd
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f291888193dea1d43fba2cdfab652607b483f8ef0792d6be35c6807d925fd343
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-2880/optimizer.pt b/runs/l2r10-baseline/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..308dce1210fd7307e4ff3c308556d7522f97a75d
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b654c7e9cfb8ba37ee31e01d93501b0286768d566188389bfe130e891a55306e
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-2880/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1eed9c58539306539e95783f584b6af9962a13aa
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8fdb40f7d7feb2141fb18a3147d2d5c493332cc28b14da91e71d657d8135811
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2880/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..03b4991b2586946db517ecd80aa454a276539730
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fe29fe8c33dd5c34db33472f611b2b2cb42856eaa4d8e3cb680ba90773fae9b3
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2880/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-2880/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f289dd30517f21ee6bf12e142f7b170a99900dd1
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a5ae4f5d1f533a47895f10853e1cf46f26b9d5f6f5e1d5e1cbfe6b4b5519a747
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2880/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-2880/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..6afba15acc0d58b7ef0700827a33ec91e6019f56
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f67a289270df839c0d47d1794df5782c1ebe561d79d660d45cd53225280abf2
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-2880/scheduler.pt b/runs/l2r10-baseline/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5c7f6b411db3da6cc58af5b4530e84dddd5abe00
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2e88932b62643ef7a711b903ac04665eab5638dccef14b4bec61d20b2791e67b
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-2880/tokenizer.json b/runs/l2r10-baseline/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2880/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-2880/trainer_state.json b/runs/l2r10-baseline/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..7793d2098af76d18e6047de9c2f44d0143286e58
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.099128723144531,
+ "eval_runtime": 56.8396,
+ "eval_samples_per_second": 42.963,
+ "eval_steps_per_second": 1.355,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02650369331240654,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.245565414428711,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.03795403614640236,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.2313404083251953,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.03605008125305176,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.2457761764526367,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.033865656703710556,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.236895799636841,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.03908597305417061,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.278275489807129,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.040220506489276886,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.2598671913146973,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.03662317618727684,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.288180112838745,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.03467962145805359,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.282745122909546,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.03267224133014679,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.256056547164917,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.033073775470256805,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.259392261505127,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.03392944857478142,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.2664551734924316,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.03331601992249489,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.272479295730591,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.032030750066041946,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.278921127319336,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.031217405572533607,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.269260883331299,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.028545768931508064,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.2556514739990234,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.029085848480463028,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.2199110984802246,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.027847737073898315,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.267047643661499,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.028855187818408012,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.267087459564209,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.027484651654958725,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.276724338531494,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.026942569762468338,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.2841362953186035,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.027965093031525612,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.2546982765197754,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.027496227994561195,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.2300760746002197,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.026141833513975143,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.2681469917297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.026588531211018562,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.295330047607422,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.0282877366989851,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.246816635131836,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.02680497244000435,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.2756869792938232,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02529861032962799,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.292912006378174,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.027711933478713036,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.328094244003296,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.026861567050218582,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.2854347229003906,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.026213087141513824,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.2591683864593506,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.025807173922657967,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.2941884994506836,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.024857092648744583,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.2978360652923584,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.024767041206359863,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.292267322540283,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.02368018589913845,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.2653818130493164,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02389381267130375,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.3316941261291504,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.024605995044112206,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.2812769412994385,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.024144303053617477,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.2859184741973877,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02431401051580906,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.3373374938964844,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.026107139885425568,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.279526948928833,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.024653980508446693,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.3347928524017334,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.025357453152537346,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.2909247875213623,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.024386251345276833,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.314579963684082,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.024505093693733215,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.3231546878814697,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.02523699961602688,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.271603584289551,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.024947956204414368,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.318005084991455,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024697156623005867,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.3308792114257812,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.023375261574983597,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.285569667816162,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.023240001872181892,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.2877140045166016,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.02440231665968895,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.325361967086792,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02395760267972946,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.3355207443237305,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.02394867315888405,
+ "learning_rate": 0.000303,
+ "loss": 3.3411712646484375,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.026035571470856667,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.3467907905578613,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02454688586294651,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.307335138320923,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.023200271651148796,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.3416378498077393,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.02673390321433544,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.33894944190979,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02540498599410057,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.2643580436706543,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02263791486620903,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.3205347061157227,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.023672081530094147,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.342198371887207,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02290850505232811,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.360527515411377,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.02199256792664528,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.313976287841797,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.02408529259264469,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.2987663745880127,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.022791776806116104,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.3329124450683594,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.023352347314357758,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.342763662338257,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.0230550616979599,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.3260750770568848,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.02257031761109829,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.33486270904541,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023672664538025856,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.342003345489502,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.024178389459848404,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.3288965225219727,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.022518686950206757,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.335498809814453,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.022953400388360023,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.319986581802368,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024052146822214127,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.2925193309783936,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.0233283843845129,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.3660390377044678,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.02665606327354908,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.2953720092773438,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.118098258972168,
+ "eval_runtime": 57.5101,
+ "eval_samples_per_second": 42.462,
+ "eval_steps_per_second": 1.339,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.02890697494149208,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.249951124191284,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.041633449494838715,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.2009143829345703,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.045876361429691315,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.243760585784912,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.04569151997566223,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.1994779109954834,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.04899405315518379,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.17582631111145,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.04929453134536743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.23600435256958,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.04230935871601105,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.252906560897827,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.03628655895590782,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.259765863418579,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.03702453523874283,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.214686393737793,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.03758135810494423,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.250516653060913,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.03414451703429222,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.2239394187927246,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.03131867200136185,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.2182369232177734,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.032515935599803925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.201007843017578,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.0324273519217968,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.2108006477355957,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0289190411567688,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.2271595001220703,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.030286597087979317,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.2005205154418945,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.029980774968862534,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.2406399250030518,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.030094027519226074,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.22554349899292,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.027732938528060913,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.191636085510254,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.02878301590681076,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.231097936630249,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.02830193005502224,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.2348110675811768,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.027315426617860794,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.236872434616089,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.02744620479643345,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.239691734313965,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.02737320400774479,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.2365617752075195,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.027895567938685417,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.2656173706054688,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.028630778193473816,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.2649641036987305,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.026158377528190613,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.205411911010742,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.02790597826242447,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.249823808670044,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.0281178280711174,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.2284631729125977,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.026781145483255386,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.2646565437316895,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.02716926671564579,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.23388934135437,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.026623109355568886,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.28131103515625,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.02563607692718506,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.2354767322540283,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.027210721746087074,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.2772653102874756,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.026623180136084557,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.280789613723755,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.026812341064214706,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.2569217681884766,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025391709059476852,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.239611864089966,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.028013214468955994,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.2758724689483643,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.02640947885811329,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.261630058288574,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02424028143286705,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.2681832313537598,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.025359483435750008,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.290400743484497,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.026214027777314186,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.242974281311035,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.025660529732704163,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.2581229209899902,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.025018133223056793,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.314174175262451,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.026054153218865395,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.2657594680786133,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.02707616798579693,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.2682297229766846,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.025845540687441826,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.2810416221618652,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02462257817387581,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.2729787826538086,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.0247847568243742,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.2813968658447266,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.024695508182048798,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.281198501586914,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02510354481637478,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.2675232887268066,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02423112839460373,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.313127279281616,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.023726003244519234,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.247558355331421,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.02415836974978447,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.298170804977417,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.0245672520250082,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.2992563247680664,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.023869989439845085,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.271489381790161,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023803818970918655,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.277963399887085,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.02492332085967064,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.2893974781036377,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024075444787740707,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.2436158657073975,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.024968193843960762,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.2588701248168945,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.02316642552614212,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.288280487060547,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.024051489308476448,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.338749647140503,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.024682875722646713,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.310123920440674,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023569269105792046,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.2981066703796387,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023198245093226433,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.3373751640319824,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.024926021695137024,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.284407138824463,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023436030372977257,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.286210775375366,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022795837372541428,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.2836194038391113,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.025310585275292397,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.315124750137329,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.023906854912638664,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.273519515991211,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.023158904165029526,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.3090248107910156,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.02710728347301483,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.3370521068573,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.1380791664123535,
+ "eval_runtime": 57.828,
+ "eval_samples_per_second": 42.229,
+ "eval_steps_per_second": 1.332,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028397580608725548,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.157905340194702,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.038552045822143555,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.168872833251953,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.03612525016069412,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.1779890060424805,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.034037038683891296,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.1505064964294434,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.03745132312178612,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.1749038696289062,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.0375814326107502,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.1900854110717773,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.03265482187271118,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.148488759994507,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.028728758916258812,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.1728153228759766,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.027440344914793968,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.175471544265747,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.028495166450738907,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.1602094173431396,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.027664585039019585,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.178624391555786,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.02791575901210308,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.1330881118774414,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.028835628181695938,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.201948642730713,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.030627859756350517,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.2166032791137695,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.030933234840631485,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.2238168716430664,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.028820496052503586,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.166398763656616,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.028881458565592766,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.2101995944976807,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.03201906755566597,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.188455581665039,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.033344775438308716,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.1890811920166016,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03553580492734909,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.1949586868286133,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036840688437223434,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.208887815475464,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03239849954843521,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.2023463249206543,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.02859567478299141,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.2354788780212402,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.029732951894402504,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.16135311126709,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03067614696919918,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.1891722679138184,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03014565072953701,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.2443408966064453,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.02737642452120781,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.22528076171875,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.02632616087794304,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.2110209465026855,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02590067684650421,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.205991268157959,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.026110181584954262,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.2602338790893555,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.02733764797449112,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.2435476779937744,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.026461347937583923,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.2302608489990234,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.024851882830262184,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.237276554107666,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.027676021680235863,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.2511582374572754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.028534185141324997,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.218414783477783,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.02874479629099369,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.2452523708343506,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.026604484766721725,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.2343528270721436,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.025352559983730316,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.2056655883789062,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.02720716781914234,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.2509307861328125,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.027365729212760925,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.1912002563476562,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.02664838545024395,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.242295265197754,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.026786725968122482,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.2326836585998535,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.02805040217936039,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.2520134449005127,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.026042792946100235,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.200939178466797,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.024807952344417572,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.27309250831604,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.027628514915704727,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.230095386505127,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02674996852874756,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.2413103580474854,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.025710299611091614,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.238966464996338,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.02538335882127285,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.2255516052246094,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.025578321889042854,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.2096924781799316,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02601344883441925,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.2297346591949463,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.026096008718013763,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.241189479827881,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02780098281800747,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.251811981201172,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.027289612218737602,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.2270426750183105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.026324691250920296,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.2375741004943848,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02650313824415207,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.2548668384552,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.026873862370848656,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.2308764457702637,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.026542654260993004,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.265718460083008,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.025225713849067688,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.2674314975738525,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.026227261871099472,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.2573204040527344,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02565634436905384,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.213150978088379,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.025645481422543526,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.256298303604126,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.026869403198361397,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.280714750289917,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.02498205378651619,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.2348437309265137,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024347074329853058,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.264981985092163,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.02532394789159298,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.2695374488830566,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.02515113539993763,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.2553372383117676,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.02415953390300274,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.2565059661865234,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.024644216522574425,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.250833034515381,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.02456027641892433,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.2761712074279785,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.02426525205373764,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.2629470825195312,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.028048187494277954,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.2276482582092285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.158375263214111,
+ "eval_runtime": 57.2344,
+ "eval_samples_per_second": 42.667,
+ "eval_steps_per_second": 1.345,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.02946070209145546,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.121852159500122,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.03865921497344971,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.1245241165161133,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.03603826463222504,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.1450228691101074,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.03139101341366768,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.1472625732421875,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.034746382385492325,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.151329755783081,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.03474539518356323,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.1338629722595215,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.033249594271183014,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.156055212020874,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.031936001032590866,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.141859292984009,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.03096783347427845,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.1524581909179688,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.03065602481365204,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.186131477355957,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.030547183007001877,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.1329398155212402,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.02896001562476158,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.1926004886627197,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.028308730572462082,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.1565964221954346,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.028324034065008163,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.1669921875,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.028712721541523933,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.1584408283233643,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.029040448367595673,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.1685431003570557,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.0281654242426157,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.166020393371582,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.02892228588461876,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.1665492057800293,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.029494833201169968,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.154541254043579,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.030289137735962868,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.1542015075683594,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.03235023096203804,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.1689505577087402,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.0317135788500309,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.14835262298584,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.030222205445170403,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.1633877754211426,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.02939915843307972,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.1395506858825684,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.030564088374376297,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.1217494010925293,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.029609909281134605,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.2093873023986816,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.027965130284428596,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.1839005947113037,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.028356825932860374,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.1262643337249756,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.027346370741724968,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.169198513031006,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.027762236073613167,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.163200855255127,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.029112881049513817,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.1838035583496094,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.029743950814008713,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.2060787677764893,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.030414888635277748,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.151318073272705,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026616528630256653,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.162863254547119,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.02728109061717987,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.2224156856536865,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027906913310289383,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.1820082664489746,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.02686009556055069,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.212308168411255,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.02723880484700203,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.195708751678467,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.028102140873670578,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.233551025390625,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.026631979271769524,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.2048614025115967,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.02571697160601616,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.211066722869873,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.026849795132875443,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.1466212272644043,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026982581242918968,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.1449697017669678,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.026633495464920998,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.21518611907959,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02661176398396492,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.1968324184417725,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.027553340420126915,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.1963584423065186,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.028503065928816795,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.164424419403076,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.028009451925754547,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.233910322189331,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.027892669662833214,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.2139945030212402,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.027213294059038162,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.1882662773132324,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.026182152330875397,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.1851303577423096,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02885112725198269,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.2572717666625977,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.028626110404729843,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.203584909439087,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02623717114329338,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.254133462905884,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.027923112735152245,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.221933126449585,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.02818283438682556,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.211678981781006,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026261597871780396,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.188681125640869,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02704189158976078,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.1620755195617676,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.026541976258158684,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.1781210899353027,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.026731157675385475,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.1845755577087402,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02696199342608452,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.2352161407470703,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.02645431086421013,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.214784860610962,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.025962313637137413,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.2050833702087402,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.027177246287465096,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.2680234909057617,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.02790023200213909,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.260568141937256,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.02651599608361721,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.227966547012329,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.02662951685488224,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.2258334159851074,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.025851519778370857,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.206686019897461,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.027288703247904778,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.1935949325561523,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.026220062747597694,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.2079954147338867,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.025760062038898468,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.2240872383117676,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03130556270480156,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.191253900527954,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.180140972137451,
+ "eval_runtime": 58.551,
+ "eval_samples_per_second": 41.707,
+ "eval_steps_per_second": 1.315,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.0355788990855217,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.1215739250183105,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04892604425549507,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.116471529006958,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.04660751670598984,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.1185190677642822,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04066198319196701,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.0865578651428223,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.04082629457116127,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.1207001209259033,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.03933149576187134,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.090609550476074,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.036161698400974274,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.1162736415863037,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.0331297442317009,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.0847244262695312,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.033159028738737106,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.11242938041687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.03180311247706413,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.1014082431793213,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.031308356672525406,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.0722479820251465,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03233671933412552,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.1153006553649902,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.03377128392457962,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.0850257873535156,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.033663321286439896,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.1224865913391113,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.03465031832456589,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.1194047927856445,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03184987232089043,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.1185622215270996,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.02998354844748974,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.1006929874420166,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03301263973116875,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.1423110961914062,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.031899046152830124,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.1092641353607178,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.030688438564538956,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.130136013031006,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.03196574002504349,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.112138271331787,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.033352479338645935,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.1272900104522705,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.03180698677897453,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.157930374145508,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.029812967404723167,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.1247220039367676,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.028813188895583153,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.089658260345459,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03237403556704521,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.138625383377075,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.03242601826786995,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.086696147918701,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.030924616381525993,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.1654038429260254,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.029315272346138954,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.1636850833892822,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.029705161228775978,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.1628870964050293,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.027950260788202286,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.1637582778930664,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.02769061177968979,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.1565256118774414,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.02836288884282112,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.148399829864502,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.02915837988257408,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.163072109222412,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.027166903018951416,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.106757640838623,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.027938751503825188,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.160259246826172,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.02934502437710762,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.141427516937256,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.027676397934556007,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.190730571746826,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.02690025605261326,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.1713430881500244,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.02652641572058201,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.137932777404785,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.027723152190446854,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.1590471267700195,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.02680366300046444,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.1951065063476562,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.027073737233877182,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.154332160949707,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.02711140178143978,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.178050994873047,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.026306450366973877,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.1711394786834717,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0266092661768198,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.153665065765381,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.0270571056753397,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.1791672706604004,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.02735244855284691,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.193817138671875,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.027825796976685524,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.192131519317627,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.02676193043589592,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.181812047958374,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.027864079922437668,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.1917107105255127,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.05341985076665878,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.1917757987976074,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.02956882305443287,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.163125991821289,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.028512390330433846,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.1717798709869385,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.028295889496803284,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.1639628410339355,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.027207838371396065,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.2133731842041016,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.028072115033864975,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.176164150238037,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.028681570664048195,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.18463134765625,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.027309462428092957,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.1805896759033203,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.027211535722017288,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.16485333442688,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.027867497876286507,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.1531105041503906,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.027384409680962563,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.2058889865875244,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.027143698185682297,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.157866954803467,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.027240339666604996,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.2181386947631836,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.028287801891565323,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.193422317504883,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.027239253744482994,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.189561367034912,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.028243936598300934,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.1677606105804443,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.02861366607248783,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.1926746368408203,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.0283220075070858,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.2236387729644775,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.02835279330611229,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.1697449684143066,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.02796671725809574,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.1984987258911133,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03166359290480614,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.19610595703125,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.2039618492126465,
+ "eval_runtime": 58.5416,
+ "eval_samples_per_second": 41.714,
+ "eval_steps_per_second": 1.315,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03369779884815216,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.0812559127807617,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05070783197879791,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.0677804946899414,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.051560062915086746,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.057511568069458,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04496128857135773,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.0786938667297363,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.04082498699426651,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.1139144897460938,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.042083434760570526,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.104275941848755,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.038129668682813644,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.0800914764404297,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.03446940705180168,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.076841354370117,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.03592631593346596,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.09020733833313,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.03772344812750816,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.09391713142395,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.034410931169986725,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.0629119873046875,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.03517600893974304,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.065742015838623,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.036171507090330124,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.1003737449645996,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.03234133496880531,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.0920376777648926,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.03142267093062401,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.10030198097229,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.033919043838977814,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.103757381439209,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.031541913747787476,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.083867311477661,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.030086882412433624,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.1067614555358887,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.02972504310309887,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.084838390350342,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.029621386900544167,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.0923590660095215,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.03075578436255455,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.146130084991455,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.030716707929968834,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.1039209365844727,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.03125046566128731,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.1153035163879395,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.02955695241689682,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.135328769683838,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.02832690440118313,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.1040847301483154,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.03152746707201004,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.106022834777832,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.03143440559506416,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.0805022716522217,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.028248652815818787,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.0860421657562256,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.02913457527756691,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.140413522720337,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.02998923510313034,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.129356861114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.030854487791657448,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.121748924255371,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.02916296012699604,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.1009695529937744,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.029774636030197144,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.1226165294647217,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.028826434165239334,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.160597085952759,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.03017219342291355,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.110243558883667,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.028641732409596443,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.0800039768218994,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.028798656538128853,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.179795026779175,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.029349444434046745,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.0988149642944336,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.029021043330430984,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.064181089401245,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.02870240993797779,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.1240763664245605,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.02823748253285885,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.146803140640259,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.028530996292829514,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.1475019454956055,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.029223430901765823,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.1216864585876465,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.027813591063022614,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.101078987121582,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.027918612584471703,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.1277475357055664,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.028475921601057053,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.125309467315674,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.028015555813908577,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.1116862297058105,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026905957609415054,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.100590467453003,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.027701787650585175,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.1296615600585938,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.027875013649463654,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.110649585723877,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.02704387530684471,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.110461473464966,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02804766595363617,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.1070356369018555,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.02761704847216606,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.1334657669067383,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.027547121047973633,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.128934621810913,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.028524842113256454,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.139470100402832,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02890404686331749,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.147649049758911,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02851000428199768,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.140340805053711,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.027430236339569092,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.141169548034668,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.027634181082248688,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.1349918842315674,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.027339693158864975,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.160902261734009,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.0271914079785347,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.1236281394958496,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.028070030733942986,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.14902400970459,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.027782054618000984,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.119905471801758,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.02806680090725422,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.1655449867248535,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.02678612992167473,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.125488758087158,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.026848314329981804,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.124390125274658,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.027314338833093643,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.135408639907837,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.027944346889853477,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.174356460571289,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.027283160015940666,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.1777257919311523,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02715890295803547,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.1342411041259766,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.026732949540019035,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.1567957401275635,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.032828811556100845,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.1452670097351074,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.23610782623291,
+ "eval_runtime": 57.861,
+ "eval_samples_per_second": 42.205,
+ "eval_steps_per_second": 1.331,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.031560398638248444,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.0346384048461914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.045797161757946014,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.0253865718841553,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.03975280746817589,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.064655303955078,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.03750868886709213,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.0535778999328613,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.0428822822868824,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.029329538345337,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.03772140294313431,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.038602113723755,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0340406708419323,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.024937152862549,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.036795567721128464,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.0093514919281006,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.034226614981889725,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.037254571914673,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.034093596041202545,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.0515356063842773,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.03472839668393135,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.020470142364502,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.03269178792834282,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.051333427429199,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.033917032182216644,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.052259922027588,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.03324243798851967,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.0460095405578613,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.032261185348033905,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.053861141204834,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.03396065905690193,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.048023223876953,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.034620821475982666,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.0418081283569336,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.032161977142095566,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.009852886199951,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.031200187280774117,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.0368716716766357,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03394074738025665,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.071866035461426,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.03577565774321556,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.080648422241211,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.03355010226368904,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.056335210800171,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.03100624494254589,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.070770263671875,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.030809594318270683,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.0508432388305664,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.029902741312980652,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.0698328018188477,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.029862644150853157,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.07668137550354,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.030799617990851402,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.0797815322875977,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.030734151601791382,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.0688986778259277,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03087432309985161,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.078287124633789,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.030203802511096,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.0989227294921875,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.030054137110710144,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.108900547027588,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.030525945127010345,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.0743603706359863,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03116847202181816,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.1147680282592773,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.02907412499189377,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.0795233249664307,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.029001710936427116,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.0691943168640137,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03244122490286827,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.0728673934936523,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03296313062310219,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.0621304512023926,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.030616287142038345,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.0865912437438965,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030837416648864746,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.0722920894622803,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.0298515222966671,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.074018955230713,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.02962825447320938,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.0872483253479004,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.0306903887540102,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.1015772819519043,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.02899639680981636,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.080179214477539,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.028741996735334396,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.0685665607452393,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03072701022028923,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.0677199363708496,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.028850078582763672,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.108672618865967,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.028551483526825905,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.1213910579681396,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03012346662580967,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.083681106567383,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.028515953570604324,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.100470781326294,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.030353186652064323,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.12215518951416,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.029224202036857605,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.105957269668579,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.02899855375289917,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.1268749237060547,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.029873481020331383,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.106316328048706,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02885374426841736,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.0703983306884766,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02765561453998089,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.1055452823638916,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.027459438890218735,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.1233561038970947,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.028457194566726685,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.085897445678711,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02814573235809803,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.0763416290283203,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.028196604922413826,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.079221248626709,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027772540226578712,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.101588726043701,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.028152190148830414,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.125788688659668,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.028581861406564713,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.1013102531433105,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.027978789061307907,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.1162004470825195,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.029316946864128113,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.1161651611328125,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.028609825298190117,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.1236777305603027,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028157226741313934,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.0862250328063965,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028885260224342346,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.139831304550171,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.027559489011764526,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.133944272994995,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.028318390250205994,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.144155979156494,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02769157849252224,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.1399827003479004,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.028807122260332108,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.080939769744873,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.033507585525512695,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.1044228076934814,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.260251998901367,
+ "eval_runtime": 57.818,
+ "eval_samples_per_second": 42.236,
+ "eval_steps_per_second": 1.332,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.03682977333664894,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.0096187591552734,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.049676790833473206,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.005502700805664,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.04197567328810692,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.986161231994629,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.040878161787986755,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.0177392959594727,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04427504912018776,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.9872331619262695,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.03664223104715347,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.982750654220581,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.03359461575746536,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.036256790161133,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.03522174432873726,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.9673585891723633,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.036801036447286606,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.9804298877716064,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.03503398597240448,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.0192883014678955,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.03201582282781601,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.0131349563598633,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.034218158572912216,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.018552541732788,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.034080881625413895,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.0217127799987793,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0325000062584877,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.9699440002441406,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.03486644849181175,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.996582508087158,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.033362530171871185,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.0134687423706055,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.03219781443476677,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.028303623199463,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.03249913081526756,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.041970729827881,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.03392951563000679,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.0437307357788086,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.035250015556812286,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.0016467571258545,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03219404071569443,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.9868557453155518,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.034740231931209564,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.0191102027893066,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.03378608450293541,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.9819235801696777,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.03126170486211777,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.0244431495666504,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.0341620147228241,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.025275230407715,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03303704410791397,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.0206751823425293,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.031866636127233505,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.065530300140381,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.03319002315402031,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.035928249359131,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.03198426961898804,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.035161018371582,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.02992428094148636,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.002439260482788,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.03143618628382683,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.0593252182006836,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.030728137120604515,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.043550491333008,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.029600419104099274,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.0696005821228027,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.031791139394044876,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.016582489013672,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.030455080792307854,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.021450996398926,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.0301319882273674,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.0840072631835938,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03059639409184456,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.069697380065918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.031164854764938354,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.0536410808563232,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03087274543941021,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.0589685440063477,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.03018832392990589,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.0317018032073975,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03111763298511505,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.0193753242492676,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.030017679557204247,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.033637046813965,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.030399367213249207,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.0928962230682373,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03129652142524719,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.0451242923736572,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.02999301627278328,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.0762739181518555,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.029050013050436974,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.035623550415039,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.030129432678222656,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.0518558025360107,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03071288764476776,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.070361375808716,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029714390635490417,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.0466830730438232,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031577423214912415,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.0402965545654297,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03088134154677391,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.041398525238037,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03100186213850975,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.0857033729553223,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.03201247379183769,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.0708329677581787,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.030221953988075256,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.0749387741088867,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.03167426586151123,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.086536169052124,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03179052844643593,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.0833234786987305,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.029809722676873207,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.0629539489746094,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03139837831258774,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.1162657737731934,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029216980561614037,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.075932025909424,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.030586371198296547,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.0647311210632324,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.02969566360116005,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.0812134742736816,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.028870539739727974,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.0748748779296875,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.029527587816119194,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.1284332275390625,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.029147129505872726,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.100613594055176,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028313715010881424,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.0623369216918945,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.029429465532302856,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.1212449073791504,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02836095355451107,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.104053497314453,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.028584513813257217,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.1087045669555664,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.0308294165879488,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.0686898231506348,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.028480850160121918,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.056847095489502,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.027765415608882904,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.0788183212280273,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03465089946985245,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.083177328109741,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.289492130279541,
+ "eval_runtime": 57.6739,
+ "eval_samples_per_second": 42.341,
+ "eval_steps_per_second": 1.335,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.03739845007658005,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.971905469894409,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.0454539880156517,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.9235942363739014,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.03972721844911575,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.943814277648926,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.039135806262493134,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.9464917182922363,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.038645751774311066,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.0013396739959717,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.03719992935657501,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.950340986251831,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.03530147671699524,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.013052225112915,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.034085702151060104,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.9704601764678955,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.03628101572394371,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.9669294357299805,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.035743679851293564,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.9868359565734863,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.03441668674349785,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.9880685806274414,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.03296050429344177,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.981017589569092,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.03243963047862053,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.9854543209075928,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.03302016481757164,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.946493148803711,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.033656030893325806,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.9685728549957275,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.03422021493315697,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.0115339756011963,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.034188102930784225,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.9989778995513916,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.031733572483062744,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.9996390342712402,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.03390700742602348,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.995767116546631,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.034200429916381836,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.9650206565856934,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.032906122505664825,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.0107078552246094,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.032964903861284256,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.9816744327545166,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.032815348356962204,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.9982123374938965,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.03259589150547981,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.0009212493896484,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.032530251890420914,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.99307918548584,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.032114770263433456,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.9932491779327393,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.032941076904535294,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.059328556060791,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.03325921669602394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.9920570850372314,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03189065307378769,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.986832857131958,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.0320298932492733,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.986527442932129,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.032062828540802,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.0112881660461426,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.03301781415939331,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.0216145515441895,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.0344916433095932,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.0155141353607178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.0320601612329483,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.9892053604125977,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03163528069853783,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.005617141723633,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0329110287129879,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.0535356998443604,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.030556878075003624,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.0203990936279297,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.031008001416921616,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.02127742767334,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.031155841425061226,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.9743614196777344,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.030541326850652695,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.014299154281616,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.031742338091135025,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.0051097869873047,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.02989187091588974,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.051193952560425,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.030058210715651512,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.017111301422119,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029765194281935692,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.053699016571045,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.030537934973835945,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.013504981994629,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03024795465171337,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.0272743701934814,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030360743403434753,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.030949354171753,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.03035072423517704,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.051844358444214,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030504168942570686,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.049577236175537,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.03011324070394039,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.9918508529663086,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03013714775443077,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.037904977798462,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.030488433316349983,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.027632236480713,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03132355213165283,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.056293249130249,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.03080538846552372,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.0026464462280273,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029128601774573326,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.0270485877990723,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.02996237576007843,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.0554800033569336,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.03137197345495224,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.030535936355591,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03169243037700653,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.006303310394287,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.030219880864024162,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.0744738578796387,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.03023732639849186,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.0363545417785645,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0328553169965744,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.040400981903076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.029735038056969643,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.028709888458252,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.030272237956523895,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.037313461303711,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.03199860826134682,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.0432136058807373,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.02964850887656212,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.0143280029296875,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.032533321529626846,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.075748920440674,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03221677988767624,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.0475339889526367,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.032870691269636154,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.077136993408203,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.0326097346842289,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.046293258666992,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.03128218278288841,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.024522066116333,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.031186817213892937,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.043630599975586,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03708904609084129,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.0491294860839844,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.324725151062012,
+ "eval_runtime": 58.8721,
+ "eval_samples_per_second": 41.48,
+ "eval_steps_per_second": 1.308,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03718156740069389,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.9137024879455566,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.04242836683988571,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.95491361618042,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.034661613404750824,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.931143283843994,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.03455570340156555,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.933091402053833,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.03829373046755791,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.938300132751465,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.037849120795726776,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.9631741046905518,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.036504197865724564,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.9297828674316406,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.032648202031850815,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.9342050552368164,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.03621445596218109,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.9636025428771973,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.03777499124407768,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.9307641983032227,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.03778013959527016,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.9447648525238037,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.034956999123096466,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.9596714973449707,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.033349718898534775,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.9255731105804443,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03491971269249916,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.8907923698425293,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.03583350032567978,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.9661455154418945,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.03390899673104286,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.9769177436828613,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.031930334866046906,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.941274881362915,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.03465861827135086,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.949491024017334,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.03498814254999161,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.9623749256134033,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.03372015431523323,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.952651023864746,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.032251399010419846,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.9634861946105957,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.03347077965736389,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.919717311859131,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.03428836911916733,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.9775307178497314,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.033225737512111664,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.981713056564331,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.033842265605926514,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.99894642829895,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.034690506756305695,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.9432735443115234,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.036143939942121506,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.993316411972046,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.03434835001826286,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.9919919967651367,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.03247698396444321,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.9784095287323,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03651128336787224,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.9647932052612305,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.03521955385804176,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.9638381004333496,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.03404879570007324,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.995042324066162,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.03397255018353462,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.98030948638916,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.034281399101018906,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.9578874111175537,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.03375784680247307,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.9310011863708496,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.032266587018966675,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.017228841781616,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.031346071511507034,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.985002040863037,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03182312101125717,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.968994140625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.031591545790433884,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.966625213623047,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03151732310652733,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.95800518989563,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.032275281846523285,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.9820804595947266,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03335779532790184,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.0172390937805176,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03131173551082611,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.967258930206299,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03147612512111664,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.0259766578674316,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.031647227704524994,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.984004020690918,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030623044818639755,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.9716386795043945,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03214540705084801,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.036837100982666,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03211726248264313,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.0012319087982178,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030490046367049217,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.000899314880371,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031676359474658966,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.999171733856201,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.03196047246456146,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.9652652740478516,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.03154071792960167,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.9977519512176514,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.03187791630625725,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.0295329093933105,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.030363669618964195,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.984137535095215,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.03208064287900925,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.007162094116211,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.030690619722008705,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.995037078857422,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.030634157359600067,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.002346992492676,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.0325019545853138,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.990049362182617,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03119182027876377,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.0190300941467285,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.032793447375297546,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.015969753265381,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03210591524839401,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.0110068321228027,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.031592607498168945,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.015460968017578,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.031449154019355774,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.980496406555176,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.0318843312561512,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.0351834297180176,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.030633851885795593,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.025505542755127,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03055507503449917,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.980363607406616,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.030444832518696785,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.0007693767547607,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.030038077384233475,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.9965107440948486,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030796151608228683,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.0268783569335938,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.032338906079530716,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.0161352157592773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.031326185911893845,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.998199939727783,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03641432896256447,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.99208664894104,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.365145683288574,
+ "eval_runtime": 59.6109,
+ "eval_samples_per_second": 40.966,
+ "eval_steps_per_second": 1.292,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036101240664720535,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.9229609966278076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04659443348646164,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.882582426071167,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.039827633649110794,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.913970708847046,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.03899892047047615,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.9170823097229004,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.040949538350105286,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.8714303970336914,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.04048046097159386,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.942922592163086,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.039095427840948105,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.917171001434326,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.036895740777254105,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.881669521331787,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.036871183663606644,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.904865026473999,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.03580665960907936,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.888312816619873,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.033497925847768784,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.9159886837005615,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.03645741939544678,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.922903537750244,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.03467963635921478,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.893218994140625,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.03516887500882149,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.946096181869507,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.03285518288612366,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.883183479309082,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.03461560606956482,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.9127964973449707,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.032447874546051025,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.941572904586792,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.032827962189912796,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.882232904434204,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.03459580987691879,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.9359278678894043,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.033537592738866806,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.9211392402648926,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03445928171277046,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.951965570449829,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.034292835742235184,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.922822952270508,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.0331917330622673,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.93473219871521,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.035322073847055435,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.9726855754852295,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03501332551240921,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.937869071960449,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.03303850442171097,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.907097101211548,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.034785833209753036,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.9137706756591797,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03453590348362923,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.9239890575408936,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.031692180782556534,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.94581937789917,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.033933885395526886,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.9585378170013428,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03295003995299339,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.934412956237793,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03174088895320892,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.905796527862549,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.9427170753479004,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.031007668003439903,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.9342517852783203,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03159578889608383,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.9440736770629883,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03076927363872528,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.9372286796569824,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03194348141551018,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.950411558151245,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.031811829656362534,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.9286372661590576,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031859494745731354,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.949293851852417,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03211456537246704,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.9497315883636475,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032061900943517685,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.9805281162261963,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.03235242888331413,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.9582552909851074,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03274158015847206,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.9244611263275146,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03237871825695038,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.9584853649139404,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03335065394639969,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.967963933944702,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.032168373465538025,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.9352662563323975,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.031649500131607056,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.9314675331115723,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03199118748307228,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.94907283782959,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.032334573566913605,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.9527769088745117,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03069196455180645,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.9593281745910645,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.0315573588013649,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.9340977668762207,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.03241933509707451,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.987230062484741,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.030948035418987274,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.9927141666412354,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.03212989121675491,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.9522669315338135,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03238612040877342,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.9981212615966797,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.031098810955882072,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.980008840560913,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03202599659562111,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.945791721343994,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.03131226450204849,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.978998899459839,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03163373842835426,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.964719772338867,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03205667808651924,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.9884414672851562,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03170310705900192,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.9828829765319824,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.033174507319927216,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.993612051010132,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.031098203733563423,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.960470676422119,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.0320245698094368,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.9731860160827637,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03298075124621391,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.978109359741211,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.033254217356443405,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.99928617477417,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03272705525159836,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.9873595237731934,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.032606013119220734,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.9822492599487305,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.033151786774396896,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.0517663955688477,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.032137393951416016,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.0320076942443848,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03240504115819931,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.965942621231079,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03748507797718048,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.986581325531006,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.39909029006958,
+ "eval_runtime": 57.8644,
+ "eval_samples_per_second": 42.202,
+ "eval_steps_per_second": 1.331,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.035249192267656326,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.8695621490478516,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.04332931339740753,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.872889518737793,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.0370100736618042,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.891376495361328,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.03743851184844971,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.8930583000183105,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.03672601655125618,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.8492941856384277,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.03673556447029114,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.847184181213379,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.03713645413517952,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.891683340072632,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.035592418164014816,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.8745617866516113,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.03660868853330612,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.8822832107543945,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.03587000072002411,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.8569459915161133,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.03584085404872894,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.871934413909912,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.03400537371635437,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.898621082305908,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.03427768498659134,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.8695733547210693,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.03240136429667473,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.8452627658843994,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.035201236605644226,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.846024751663208,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.03296452388167381,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.8867619037628174,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03552323952317238,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.932100534439087,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.03576110675930977,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.897157669067383,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.0338599719107151,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.9155187606811523,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.035200271755456924,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.886493682861328,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.0342402420938015,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.8792905807495117,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.03284120932221413,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.901045560836792,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03285597264766693,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.8879854679107666,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.03379133343696594,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.9062161445617676,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.03294893354177475,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.912517547607422,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.03286999091506004,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.8826236724853516,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.03335225582122803,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.9071149826049805,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.03209758177399635,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.9216933250427246,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03388523310422897,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.927353858947754,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.032792337238788605,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.90283203125,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.032631076872348785,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.8815271854400635,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03211396187543869,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.929408550262451,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03343743085861206,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.899761199951172,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03195416182279587,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.9175775051116943,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.032496511936187744,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.903224468231201,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03279714286327362,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.934840679168701,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.03238125517964363,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.9084653854370117,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.032917145639657974,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.9250540733337402,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03196168690919876,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.906609058380127,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03373948857188225,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.908381938934326,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.0319669209420681,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.914118528366089,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.031623195856809616,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.92551326751709,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03334169462323189,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.956587076187134,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.032796405255794525,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.9236581325531006,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.03214484080672264,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.925595283508301,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.03265630453824997,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.916499376296997,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.031656887382268906,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.931150436401367,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.032084085047245026,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.9337143898010254,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.032294776290655136,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.8914670944213867,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03171965479850769,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.9523673057556152,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03230489417910576,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.937072515487671,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03182378038764,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.924713373184204,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.9573068618774414,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.03187672421336174,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.919142246246338,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03102356567978859,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.9293179512023926,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.03191511705517769,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.9295756816864014,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03278054669499397,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.9508566856384277,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03192828223109245,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.934763193130493,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.032828524708747864,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.941349506378174,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.03223246708512306,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.966546058654785,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03259873390197754,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.9705801010131836,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03265198692679405,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.9603195190429688,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.032012395560741425,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.9593594074249268,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0328369215130806,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.933140277862549,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03183514252305031,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.942354679107666,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03233134374022484,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.92272686958313,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03143055737018585,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.9438138008117676,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03257118910551071,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.957641124725342,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031078124418854713,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.9572582244873047,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.03105352818965912,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.9723658561706543,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.031190577894449234,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.9154210090637207,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.03738512471318245,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.9228148460388184,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.432395935058594,
+ "eval_runtime": 57.493,
+ "eval_samples_per_second": 42.475,
+ "eval_steps_per_second": 1.339,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.037372712045907974,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.8703017234802246,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.04003313183784485,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.846599578857422,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.035013001412153244,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.8098678588867188,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.03771941363811493,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.84356951713562,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.036406442523002625,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.818575859069824,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.03623209521174431,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.8696632385253906,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.03613818809390068,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.854975700378418,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.036677125841379166,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.812471628189087,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.035224951803684235,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.8532795906066895,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.034982819110155106,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.859151840209961,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.033107299357652664,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.858462333679199,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.036417897790670395,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.8269128799438477,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.034186989068984985,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.8623671531677246,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.034109801054000854,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.8755102157592773,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.03457697480916977,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.851405620574951,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.03468300774693489,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.8593785762786865,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.034213028848171234,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.8725686073303223,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.03522878512740135,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.8508810997009277,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.03519051522016525,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.8610117435455322,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03408816084265709,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.8392627239227295,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.03551741689443588,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.8957273960113525,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.03470981493592262,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.852356433868408,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.034143827855587006,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.8662776947021484,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.03391839191317558,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.8915393352508545,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.03528929129242897,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.8711304664611816,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.03383256867527962,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.8797762393951416,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.034317776560783386,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.8560853004455566,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.03462211415171623,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.866088390350342,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.034040067344903946,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.8447439670562744,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03318457305431366,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.9107751846313477,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.03563983738422394,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.896859645843506,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03428848460316658,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.8807625770568848,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.03331796079874039,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.890900135040283,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.03448121249675751,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.8964316844940186,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03365302085876465,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.8742756843566895,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.034365978091955185,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.8907721042633057,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.033616915345191956,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.888810634613037,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.033790890127420425,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.9025700092315674,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.032762594521045685,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.8793303966522217,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.035109154880046844,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.8829760551452637,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03275948762893677,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.913402557373047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.03401525318622589,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.906674385070801,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.033500537276268005,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.882190227508545,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03277073800563812,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.915426731109619,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03256448730826378,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.897702217102051,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.033269502222537994,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.887411117553711,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03247280418872833,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.918998956680298,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.03282757103443146,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.878009080886841,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03320639207959175,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.913011074066162,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.033050697296857834,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.9491519927978516,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03235333412885666,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.897588014602661,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03257526457309723,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.9275996685028076,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.032952696084976196,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.914909839630127,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.0327947735786438,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.8949787616729736,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03329124674201012,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.9024860858917236,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03428658843040466,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.896939277648926,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03282622620463371,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.919009208679199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.0329170897603035,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.9075279235839844,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03273281455039978,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.913926124572754,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.03187453746795654,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.929065227508545,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03417131304740906,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.929168939590454,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03281114995479584,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.9142422676086426,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03288140520453453,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.889498233795166,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.03295015171170235,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.8863954544067383,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03233663737773895,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.903395891189575,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.032834749668836594,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.903757333755493,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.03178175166249275,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.893575668334961,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.031149886548519135,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.9036448001861572,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.03207555040717125,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.895413398742676,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.03135302662849426,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.912942409515381,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030814621597528458,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.9085190296173096,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03772229328751564,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.8710484504699707,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.469374656677246,
+ "eval_runtime": 56.641,
+ "eval_samples_per_second": 43.114,
+ "eval_steps_per_second": 1.359,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03446470946073532,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.8153815269470215,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.03691394254565239,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.7982006072998047,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.03586282953619957,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.7988619804382324,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.039884597063064575,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.793919086456299,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.03394780680537224,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.849790334701538,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.03676057234406471,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.828138828277588,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.03541228547692299,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.8262484073638916,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.0352398119866848,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.839468479156494,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.03511424735188484,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.812490463256836,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.034419652074575424,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.8443245887756348,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.03387727960944176,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.8124494552612305,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.033847443759441376,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.8152976036071777,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.03418067842721939,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.8289899826049805,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.034598272293806076,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.85463285446167,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.03405346721410751,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.8366053104400635,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.0326545275747776,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.798079490661621,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.034301143139600754,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.826050043106079,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.03322048485279083,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.8373303413391113,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.03460463136434555,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.811732292175293,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.033100854605436325,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.8398869037628174,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03397074341773987,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.8279929161071777,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.033724334090948105,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.8651649951934814,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.03249189630150795,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.8317794799804688,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.03396932780742645,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.835175037384033,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.03288092464208603,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.8255081176757812,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.03325018659234047,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.8808155059814453,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.032659146934747696,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.844255208969116,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.033794667571783066,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.8324851989746094,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.033197466284036636,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.847168445587158,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.033781230449676514,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.8837218284606934,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.033751554787158966,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.859447717666626,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.03268533945083618,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.825350761413574,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.03334410861134529,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.8775081634521484,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.033601801842451096,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.8139495849609375,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.03383617103099823,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.8522391319274902,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03364632651209831,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.8646411895751953,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03337915614247322,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.8269598484039307,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03271420672535896,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.860752582550049,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.0327487513422966,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.892174243927002,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03336317092180252,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.8342764377593994,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03182297945022583,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.8651742935180664,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.03333026170730591,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.87003231048584,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.031769055873155594,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.8893930912017822,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03293822333216667,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.882981777191162,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03192837908864021,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.8615071773529053,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.032835572957992554,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.8465023040771484,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.03238287940621376,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.859096050262451,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03261588141322136,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.8671963214874268,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.032639745622873306,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.847773313522339,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.03352993726730347,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.884315252304077,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03244686871767044,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.8648123741149902,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.03223097696900368,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.8568317890167236,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03279644623398781,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.88169002532959,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.031271256506443024,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.8385443687438965,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03260452672839165,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.850785732269287,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.0321393720805645,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.8878376483917236,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.031968653202056885,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.859452724456787,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032150719314813614,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.90781307220459,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03173813596367836,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.8684515953063965,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03238045424222946,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.8368163108825684,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03147270530462265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.9057931900024414,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03182937577366829,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.8692893981933594,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.031568143516778946,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.8956680297851562,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.03183847293257713,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.9455864429473877,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03154289722442627,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.881195306777954,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.032405827194452286,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.910112142562866,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.031707290560007095,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.8775830268859863,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.032700903713703156,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.897766351699829,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03194038197398186,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.8818325996398926,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.0319269634783268,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.885464668273926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03255274519324303,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.9075706005096436,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03922920301556587,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.868931293487549,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.5041823387146,
+ "eval_runtime": 56.5164,
+ "eval_samples_per_second": 43.209,
+ "eval_steps_per_second": 1.362,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.03487532213330269,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.7858150005340576,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.03757835552096367,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.760089635848999,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.03367038816213608,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.773590564727783,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.03676961734890938,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.7899584770202637,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.033205557614564896,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.7687323093414307,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.03825245425105095,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.832014799118042,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.03551522269845009,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.801161050796509,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.03563264012336731,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.7789340019226074,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.03769055753946304,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.7946577072143555,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.03326762095093727,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.7901415824890137,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.03519181162118912,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.8277456760406494,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03473416343331337,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.773768663406372,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03260878846049309,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.7627739906311035,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.034741878509521484,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.795914649963379,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03342209383845329,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.8334903717041016,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.033505652099847794,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.8028039932250977,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.033087071031332016,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.841115713119507,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03366958722472191,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.827853202819824,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03446904942393303,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.8055543899536133,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.032004229724407196,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.7958261966705322,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.034619275480508804,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.8495965003967285,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.03300263360142708,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.821180820465088,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.03343051299452782,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.832827568054199,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.03356117755174637,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.812239170074463,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.03272807225584984,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.775458335876465,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.032449908554553986,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.781595230102539,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.03275706246495247,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.820122718811035,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03220542147755623,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.8294851779937744,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.031954556703567505,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.8244080543518066,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03279522806406021,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.838766574859619,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0325172133743763,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.819446086883545,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03238601237535477,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.79189395904541,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.033187057822942734,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.8329806327819824,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.033052098006010056,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.859341621398926,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03370978683233261,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.8741466999053955,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.032403722405433655,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.7915124893188477,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03302672505378723,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.8447070121765137,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.03291403502225876,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.8044419288635254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.033257290720939636,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.826233386993408,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.032518718391656876,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.853498935699463,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.033048365265131,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.837798595428467,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.033396560698747635,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.821176528930664,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.03348768129944801,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.8420958518981934,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03432426601648331,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.8399481773376465,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03322499245405197,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.872260332107544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03470583260059357,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.852072238922119,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.03246411681175232,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.852479934692383,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.034265074878931046,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.8654937744140625,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03242061287164688,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.805283546447754,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.03301931917667389,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.85548734664917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.03337244689464569,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.8210458755493164,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03238043934106827,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.8109846115112305,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.033897001296281815,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.851470708847046,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03259831666946411,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.8891053199768066,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03364091366529465,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.862358331680298,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.0329914465546608,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.832576036453247,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.033170927315950394,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.8525824546813965,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.0325101763010025,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.8674569129943848,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.033472560346126556,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.850935220718384,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03266644850373268,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.8125693798065186,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03234545513987541,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.8465185165405273,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03224002197384834,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.862696409225464,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032113656401634216,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.834886074066162,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03165457025170326,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.850790023803711,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.032658688724040985,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.839470863342285,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03168034926056862,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.8641517162323,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03244374692440033,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.852146625518799,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03152457997202873,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.838306427001953,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.032360222190618515,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.8598556518554688,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03107994608581066,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.8537580966949463,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03254120796918869,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.8840019702911377,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039810214191675186,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.8393032550811768,
+ "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.2278453445328896e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-2880/training_args.bin b/runs/l2r10-baseline/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-3240/chat_template.jinja b/runs/l2r10-baseline/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3240/config.json b/runs/l2r10-baseline/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3240/generation_config.json b/runs/l2r10-baseline/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3240/model.safetensors b/runs/l2r10-baseline/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..924d035c9f76da2db7f028b7bdbe3781247512bf
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3fbc42825696a9880d349dfe9c79c73edf9da90ddbdf125fd65ba3d417b3365c
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-3240/optimizer.pt b/runs/l2r10-baseline/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7a306b83d9dbd62e13812d7109d7afb537a6162c
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:06f2459b99a8edef62c32318ac7ee3e6bd207ce9c03dc571e9fa31fdcd7e5167
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-3240/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7fcdbd3228de3df151650109c98de49ffc95ba3e
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc2044e564d8a0b06b82ca6fcf758595456ee5b4b1794a5079c02a95c13ff235
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3240/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e40d5625be69f76522c8311b8a1cfc030fd08fa9
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:583c70ed033cfce1f85ac7b1e8454800f1fd51179cf58f0a762f027b827d04cf
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3240/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-3240/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2ea1d918152e56427759686963e51476c1f89833
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6dad5bbac98d61ffbf09a07e13772e7a504a77160e8d9491b5d2b83d54345d0b
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3240/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-3240/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..461a738d250619237d1fb77f26b52e91cb3eb75d
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:945398c03ef00c6b47a033ad43d57cb513868e660dae60daae409d8d534ddec1
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3240/scheduler.pt b/runs/l2r10-baseline/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84479f3138d6041f59e136173e080a0ddbdf81b1
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1045dafc67457b916f466f6a7399234fef3fce01fc96958c0e146dea7784e901
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-3240/tokenizer.json b/runs/l2r10-baseline/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3240/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3240/trainer_state.json b/runs/l2r10-baseline/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..fbe18b2fa91191efd5808167b70e41ad409a36ad
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.099128723144531,
+ "eval_runtime": 56.8396,
+ "eval_samples_per_second": 42.963,
+ "eval_steps_per_second": 1.355,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02650369331240654,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.245565414428711,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.03795403614640236,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.2313404083251953,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.03605008125305176,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.2457761764526367,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.033865656703710556,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.236895799636841,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.03908597305417061,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.278275489807129,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.040220506489276886,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.2598671913146973,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.03662317618727684,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.288180112838745,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.03467962145805359,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.282745122909546,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.03267224133014679,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.256056547164917,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.033073775470256805,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.259392261505127,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.03392944857478142,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.2664551734924316,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.03331601992249489,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.272479295730591,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.032030750066041946,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.278921127319336,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.031217405572533607,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.269260883331299,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.028545768931508064,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.2556514739990234,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.029085848480463028,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.2199110984802246,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.027847737073898315,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.267047643661499,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.028855187818408012,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.267087459564209,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.027484651654958725,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.276724338531494,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.026942569762468338,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.2841362953186035,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.027965093031525612,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.2546982765197754,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.027496227994561195,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.2300760746002197,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.026141833513975143,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.2681469917297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.026588531211018562,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.295330047607422,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.0282877366989851,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.246816635131836,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.02680497244000435,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.2756869792938232,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02529861032962799,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.292912006378174,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.027711933478713036,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.328094244003296,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.026861567050218582,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.2854347229003906,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.026213087141513824,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.2591683864593506,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.025807173922657967,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.2941884994506836,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.024857092648744583,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.2978360652923584,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.024767041206359863,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.292267322540283,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.02368018589913845,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.2653818130493164,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02389381267130375,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.3316941261291504,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.024605995044112206,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.2812769412994385,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.024144303053617477,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.2859184741973877,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02431401051580906,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.3373374938964844,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.026107139885425568,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.279526948928833,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.024653980508446693,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.3347928524017334,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.025357453152537346,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.2909247875213623,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.024386251345276833,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.314579963684082,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.024505093693733215,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.3231546878814697,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.02523699961602688,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.271603584289551,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.024947956204414368,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.318005084991455,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024697156623005867,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.3308792114257812,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.023375261574983597,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.285569667816162,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.023240001872181892,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.2877140045166016,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.02440231665968895,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.325361967086792,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02395760267972946,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.3355207443237305,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.02394867315888405,
+ "learning_rate": 0.000303,
+ "loss": 3.3411712646484375,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.026035571470856667,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.3467907905578613,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02454688586294651,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.307335138320923,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.023200271651148796,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.3416378498077393,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.02673390321433544,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.33894944190979,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02540498599410057,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.2643580436706543,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02263791486620903,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.3205347061157227,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.023672081530094147,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.342198371887207,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02290850505232811,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.360527515411377,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.02199256792664528,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.313976287841797,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.02408529259264469,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.2987663745880127,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.022791776806116104,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.3329124450683594,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.023352347314357758,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.342763662338257,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.0230550616979599,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.3260750770568848,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.02257031761109829,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.33486270904541,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023672664538025856,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.342003345489502,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.024178389459848404,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.3288965225219727,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.022518686950206757,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.335498809814453,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.022953400388360023,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.319986581802368,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024052146822214127,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.2925193309783936,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.0233283843845129,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.3660390377044678,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.02665606327354908,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.2953720092773438,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.118098258972168,
+ "eval_runtime": 57.5101,
+ "eval_samples_per_second": 42.462,
+ "eval_steps_per_second": 1.339,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.02890697494149208,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.249951124191284,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.041633449494838715,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.2009143829345703,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.045876361429691315,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.243760585784912,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.04569151997566223,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.1994779109954834,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.04899405315518379,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.17582631111145,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.04929453134536743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.23600435256958,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.04230935871601105,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.252906560897827,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.03628655895590782,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.259765863418579,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.03702453523874283,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.214686393737793,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.03758135810494423,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.250516653060913,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.03414451703429222,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.2239394187927246,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.03131867200136185,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.2182369232177734,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.032515935599803925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.201007843017578,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.0324273519217968,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.2108006477355957,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0289190411567688,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.2271595001220703,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.030286597087979317,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.2005205154418945,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.029980774968862534,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.2406399250030518,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.030094027519226074,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.22554349899292,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.027732938528060913,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.191636085510254,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.02878301590681076,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.231097936630249,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.02830193005502224,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.2348110675811768,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.027315426617860794,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.236872434616089,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.02744620479643345,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.239691734313965,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.02737320400774479,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.2365617752075195,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.027895567938685417,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.2656173706054688,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.028630778193473816,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.2649641036987305,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.026158377528190613,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.205411911010742,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.02790597826242447,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.249823808670044,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.0281178280711174,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.2284631729125977,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.026781145483255386,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.2646565437316895,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.02716926671564579,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.23388934135437,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.026623109355568886,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.28131103515625,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.02563607692718506,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.2354767322540283,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.027210721746087074,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.2772653102874756,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.026623180136084557,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.280789613723755,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.026812341064214706,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.2569217681884766,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025391709059476852,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.239611864089966,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.028013214468955994,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.2758724689483643,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.02640947885811329,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.261630058288574,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02424028143286705,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.2681832313537598,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.025359483435750008,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.290400743484497,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.026214027777314186,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.242974281311035,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.025660529732704163,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.2581229209899902,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.025018133223056793,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.314174175262451,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.026054153218865395,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.2657594680786133,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.02707616798579693,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.2682297229766846,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.025845540687441826,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.2810416221618652,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02462257817387581,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.2729787826538086,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.0247847568243742,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.2813968658447266,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.024695508182048798,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.281198501586914,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02510354481637478,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.2675232887268066,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02423112839460373,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.313127279281616,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.023726003244519234,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.247558355331421,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.02415836974978447,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.298170804977417,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.0245672520250082,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.2992563247680664,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.023869989439845085,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.271489381790161,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023803818970918655,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.277963399887085,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.02492332085967064,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.2893974781036377,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024075444787740707,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.2436158657073975,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.024968193843960762,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.2588701248168945,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.02316642552614212,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.288280487060547,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.024051489308476448,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.338749647140503,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.024682875722646713,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.310123920440674,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023569269105792046,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.2981066703796387,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023198245093226433,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.3373751640319824,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.024926021695137024,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.284407138824463,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023436030372977257,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.286210775375366,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022795837372541428,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.2836194038391113,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.025310585275292397,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.315124750137329,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.023906854912638664,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.273519515991211,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.023158904165029526,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.3090248107910156,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.02710728347301483,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.3370521068573,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.1380791664123535,
+ "eval_runtime": 57.828,
+ "eval_samples_per_second": 42.229,
+ "eval_steps_per_second": 1.332,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028397580608725548,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.157905340194702,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.038552045822143555,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.168872833251953,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.03612525016069412,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.1779890060424805,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.034037038683891296,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.1505064964294434,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.03745132312178612,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.1749038696289062,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.0375814326107502,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.1900854110717773,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.03265482187271118,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.148488759994507,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.028728758916258812,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.1728153228759766,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.027440344914793968,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.175471544265747,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.028495166450738907,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.1602094173431396,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.027664585039019585,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.178624391555786,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.02791575901210308,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.1330881118774414,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.028835628181695938,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.201948642730713,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.030627859756350517,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.2166032791137695,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.030933234840631485,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.2238168716430664,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.028820496052503586,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.166398763656616,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.028881458565592766,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.2101995944976807,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.03201906755566597,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.188455581665039,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.033344775438308716,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.1890811920166016,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03553580492734909,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.1949586868286133,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036840688437223434,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.208887815475464,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03239849954843521,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.2023463249206543,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.02859567478299141,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.2354788780212402,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.029732951894402504,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.16135311126709,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03067614696919918,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.1891722679138184,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03014565072953701,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.2443408966064453,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.02737642452120781,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.22528076171875,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.02632616087794304,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.2110209465026855,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02590067684650421,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.205991268157959,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.026110181584954262,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.2602338790893555,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.02733764797449112,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.2435476779937744,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.026461347937583923,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.2302608489990234,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.024851882830262184,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.237276554107666,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.027676021680235863,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.2511582374572754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.028534185141324997,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.218414783477783,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.02874479629099369,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.2452523708343506,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.026604484766721725,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.2343528270721436,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.025352559983730316,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.2056655883789062,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.02720716781914234,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.2509307861328125,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.027365729212760925,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.1912002563476562,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.02664838545024395,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.242295265197754,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.026786725968122482,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.2326836585998535,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.02805040217936039,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.2520134449005127,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.026042792946100235,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.200939178466797,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.024807952344417572,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.27309250831604,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.027628514915704727,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.230095386505127,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02674996852874756,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.2413103580474854,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.025710299611091614,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.238966464996338,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.02538335882127285,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.2255516052246094,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.025578321889042854,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.2096924781799316,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02601344883441925,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.2297346591949463,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.026096008718013763,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.241189479827881,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02780098281800747,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.251811981201172,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.027289612218737602,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.2270426750183105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.026324691250920296,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.2375741004943848,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02650313824415207,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.2548668384552,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.026873862370848656,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.2308764457702637,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.026542654260993004,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.265718460083008,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.025225713849067688,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.2674314975738525,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.026227261871099472,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.2573204040527344,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02565634436905384,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.213150978088379,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.025645481422543526,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.256298303604126,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.026869403198361397,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.280714750289917,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.02498205378651619,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.2348437309265137,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024347074329853058,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.264981985092163,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.02532394789159298,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.2695374488830566,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.02515113539993763,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.2553372383117676,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.02415953390300274,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.2565059661865234,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.024644216522574425,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.250833034515381,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.02456027641892433,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.2761712074279785,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.02426525205373764,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.2629470825195312,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.028048187494277954,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.2276482582092285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.158375263214111,
+ "eval_runtime": 57.2344,
+ "eval_samples_per_second": 42.667,
+ "eval_steps_per_second": 1.345,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.02946070209145546,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.121852159500122,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.03865921497344971,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.1245241165161133,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.03603826463222504,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.1450228691101074,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.03139101341366768,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.1472625732421875,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.034746382385492325,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.151329755783081,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.03474539518356323,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.1338629722595215,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.033249594271183014,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.156055212020874,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.031936001032590866,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.141859292984009,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.03096783347427845,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.1524581909179688,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.03065602481365204,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.186131477355957,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.030547183007001877,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.1329398155212402,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.02896001562476158,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.1926004886627197,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.028308730572462082,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.1565964221954346,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.028324034065008163,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.1669921875,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.028712721541523933,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.1584408283233643,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.029040448367595673,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.1685431003570557,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.0281654242426157,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.166020393371582,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.02892228588461876,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.1665492057800293,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.029494833201169968,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.154541254043579,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.030289137735962868,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.1542015075683594,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.03235023096203804,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.1689505577087402,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.0317135788500309,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.14835262298584,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.030222205445170403,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.1633877754211426,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.02939915843307972,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.1395506858825684,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.030564088374376297,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.1217494010925293,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.029609909281134605,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.2093873023986816,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.027965130284428596,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.1839005947113037,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.028356825932860374,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.1262643337249756,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.027346370741724968,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.169198513031006,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.027762236073613167,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.163200855255127,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.029112881049513817,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.1838035583496094,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.029743950814008713,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.2060787677764893,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.030414888635277748,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.151318073272705,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026616528630256653,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.162863254547119,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.02728109061717987,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.2224156856536865,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027906913310289383,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.1820082664489746,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.02686009556055069,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.212308168411255,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.02723880484700203,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.195708751678467,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.028102140873670578,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.233551025390625,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.026631979271769524,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.2048614025115967,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.02571697160601616,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.211066722869873,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.026849795132875443,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.1466212272644043,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026982581242918968,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.1449697017669678,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.026633495464920998,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.21518611907959,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02661176398396492,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.1968324184417725,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.027553340420126915,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.1963584423065186,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.028503065928816795,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.164424419403076,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.028009451925754547,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.233910322189331,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.027892669662833214,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.2139945030212402,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.027213294059038162,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.1882662773132324,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.026182152330875397,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.1851303577423096,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02885112725198269,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.2572717666625977,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.028626110404729843,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.203584909439087,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02623717114329338,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.254133462905884,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.027923112735152245,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.221933126449585,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.02818283438682556,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.211678981781006,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026261597871780396,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.188681125640869,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02704189158976078,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.1620755195617676,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.026541976258158684,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.1781210899353027,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.026731157675385475,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.1845755577087402,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02696199342608452,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.2352161407470703,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.02645431086421013,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.214784860610962,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.025962313637137413,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.2050833702087402,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.027177246287465096,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.2680234909057617,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.02790023200213909,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.260568141937256,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.02651599608361721,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.227966547012329,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.02662951685488224,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.2258334159851074,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.025851519778370857,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.206686019897461,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.027288703247904778,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.1935949325561523,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.026220062747597694,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.2079954147338867,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.025760062038898468,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.2240872383117676,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03130556270480156,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.191253900527954,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.180140972137451,
+ "eval_runtime": 58.551,
+ "eval_samples_per_second": 41.707,
+ "eval_steps_per_second": 1.315,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.0355788990855217,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.1215739250183105,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04892604425549507,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.116471529006958,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.04660751670598984,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.1185190677642822,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04066198319196701,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.0865578651428223,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.04082629457116127,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.1207001209259033,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.03933149576187134,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.090609550476074,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.036161698400974274,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.1162736415863037,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.0331297442317009,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.0847244262695312,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.033159028738737106,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.11242938041687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.03180311247706413,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.1014082431793213,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.031308356672525406,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.0722479820251465,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03233671933412552,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.1153006553649902,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.03377128392457962,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.0850257873535156,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.033663321286439896,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.1224865913391113,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.03465031832456589,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.1194047927856445,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03184987232089043,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.1185622215270996,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.02998354844748974,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.1006929874420166,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03301263973116875,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.1423110961914062,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.031899046152830124,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.1092641353607178,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.030688438564538956,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.130136013031006,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.03196574002504349,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.112138271331787,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.033352479338645935,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.1272900104522705,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.03180698677897453,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.157930374145508,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.029812967404723167,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.1247220039367676,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.028813188895583153,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.089658260345459,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03237403556704521,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.138625383377075,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.03242601826786995,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.086696147918701,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.030924616381525993,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.1654038429260254,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.029315272346138954,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.1636850833892822,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.029705161228775978,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.1628870964050293,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.027950260788202286,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.1637582778930664,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.02769061177968979,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.1565256118774414,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.02836288884282112,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.148399829864502,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.02915837988257408,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.163072109222412,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.027166903018951416,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.106757640838623,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.027938751503825188,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.160259246826172,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.02934502437710762,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.141427516937256,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.027676397934556007,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.190730571746826,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.02690025605261326,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.1713430881500244,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.02652641572058201,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.137932777404785,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.027723152190446854,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.1590471267700195,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.02680366300046444,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.1951065063476562,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.027073737233877182,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.154332160949707,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.02711140178143978,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.178050994873047,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.026306450366973877,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.1711394786834717,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0266092661768198,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.153665065765381,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.0270571056753397,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.1791672706604004,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.02735244855284691,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.193817138671875,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.027825796976685524,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.192131519317627,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.02676193043589592,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.181812047958374,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.027864079922437668,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.1917107105255127,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.05341985076665878,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.1917757987976074,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.02956882305443287,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.163125991821289,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.028512390330433846,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.1717798709869385,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.028295889496803284,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.1639628410339355,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.027207838371396065,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.2133731842041016,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.028072115033864975,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.176164150238037,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.028681570664048195,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.18463134765625,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.027309462428092957,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.1805896759033203,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.027211535722017288,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.16485333442688,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.027867497876286507,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.1531105041503906,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.027384409680962563,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.2058889865875244,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.027143698185682297,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.157866954803467,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.027240339666604996,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.2181386947631836,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.028287801891565323,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.193422317504883,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.027239253744482994,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.189561367034912,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.028243936598300934,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.1677606105804443,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.02861366607248783,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.1926746368408203,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.0283220075070858,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.2236387729644775,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.02835279330611229,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.1697449684143066,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.02796671725809574,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.1984987258911133,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03166359290480614,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.19610595703125,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.2039618492126465,
+ "eval_runtime": 58.5416,
+ "eval_samples_per_second": 41.714,
+ "eval_steps_per_second": 1.315,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03369779884815216,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.0812559127807617,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05070783197879791,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.0677804946899414,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.051560062915086746,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.057511568069458,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04496128857135773,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.0786938667297363,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.04082498699426651,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.1139144897460938,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.042083434760570526,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.104275941848755,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.038129668682813644,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.0800914764404297,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.03446940705180168,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.076841354370117,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.03592631593346596,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.09020733833313,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.03772344812750816,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.09391713142395,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.034410931169986725,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.0629119873046875,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.03517600893974304,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.065742015838623,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.036171507090330124,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.1003737449645996,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.03234133496880531,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.0920376777648926,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.03142267093062401,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.10030198097229,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.033919043838977814,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.103757381439209,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.031541913747787476,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.083867311477661,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.030086882412433624,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.1067614555358887,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.02972504310309887,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.084838390350342,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.029621386900544167,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.0923590660095215,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.03075578436255455,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.146130084991455,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.030716707929968834,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.1039209365844727,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.03125046566128731,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.1153035163879395,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.02955695241689682,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.135328769683838,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.02832690440118313,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.1040847301483154,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.03152746707201004,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.106022834777832,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.03143440559506416,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.0805022716522217,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.028248652815818787,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.0860421657562256,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.02913457527756691,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.140413522720337,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.02998923510313034,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.129356861114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.030854487791657448,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.121748924255371,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.02916296012699604,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.1009695529937744,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.029774636030197144,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.1226165294647217,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.028826434165239334,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.160597085952759,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.03017219342291355,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.110243558883667,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.028641732409596443,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.0800039768218994,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.028798656538128853,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.179795026779175,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.029349444434046745,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.0988149642944336,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.029021043330430984,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.064181089401245,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.02870240993797779,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.1240763664245605,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.02823748253285885,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.146803140640259,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.028530996292829514,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.1475019454956055,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.029223430901765823,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.1216864585876465,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.027813591063022614,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.101078987121582,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.027918612584471703,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.1277475357055664,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.028475921601057053,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.125309467315674,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.028015555813908577,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.1116862297058105,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026905957609415054,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.100590467453003,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.027701787650585175,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.1296615600585938,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.027875013649463654,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.110649585723877,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.02704387530684471,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.110461473464966,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02804766595363617,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.1070356369018555,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.02761704847216606,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.1334657669067383,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.027547121047973633,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.128934621810913,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.028524842113256454,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.139470100402832,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02890404686331749,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.147649049758911,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02851000428199768,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.140340805053711,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.027430236339569092,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.141169548034668,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.027634181082248688,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.1349918842315674,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.027339693158864975,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.160902261734009,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.0271914079785347,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.1236281394958496,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.028070030733942986,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.14902400970459,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.027782054618000984,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.119905471801758,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.02806680090725422,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.1655449867248535,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.02678612992167473,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.125488758087158,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.026848314329981804,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.124390125274658,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.027314338833093643,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.135408639907837,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.027944346889853477,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.174356460571289,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.027283160015940666,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.1777257919311523,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02715890295803547,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.1342411041259766,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.026732949540019035,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.1567957401275635,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.032828811556100845,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.1452670097351074,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.23610782623291,
+ "eval_runtime": 57.861,
+ "eval_samples_per_second": 42.205,
+ "eval_steps_per_second": 1.331,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.031560398638248444,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.0346384048461914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.045797161757946014,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.0253865718841553,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.03975280746817589,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.064655303955078,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.03750868886709213,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.0535778999328613,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.0428822822868824,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.029329538345337,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.03772140294313431,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.038602113723755,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0340406708419323,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.024937152862549,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.036795567721128464,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.0093514919281006,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.034226614981889725,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.037254571914673,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.034093596041202545,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.0515356063842773,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.03472839668393135,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.020470142364502,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.03269178792834282,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.051333427429199,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.033917032182216644,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.052259922027588,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.03324243798851967,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.0460095405578613,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.032261185348033905,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.053861141204834,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.03396065905690193,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.048023223876953,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.034620821475982666,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.0418081283569336,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.032161977142095566,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.009852886199951,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.031200187280774117,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.0368716716766357,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03394074738025665,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.071866035461426,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.03577565774321556,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.080648422241211,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.03355010226368904,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.056335210800171,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.03100624494254589,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.070770263671875,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.030809594318270683,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.0508432388305664,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.029902741312980652,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.0698328018188477,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.029862644150853157,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.07668137550354,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.030799617990851402,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.0797815322875977,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.030734151601791382,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.0688986778259277,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03087432309985161,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.078287124633789,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.030203802511096,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.0989227294921875,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.030054137110710144,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.108900547027588,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.030525945127010345,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.0743603706359863,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03116847202181816,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.1147680282592773,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.02907412499189377,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.0795233249664307,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.029001710936427116,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.0691943168640137,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03244122490286827,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.0728673934936523,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03296313062310219,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.0621304512023926,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.030616287142038345,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.0865912437438965,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030837416648864746,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.0722920894622803,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.0298515222966671,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.074018955230713,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.02962825447320938,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.0872483253479004,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.0306903887540102,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.1015772819519043,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.02899639680981636,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.080179214477539,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.028741996735334396,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.0685665607452393,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03072701022028923,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.0677199363708496,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.028850078582763672,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.108672618865967,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.028551483526825905,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.1213910579681396,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03012346662580967,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.083681106567383,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.028515953570604324,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.100470781326294,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.030353186652064323,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.12215518951416,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.029224202036857605,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.105957269668579,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.02899855375289917,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.1268749237060547,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.029873481020331383,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.106316328048706,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02885374426841736,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.0703983306884766,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02765561453998089,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.1055452823638916,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.027459438890218735,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.1233561038970947,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.028457194566726685,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.085897445678711,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02814573235809803,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.0763416290283203,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.028196604922413826,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.079221248626709,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027772540226578712,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.101588726043701,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.028152190148830414,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.125788688659668,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.028581861406564713,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.1013102531433105,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.027978789061307907,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.1162004470825195,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.029316946864128113,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.1161651611328125,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.028609825298190117,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.1236777305603027,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028157226741313934,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.0862250328063965,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028885260224342346,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.139831304550171,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.027559489011764526,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.133944272994995,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.028318390250205994,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.144155979156494,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02769157849252224,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.1399827003479004,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.028807122260332108,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.080939769744873,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.033507585525512695,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.1044228076934814,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.260251998901367,
+ "eval_runtime": 57.818,
+ "eval_samples_per_second": 42.236,
+ "eval_steps_per_second": 1.332,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.03682977333664894,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.0096187591552734,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.049676790833473206,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.005502700805664,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.04197567328810692,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.986161231994629,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.040878161787986755,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.0177392959594727,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04427504912018776,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.9872331619262695,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.03664223104715347,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.982750654220581,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.03359461575746536,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.036256790161133,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.03522174432873726,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.9673585891723633,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.036801036447286606,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.9804298877716064,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.03503398597240448,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.0192883014678955,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.03201582282781601,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.0131349563598633,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.034218158572912216,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.018552541732788,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.034080881625413895,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.0217127799987793,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0325000062584877,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.9699440002441406,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.03486644849181175,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.996582508087158,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.033362530171871185,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.0134687423706055,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.03219781443476677,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.028303623199463,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.03249913081526756,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.041970729827881,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.03392951563000679,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.0437307357788086,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.035250015556812286,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.0016467571258545,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03219404071569443,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.9868557453155518,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.034740231931209564,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.0191102027893066,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.03378608450293541,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.9819235801696777,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.03126170486211777,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.0244431495666504,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.0341620147228241,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.025275230407715,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03303704410791397,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.0206751823425293,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.031866636127233505,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.065530300140381,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.03319002315402031,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.035928249359131,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.03198426961898804,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.035161018371582,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.02992428094148636,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.002439260482788,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.03143618628382683,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.0593252182006836,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.030728137120604515,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.043550491333008,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.029600419104099274,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.0696005821228027,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.031791139394044876,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.016582489013672,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.030455080792307854,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.021450996398926,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.0301319882273674,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.0840072631835938,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03059639409184456,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.069697380065918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.031164854764938354,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.0536410808563232,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03087274543941021,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.0589685440063477,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.03018832392990589,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.0317018032073975,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03111763298511505,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.0193753242492676,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.030017679557204247,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.033637046813965,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.030399367213249207,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.0928962230682373,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03129652142524719,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.0451242923736572,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.02999301627278328,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.0762739181518555,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.029050013050436974,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.035623550415039,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.030129432678222656,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.0518558025360107,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03071288764476776,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.070361375808716,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029714390635490417,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.0466830730438232,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031577423214912415,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.0402965545654297,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03088134154677391,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.041398525238037,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03100186213850975,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.0857033729553223,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.03201247379183769,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.0708329677581787,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.030221953988075256,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.0749387741088867,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.03167426586151123,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.086536169052124,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03179052844643593,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.0833234786987305,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.029809722676873207,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.0629539489746094,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03139837831258774,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.1162657737731934,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029216980561614037,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.075932025909424,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.030586371198296547,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.0647311210632324,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.02969566360116005,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.0812134742736816,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.028870539739727974,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.0748748779296875,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.029527587816119194,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.1284332275390625,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.029147129505872726,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.100613594055176,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028313715010881424,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.0623369216918945,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.029429465532302856,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.1212449073791504,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02836095355451107,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.104053497314453,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.028584513813257217,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.1087045669555664,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.0308294165879488,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.0686898231506348,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.028480850160121918,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.056847095489502,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.027765415608882904,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.0788183212280273,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03465089946985245,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.083177328109741,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.289492130279541,
+ "eval_runtime": 57.6739,
+ "eval_samples_per_second": 42.341,
+ "eval_steps_per_second": 1.335,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.03739845007658005,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.971905469894409,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.0454539880156517,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.9235942363739014,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.03972721844911575,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.943814277648926,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.039135806262493134,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.9464917182922363,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.038645751774311066,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.0013396739959717,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.03719992935657501,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.950340986251831,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.03530147671699524,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.013052225112915,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.034085702151060104,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.9704601764678955,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.03628101572394371,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.9669294357299805,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.035743679851293564,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.9868359565734863,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.03441668674349785,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.9880685806274414,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.03296050429344177,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.981017589569092,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.03243963047862053,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.9854543209075928,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.03302016481757164,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.946493148803711,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.033656030893325806,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.9685728549957275,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.03422021493315697,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.0115339756011963,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.034188102930784225,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.9989778995513916,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.031733572483062744,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.9996390342712402,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.03390700742602348,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.995767116546631,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.034200429916381836,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.9650206565856934,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.032906122505664825,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.0107078552246094,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.032964903861284256,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.9816744327545166,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.032815348356962204,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.9982123374938965,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.03259589150547981,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.0009212493896484,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.032530251890420914,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.99307918548584,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.032114770263433456,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.9932491779327393,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.032941076904535294,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.059328556060791,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.03325921669602394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.9920570850372314,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03189065307378769,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.986832857131958,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.0320298932492733,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.986527442932129,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.032062828540802,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.0112881660461426,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.03301781415939331,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.0216145515441895,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.0344916433095932,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.0155141353607178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.0320601612329483,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.9892053604125977,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03163528069853783,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.005617141723633,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0329110287129879,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.0535356998443604,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.030556878075003624,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.0203990936279297,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.031008001416921616,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.02127742767334,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.031155841425061226,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.9743614196777344,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.030541326850652695,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.014299154281616,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.031742338091135025,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.0051097869873047,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.02989187091588974,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.051193952560425,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.030058210715651512,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.017111301422119,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029765194281935692,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.053699016571045,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.030537934973835945,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.013504981994629,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03024795465171337,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.0272743701934814,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030360743403434753,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.030949354171753,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.03035072423517704,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.051844358444214,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030504168942570686,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.049577236175537,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.03011324070394039,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.9918508529663086,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03013714775443077,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.037904977798462,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.030488433316349983,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.027632236480713,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03132355213165283,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.056293249130249,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.03080538846552372,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.0026464462280273,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029128601774573326,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.0270485877990723,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.02996237576007843,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.0554800033569336,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.03137197345495224,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.030535936355591,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03169243037700653,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.006303310394287,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.030219880864024162,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.0744738578796387,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.03023732639849186,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.0363545417785645,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0328553169965744,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.040400981903076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.029735038056969643,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.028709888458252,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.030272237956523895,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.037313461303711,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.03199860826134682,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.0432136058807373,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.02964850887656212,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.0143280029296875,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.032533321529626846,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.075748920440674,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03221677988767624,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.0475339889526367,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.032870691269636154,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.077136993408203,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.0326097346842289,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.046293258666992,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.03128218278288841,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.024522066116333,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.031186817213892937,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.043630599975586,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03708904609084129,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.0491294860839844,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.324725151062012,
+ "eval_runtime": 58.8721,
+ "eval_samples_per_second": 41.48,
+ "eval_steps_per_second": 1.308,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03718156740069389,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.9137024879455566,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.04242836683988571,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.95491361618042,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.034661613404750824,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.931143283843994,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.03455570340156555,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.933091402053833,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.03829373046755791,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.938300132751465,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.037849120795726776,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.9631741046905518,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.036504197865724564,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.9297828674316406,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.032648202031850815,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.9342050552368164,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.03621445596218109,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.9636025428771973,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.03777499124407768,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.9307641983032227,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.03778013959527016,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.9447648525238037,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.034956999123096466,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.9596714973449707,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.033349718898534775,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.9255731105804443,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03491971269249916,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.8907923698425293,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.03583350032567978,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.9661455154418945,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.03390899673104286,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.9769177436828613,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.031930334866046906,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.941274881362915,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.03465861827135086,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.949491024017334,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.03498814254999161,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.9623749256134033,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.03372015431523323,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.952651023864746,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.032251399010419846,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.9634861946105957,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.03347077965736389,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.919717311859131,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.03428836911916733,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.9775307178497314,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.033225737512111664,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.981713056564331,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.033842265605926514,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.99894642829895,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.034690506756305695,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.9432735443115234,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.036143939942121506,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.993316411972046,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.03434835001826286,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.9919919967651367,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.03247698396444321,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.9784095287323,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03651128336787224,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.9647932052612305,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.03521955385804176,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.9638381004333496,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.03404879570007324,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.995042324066162,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.03397255018353462,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.98030948638916,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.034281399101018906,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.9578874111175537,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.03375784680247307,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.9310011863708496,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.032266587018966675,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.017228841781616,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.031346071511507034,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.985002040863037,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03182312101125717,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.968994140625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.031591545790433884,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.966625213623047,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03151732310652733,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.95800518989563,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.032275281846523285,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.9820804595947266,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03335779532790184,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.0172390937805176,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03131173551082611,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.967258930206299,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03147612512111664,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.0259766578674316,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.031647227704524994,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.984004020690918,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030623044818639755,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.9716386795043945,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03214540705084801,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.036837100982666,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03211726248264313,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.0012319087982178,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030490046367049217,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.000899314880371,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031676359474658966,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.999171733856201,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.03196047246456146,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.9652652740478516,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.03154071792960167,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.9977519512176514,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.03187791630625725,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.0295329093933105,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.030363669618964195,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.984137535095215,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.03208064287900925,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.007162094116211,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.030690619722008705,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.995037078857422,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.030634157359600067,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.002346992492676,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.0325019545853138,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.990049362182617,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03119182027876377,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.0190300941467285,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.032793447375297546,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.015969753265381,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03210591524839401,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.0110068321228027,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.031592607498168945,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.015460968017578,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.031449154019355774,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.980496406555176,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.0318843312561512,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.0351834297180176,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.030633851885795593,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.025505542755127,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03055507503449917,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.980363607406616,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.030444832518696785,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.0007693767547607,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.030038077384233475,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.9965107440948486,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030796151608228683,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.0268783569335938,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.032338906079530716,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.0161352157592773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.031326185911893845,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.998199939727783,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03641432896256447,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.99208664894104,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.365145683288574,
+ "eval_runtime": 59.6109,
+ "eval_samples_per_second": 40.966,
+ "eval_steps_per_second": 1.292,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036101240664720535,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.9229609966278076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04659443348646164,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.882582426071167,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.039827633649110794,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.913970708847046,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.03899892047047615,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.9170823097229004,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.040949538350105286,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.8714303970336914,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.04048046097159386,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.942922592163086,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.039095427840948105,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.917171001434326,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.036895740777254105,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.881669521331787,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.036871183663606644,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.904865026473999,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.03580665960907936,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.888312816619873,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.033497925847768784,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.9159886837005615,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.03645741939544678,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.922903537750244,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.03467963635921478,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.893218994140625,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.03516887500882149,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.946096181869507,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.03285518288612366,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.883183479309082,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.03461560606956482,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.9127964973449707,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.032447874546051025,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.941572904586792,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.032827962189912796,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.882232904434204,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.03459580987691879,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.9359278678894043,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.033537592738866806,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.9211392402648926,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03445928171277046,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.951965570449829,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.034292835742235184,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.922822952270508,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.0331917330622673,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.93473219871521,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.035322073847055435,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.9726855754852295,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03501332551240921,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.937869071960449,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.03303850442171097,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.907097101211548,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.034785833209753036,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.9137706756591797,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03453590348362923,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.9239890575408936,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.031692180782556534,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.94581937789917,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.033933885395526886,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.9585378170013428,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03295003995299339,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.934412956237793,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03174088895320892,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.905796527862549,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.9427170753479004,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.031007668003439903,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.9342517852783203,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03159578889608383,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.9440736770629883,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03076927363872528,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.9372286796569824,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03194348141551018,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.950411558151245,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.031811829656362534,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.9286372661590576,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031859494745731354,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.949293851852417,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03211456537246704,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.9497315883636475,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032061900943517685,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.9805281162261963,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.03235242888331413,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.9582552909851074,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03274158015847206,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.9244611263275146,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03237871825695038,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.9584853649139404,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03335065394639969,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.967963933944702,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.032168373465538025,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.9352662563323975,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.031649500131607056,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.9314675331115723,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03199118748307228,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.94907283782959,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.032334573566913605,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.9527769088745117,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03069196455180645,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.9593281745910645,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.0315573588013649,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.9340977668762207,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.03241933509707451,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.987230062484741,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.030948035418987274,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.9927141666412354,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.03212989121675491,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.9522669315338135,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03238612040877342,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.9981212615966797,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.031098810955882072,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.980008840560913,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03202599659562111,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.945791721343994,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.03131226450204849,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.978998899459839,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03163373842835426,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.964719772338867,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03205667808651924,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.9884414672851562,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03170310705900192,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.9828829765319824,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.033174507319927216,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.993612051010132,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.031098203733563423,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.960470676422119,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.0320245698094368,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.9731860160827637,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03298075124621391,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.978109359741211,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.033254217356443405,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.99928617477417,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03272705525159836,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.9873595237731934,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.032606013119220734,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.9822492599487305,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.033151786774396896,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.0517663955688477,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.032137393951416016,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.0320076942443848,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03240504115819931,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.965942621231079,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03748507797718048,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.986581325531006,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.39909029006958,
+ "eval_runtime": 57.8644,
+ "eval_samples_per_second": 42.202,
+ "eval_steps_per_second": 1.331,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.035249192267656326,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.8695621490478516,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.04332931339740753,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.872889518737793,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.0370100736618042,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.891376495361328,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.03743851184844971,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.8930583000183105,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.03672601655125618,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.8492941856384277,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.03673556447029114,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.847184181213379,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.03713645413517952,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.891683340072632,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.035592418164014816,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.8745617866516113,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.03660868853330612,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.8822832107543945,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.03587000072002411,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.8569459915161133,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.03584085404872894,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.871934413909912,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.03400537371635437,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.898621082305908,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.03427768498659134,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.8695733547210693,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.03240136429667473,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.8452627658843994,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.035201236605644226,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.846024751663208,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.03296452388167381,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.8867619037628174,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03552323952317238,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.932100534439087,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.03576110675930977,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.897157669067383,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.0338599719107151,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.9155187606811523,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.035200271755456924,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.886493682861328,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.0342402420938015,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.8792905807495117,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.03284120932221413,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.901045560836792,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03285597264766693,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.8879854679107666,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.03379133343696594,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.9062161445617676,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.03294893354177475,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.912517547607422,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.03286999091506004,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.8826236724853516,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.03335225582122803,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.9071149826049805,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.03209758177399635,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.9216933250427246,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03388523310422897,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.927353858947754,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.032792337238788605,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.90283203125,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.032631076872348785,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.8815271854400635,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03211396187543869,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.929408550262451,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03343743085861206,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.899761199951172,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03195416182279587,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.9175775051116943,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.032496511936187744,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.903224468231201,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03279714286327362,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.934840679168701,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.03238125517964363,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.9084653854370117,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.032917145639657974,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.9250540733337402,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03196168690919876,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.906609058380127,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03373948857188225,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.908381938934326,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.0319669209420681,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.914118528366089,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.031623195856809616,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.92551326751709,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03334169462323189,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.956587076187134,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.032796405255794525,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.9236581325531006,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.03214484080672264,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.925595283508301,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.03265630453824997,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.916499376296997,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.031656887382268906,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.931150436401367,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.032084085047245026,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.9337143898010254,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.032294776290655136,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.8914670944213867,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03171965479850769,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.9523673057556152,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03230489417910576,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.937072515487671,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03182378038764,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.924713373184204,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.9573068618774414,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.03187672421336174,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.919142246246338,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03102356567978859,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.9293179512023926,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.03191511705517769,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.9295756816864014,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03278054669499397,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.9508566856384277,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03192828223109245,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.934763193130493,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.032828524708747864,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.941349506378174,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.03223246708512306,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.966546058654785,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03259873390197754,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.9705801010131836,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03265198692679405,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.9603195190429688,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.032012395560741425,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.9593594074249268,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0328369215130806,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.933140277862549,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03183514252305031,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.942354679107666,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03233134374022484,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.92272686958313,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03143055737018585,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.9438138008117676,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03257118910551071,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.957641124725342,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031078124418854713,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.9572582244873047,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.03105352818965912,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.9723658561706543,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.031190577894449234,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.9154210090637207,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.03738512471318245,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.9228148460388184,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.432395935058594,
+ "eval_runtime": 57.493,
+ "eval_samples_per_second": 42.475,
+ "eval_steps_per_second": 1.339,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.037372712045907974,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.8703017234802246,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.04003313183784485,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.846599578857422,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.035013001412153244,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.8098678588867188,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.03771941363811493,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.84356951713562,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.036406442523002625,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.818575859069824,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.03623209521174431,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.8696632385253906,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.03613818809390068,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.854975700378418,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.036677125841379166,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.812471628189087,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.035224951803684235,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.8532795906066895,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.034982819110155106,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.859151840209961,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.033107299357652664,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.858462333679199,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.036417897790670395,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.8269128799438477,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.034186989068984985,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.8623671531677246,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.034109801054000854,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.8755102157592773,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.03457697480916977,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.851405620574951,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.03468300774693489,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.8593785762786865,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.034213028848171234,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.8725686073303223,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.03522878512740135,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.8508810997009277,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.03519051522016525,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.8610117435455322,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03408816084265709,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.8392627239227295,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.03551741689443588,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.8957273960113525,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.03470981493592262,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.852356433868408,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.034143827855587006,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.8662776947021484,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.03391839191317558,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.8915393352508545,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.03528929129242897,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.8711304664611816,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.03383256867527962,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.8797762393951416,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.034317776560783386,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.8560853004455566,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.03462211415171623,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.866088390350342,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.034040067344903946,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.8447439670562744,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03318457305431366,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.9107751846313477,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.03563983738422394,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.896859645843506,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03428848460316658,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.8807625770568848,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.03331796079874039,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.890900135040283,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.03448121249675751,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.8964316844940186,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03365302085876465,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.8742756843566895,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.034365978091955185,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.8907721042633057,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.033616915345191956,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.888810634613037,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.033790890127420425,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.9025700092315674,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.032762594521045685,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.8793303966522217,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.035109154880046844,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.8829760551452637,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03275948762893677,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.913402557373047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.03401525318622589,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.906674385070801,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.033500537276268005,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.882190227508545,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03277073800563812,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.915426731109619,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03256448730826378,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.897702217102051,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.033269502222537994,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.887411117553711,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03247280418872833,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.918998956680298,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.03282757103443146,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.878009080886841,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03320639207959175,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.913011074066162,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.033050697296857834,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.9491519927978516,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03235333412885666,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.897588014602661,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03257526457309723,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.9275996685028076,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.032952696084976196,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.914909839630127,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.0327947735786438,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.8949787616729736,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03329124674201012,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.9024860858917236,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03428658843040466,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.896939277648926,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03282622620463371,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.919009208679199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.0329170897603035,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.9075279235839844,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03273281455039978,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.913926124572754,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.03187453746795654,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.929065227508545,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03417131304740906,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.929168939590454,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03281114995479584,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.9142422676086426,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03288140520453453,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.889498233795166,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.03295015171170235,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.8863954544067383,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03233663737773895,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.903395891189575,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.032834749668836594,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.903757333755493,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.03178175166249275,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.893575668334961,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.031149886548519135,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.9036448001861572,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.03207555040717125,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.895413398742676,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.03135302662849426,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.912942409515381,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030814621597528458,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.9085190296173096,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03772229328751564,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.8710484504699707,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.469374656677246,
+ "eval_runtime": 56.641,
+ "eval_samples_per_second": 43.114,
+ "eval_steps_per_second": 1.359,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03446470946073532,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.8153815269470215,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.03691394254565239,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.7982006072998047,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.03586282953619957,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.7988619804382324,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.039884597063064575,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.793919086456299,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.03394780680537224,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.849790334701538,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.03676057234406471,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.828138828277588,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.03541228547692299,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.8262484073638916,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.0352398119866848,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.839468479156494,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.03511424735188484,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.812490463256836,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.034419652074575424,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.8443245887756348,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.03387727960944176,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.8124494552612305,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.033847443759441376,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.8152976036071777,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.03418067842721939,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.8289899826049805,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.034598272293806076,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.85463285446167,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.03405346721410751,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.8366053104400635,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.0326545275747776,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.798079490661621,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.034301143139600754,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.826050043106079,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.03322048485279083,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.8373303413391113,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.03460463136434555,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.811732292175293,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.033100854605436325,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.8398869037628174,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03397074341773987,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.8279929161071777,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.033724334090948105,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.8651649951934814,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.03249189630150795,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.8317794799804688,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.03396932780742645,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.835175037384033,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.03288092464208603,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.8255081176757812,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.03325018659234047,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.8808155059814453,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.032659146934747696,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.844255208969116,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.033794667571783066,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.8324851989746094,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.033197466284036636,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.847168445587158,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.033781230449676514,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.8837218284606934,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.033751554787158966,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.859447717666626,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.03268533945083618,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.825350761413574,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.03334410861134529,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.8775081634521484,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.033601801842451096,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.8139495849609375,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.03383617103099823,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.8522391319274902,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03364632651209831,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.8646411895751953,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03337915614247322,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.8269598484039307,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03271420672535896,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.860752582550049,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.0327487513422966,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.892174243927002,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03336317092180252,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.8342764377593994,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03182297945022583,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.8651742935180664,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.03333026170730591,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.87003231048584,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.031769055873155594,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.8893930912017822,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03293822333216667,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.882981777191162,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03192837908864021,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.8615071773529053,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.032835572957992554,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.8465023040771484,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.03238287940621376,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.859096050262451,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03261588141322136,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.8671963214874268,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.032639745622873306,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.847773313522339,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.03352993726730347,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.884315252304077,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03244686871767044,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.8648123741149902,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.03223097696900368,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.8568317890167236,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03279644623398781,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.88169002532959,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.031271256506443024,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.8385443687438965,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03260452672839165,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.850785732269287,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.0321393720805645,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.8878376483917236,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.031968653202056885,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.859452724456787,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032150719314813614,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.90781307220459,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03173813596367836,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.8684515953063965,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03238045424222946,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.8368163108825684,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03147270530462265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.9057931900024414,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03182937577366829,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.8692893981933594,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.031568143516778946,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.8956680297851562,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.03183847293257713,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.9455864429473877,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03154289722442627,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.881195306777954,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.032405827194452286,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.910112142562866,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.031707290560007095,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.8775830268859863,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.032700903713703156,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.897766351699829,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03194038197398186,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.8818325996398926,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.0319269634783268,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.885464668273926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03255274519324303,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.9075706005096436,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03922920301556587,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.868931293487549,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.5041823387146,
+ "eval_runtime": 56.5164,
+ "eval_samples_per_second": 43.209,
+ "eval_steps_per_second": 1.362,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.03487532213330269,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.7858150005340576,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.03757835552096367,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.760089635848999,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.03367038816213608,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.773590564727783,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.03676961734890938,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.7899584770202637,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.033205557614564896,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.7687323093414307,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.03825245425105095,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.832014799118042,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.03551522269845009,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.801161050796509,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.03563264012336731,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.7789340019226074,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.03769055753946304,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.7946577072143555,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.03326762095093727,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.7901415824890137,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.03519181162118912,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.8277456760406494,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03473416343331337,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.773768663406372,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03260878846049309,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.7627739906311035,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.034741878509521484,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.795914649963379,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03342209383845329,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.8334903717041016,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.033505652099847794,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.8028039932250977,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.033087071031332016,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.841115713119507,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03366958722472191,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.827853202819824,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03446904942393303,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.8055543899536133,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.032004229724407196,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.7958261966705322,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.034619275480508804,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.8495965003967285,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.03300263360142708,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.821180820465088,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.03343051299452782,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.832827568054199,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.03356117755174637,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.812239170074463,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.03272807225584984,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.775458335876465,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.032449908554553986,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.781595230102539,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.03275706246495247,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.820122718811035,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03220542147755623,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.8294851779937744,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.031954556703567505,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.8244080543518066,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03279522806406021,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.838766574859619,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0325172133743763,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.819446086883545,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03238601237535477,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.79189395904541,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.033187057822942734,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.8329806327819824,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.033052098006010056,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.859341621398926,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03370978683233261,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.8741466999053955,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.032403722405433655,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.7915124893188477,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03302672505378723,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.8447070121765137,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.03291403502225876,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.8044419288635254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.033257290720939636,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.826233386993408,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.032518718391656876,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.853498935699463,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.033048365265131,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.837798595428467,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.033396560698747635,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.821176528930664,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.03348768129944801,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.8420958518981934,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03432426601648331,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.8399481773376465,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03322499245405197,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.872260332107544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03470583260059357,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.852072238922119,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.03246411681175232,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.852479934692383,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.034265074878931046,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.8654937744140625,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03242061287164688,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.805283546447754,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.03301931917667389,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.85548734664917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.03337244689464569,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.8210458755493164,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03238043934106827,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.8109846115112305,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.033897001296281815,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.851470708847046,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03259831666946411,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.8891053199768066,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03364091366529465,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.862358331680298,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.0329914465546608,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.832576036453247,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.033170927315950394,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.8525824546813965,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.0325101763010025,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.8674569129943848,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.033472560346126556,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.850935220718384,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03266644850373268,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.8125693798065186,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03234545513987541,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.8465185165405273,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03224002197384834,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.862696409225464,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032113656401634216,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.834886074066162,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03165457025170326,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.850790023803711,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.032658688724040985,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.839470863342285,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03168034926056862,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.8641517162323,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03244374692440033,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.852146625518799,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03152457997202873,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.838306427001953,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.032360222190618515,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.8598556518554688,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03107994608581066,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.8537580966949463,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03254120796918869,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.8840019702911377,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039810214191675186,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.8393032550811768,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.535612106323242,
+ "eval_runtime": 57.6473,
+ "eval_samples_per_second": 42.361,
+ "eval_steps_per_second": 1.336,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.035575415939092636,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 2.7888336181640625,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.03578243777155876,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 2.784425735473633,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.03683833032846451,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 2.7602436542510986,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.034776996821165085,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 2.734706163406372,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.03540709987282753,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 2.8027572631835938,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.033955518156290054,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 2.785323143005371,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.03607526049017906,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 2.767956495285034,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.033837687224149704,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 2.7793612480163574,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.033539947122335434,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 2.7713685035705566,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.03523581102490425,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 2.798258066177368,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.03330468013882637,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 2.851783037185669,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.033918727189302444,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 2.779262065887451,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.03370535373687744,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 2.745286703109741,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.033641379326581955,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 2.7701475620269775,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.0328962542116642,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 2.791355848312378,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.032616086304187775,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 2.751828193664551,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.03318217024207115,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 2.778864860534668,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.03360389173030853,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 2.7615017890930176,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.032204389572143555,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 2.7768197059631348,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.03359612077474594,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 2.812666893005371,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.03206004947423935,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 2.7630255222320557,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.03305307775735855,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 2.7884228229522705,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.03213780000805855,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 2.783125877380371,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.033877503126859665,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 2.816810131072998,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.03254047781229019,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 2.786142587661743,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.03319665789604187,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 2.8080053329467773,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.03267517313361168,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 2.770346164703369,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.0328146256506443,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 2.787729501724243,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.03216152638196945,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 2.8101940155029297,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.03260299190878868,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 2.8068180084228516,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.03232688829302788,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 2.799811363220215,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.03209792822599411,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 2.761941432952881,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.03259320184588432,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 2.8126721382141113,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.03288176283240318,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 2.8376340866088867,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03155255690217018,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 2.775063991546631,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.03322870656847954,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 2.800600051879883,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03230913728475571,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 2.8152663707733154,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03264563903212547,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 2.79964017868042,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.03290131315588951,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 2.7971184253692627,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.032422926276922226,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 2.8155899047851562,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.03309594467282295,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 2.784984588623047,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.032494667917490005,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 2.8198728561401367,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.031838785856962204,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 2.770472288131714,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.03269412741065025,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 2.821829319000244,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03241150453686714,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 2.807669162750244,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.032060347497463226,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 2.816555976867676,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03307179734110832,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 2.809134006500244,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.03209899365901947,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 2.8191277980804443,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.032275401055812836,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 2.8053417205810547,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.033092692494392395,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 2.8481149673461914,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03189569339156151,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 2.7976434230804443,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.032415684312582016,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 2.851633310317993,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.03285417705774307,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 2.8052849769592285,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.03224415332078934,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 2.7979726791381836,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.031853772699832916,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 2.8241000175476074,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.0322316437959671,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 2.7952651977539062,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.031960539519786835,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 2.836901903152466,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.03200649470090866,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 2.83998441696167,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.03190051019191742,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 2.8309121131896973,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.032434865832328796,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 2.787348985671997,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.031419698148965836,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 2.8245019912719727,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.03204237297177315,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 2.867809772491455,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.03196193277835846,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 2.83435320854187,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.03119942732155323,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 2.8341619968414307,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.031631290912628174,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 2.8319990634918213,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03170793876051903,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 2.8110299110412598,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.031340908259153366,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 2.8069095611572266,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.032818615436553955,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 2.869403123855591,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03155144676566124,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 2.805049180984497,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.03143952786922455,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 2.8520846366882324,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.03166790306568146,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 2.8212716579437256,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03885777294635773,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 2.808021068572998,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.569339275360107,
+ "eval_runtime": 57.1485,
+ "eval_samples_per_second": 42.731,
+ "eval_steps_per_second": 1.347,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.034283265471458435,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 2.7696597576141357,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.03373602405190468,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 2.740394115447998,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.035183947533369064,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 2.777935028076172,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.033623334020376205,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 2.750498056411743,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.03427752107381821,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 2.7566113471984863,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.03325826674699783,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 2.741637706756592,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.032829977571964264,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 2.791822671890259,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.033819783478975296,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 2.7341437339782715,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.03247702494263649,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 2.722377300262451,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.03292803093791008,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 2.7639598846435547,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.032617710530757904,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 2.745471477508545,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.03270521014928818,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 2.7421998977661133,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.032306969165802,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 2.73567533493042,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.03307414427399635,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 2.745532751083374,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.03215734288096428,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 2.7670440673828125,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.03348211571574211,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 2.7779524326324463,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.03339233249425888,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 2.801846504211426,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.03207641839981079,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 2.754849910736084,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.03268122300505638,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 2.783100128173828,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.0316154919564724,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 2.7738475799560547,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.03281943127512932,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 2.719428300857544,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.03191844001412392,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 2.7809932231903076,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.033162347972393036,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 2.762366533279419,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.03232284262776375,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 2.791337251663208,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.031977295875549316,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 2.7846035957336426,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.03218942880630493,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 2.724649667739868,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.03226738050580025,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 2.766108751296997,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.032297879457473755,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 2.7549610137939453,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.031384050846099854,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 2.7626614570617676,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.032188814133405685,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 2.7857532501220703,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.033742956817150116,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 2.799126148223877,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.032267872244119644,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 2.7718982696533203,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.032209400087594986,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 2.7860467433929443,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.032202448695898056,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 2.7959060668945312,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.032153163105249405,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 2.7876834869384766,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.03210372105240822,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 2.7873010635375977,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.03164523094892502,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 2.7512216567993164,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.032562121748924255,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 2.8027753829956055,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.03262171521782875,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 2.8270232677459717,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.03154899552464485,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 2.7840075492858887,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.032488565891981125,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 2.81056547164917,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.03253582864999771,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 2.796245813369751,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.03186483681201935,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 2.7793664932250977,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.03157131001353264,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 2.7430591583251953,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03213154152035713,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 2.7686574459075928,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.032049816101789474,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 2.7827882766723633,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 2.7825546264648438,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.032422985881567,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 2.8061885833740234,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.032443851232528687,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 2.801968812942505,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.032752737402915955,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 2.796931266784668,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03166511282324791,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 2.8253393173217773,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03266747668385506,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 2.7977123260498047,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03224790468811989,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 2.8086612224578857,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.031219875440001488,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 2.7706151008605957,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.03268706426024437,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 2.777017831802368,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03180723637342453,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 2.7993979454040527,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.032663531601428986,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 2.8316493034362793,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03161679953336716,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 2.7913477420806885,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.03250109404325485,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 2.809959888458252,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.032254476100206375,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 2.7803966999053955,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.032249052077531815,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 2.7919392585754395,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.03209810331463814,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 2.778228759765625,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.03182975575327873,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 2.7956900596618652,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.03231583535671234,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 2.8188533782958984,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03172706812620163,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 2.7777481079101562,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03181561082601547,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 2.8213555812835693,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03313136473298073,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 2.8289520740509033,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03205486387014389,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 2.809636116027832,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.03203390911221504,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 2.801621913909912,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.03193974867463112,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 2.7802486419677734,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.032365866005420685,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 2.8018054962158203,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.038718629628419876,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 2.778092384338379,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.596390247344971,
+ "eval_runtime": 57.7915,
+ "eval_samples_per_second": 42.255,
+ "eval_steps_per_second": 1.332,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.036336805671453476,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 2.7744364738464355,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.0316612645983696,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 2.740724563598633,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.035904236137866974,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 2.7506675720214844,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.03343231603503227,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 2.715701103210449,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.03319878503680229,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 2.7158095836639404,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.034973908215761185,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 2.7205851078033447,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0326351560652256,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 2.7368392944335938,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.03459784761071205,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 2.7572948932647705,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.03433673083782196,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 2.756472110748291,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.033050913363695145,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 2.727799654006958,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.03323569521307945,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 2.7098822593688965,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.032346174120903015,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 2.7528586387634277,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.032360825687646866,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 2.745169162750244,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.03219181299209595,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 2.7412123680114746,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.03166823461651802,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 2.726210832595825,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.03198220953345299,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 2.742135763168335,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.03186439350247383,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 2.726210355758667,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.031570304185152054,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 2.721841335296631,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.03214096650481224,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 2.7286245822906494,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.03189755976200104,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 2.7493395805358887,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.03185759484767914,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 2.7649126052856445,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.030986769124865532,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 2.7538859844207764,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.03220684826374054,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 2.7524051666259766,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.031301289796829224,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 2.7590246200561523,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.03188304230570793,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 2.7554893493652344,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.03162779659032822,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 2.754054069519043,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.03091351129114628,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 2.775412082672119,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.031103957444429398,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 2.7786972522735596,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.031575944274663925,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 2.766420602798462,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.03108934871852398,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 2.748870849609375,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.031753718852996826,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 2.7378451824188232,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.03170621395111084,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 2.7669477462768555,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.03145500272512436,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 2.7953059673309326,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.03122818097472191,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 2.7311127185821533,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.03124464489519596,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 2.6937713623046875,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.03180540353059769,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 2.733259677886963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.03137016296386719,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 2.732177257537842,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.031839460134506226,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 2.726780414581299,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.0316641703248024,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 2.77913761138916,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.031652599573135376,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 2.7615957260131836,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.031522803008556366,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 2.7664713859558105,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.032187819480895996,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 2.746629238128662,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.03177458792924881,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 2.766712188720703,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.03131174296140671,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 2.771763563156128,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03206568956375122,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 2.797121524810791,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03160213306546211,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 2.7942163944244385,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.031057968735694885,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 2.755692958831787,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.03130852058529854,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 2.787384271621704,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03187759593129158,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 2.7955973148345947,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.031654201447963715,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 2.7755446434020996,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.03207271918654442,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 2.762018918991089,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.031359415501356125,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 2.805023670196533,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.03266169875860214,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 2.794983386993408,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03115970641374588,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 2.749746322631836,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.03204722702503204,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 2.7850396633148193,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03195057064294815,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 2.760915756225586,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.032219987362623215,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 2.776365280151367,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03176714479923248,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 2.779020309448242,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.032023120671510696,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 2.7487635612487793,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.03245598077774048,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 2.7448408603668213,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.031706083565950394,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 2.7816359996795654,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.032322995364665985,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 2.7536940574645996,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.031783461570739746,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 2.7843456268310547,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.032678306102752686,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 2.801398754119873,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.03182339295744896,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 2.7606360912323,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.03216681629419327,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 2.8024938106536865,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03215061500668526,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 2.808044672012329,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.03153601288795471,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 2.7573795318603516,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.03208918869495392,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 2.775096893310547,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.03181913122534752,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 2.7780838012695312,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.03192935138940811,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 2.7965097427368164,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.0396445207297802,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 2.806685447692871,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.625502109527588,
+ "eval_runtime": 58.0936,
+ "eval_samples_per_second": 42.036,
+ "eval_steps_per_second": 1.325,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.03469860181212425,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 2.6991372108459473,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.03283834829926491,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 2.7259292602539062,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.034924499690532684,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 2.7379021644592285,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.034502189606428146,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 2.7289793491363525,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.03308502584695816,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 2.7090988159179688,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.0341394878923893,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 2.7335824966430664,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.03431018441915512,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 2.748699903488159,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.03247246518731117,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 2.707603931427002,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.034720007330179214,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 2.7011375427246094,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.032531965523958206,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 2.742347478866577,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.032509587705135345,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 2.713306188583374,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.032791849225759506,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 2.718690872192383,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.03192365914583206,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 2.7517895698547363,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.03311075642704964,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 2.7561326026916504,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.03173956274986267,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 2.709946632385254,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.032993774861097336,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 2.752880096435547,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.032164067029953,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 2.7515780925750732,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.03307962417602539,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 2.725029468536377,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.031974758952856064,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 2.738672971725464,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.03306545317173004,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 2.723395347595215,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.03194974735379219,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 2.726745843887329,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.03151552751660347,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 2.7316157817840576,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.03236325457692146,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 2.693617343902588,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.03182254731655121,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 2.7267110347747803,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.03176427632570267,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 2.7479493618011475,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.032564207911491394,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 2.7499499320983887,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.0311724990606308,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 2.7501862049102783,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.031560108065605164,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 2.6962831020355225,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.031850121915340424,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 2.731621503829956,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.03137243911623955,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 2.760693073272705,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.03272967040538788,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 2.7518720626831055,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.03132633864879608,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 2.7601799964904785,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.03168002516031265,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 2.7225546836853027,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.031334057450294495,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 2.7221384048461914,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.03146284073591232,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 2.7389538288116455,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.031102966517210007,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 2.7562854290008545,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.031278736889362335,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 2.734985828399658,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.03147172927856445,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 2.766950845718384,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.031015127897262573,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 2.737208366394043,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03091510199010372,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 2.761941432952881,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.03113712929189205,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 2.7699170112609863,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.030985459685325623,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 2.7287673950195312,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.031207162886857986,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 2.7633845806121826,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.03153573349118233,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 2.7301464080810547,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.031127776950597763,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 2.746314525604248,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.031800318509340286,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 2.7607038021087646,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.031280338764190674,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 2.763211488723755,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.030917951837182045,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 2.7608180046081543,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03197769448161125,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 2.747262716293335,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.030538206920027733,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 2.7575979232788086,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.03191604092717171,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 2.723932981491089,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.031094307079911232,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 2.7764835357666016,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.031684279441833496,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 2.746481418609619,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.03092978522181511,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 2.749342441558838,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.031006447970867157,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 2.7438805103302,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03162384778261185,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 2.768954038619995,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.031565409153699875,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 2.7825887203216553,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.0312856025993824,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 2.758105754852295,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03127129375934601,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 2.74495267868042,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.03154046833515167,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 2.7607998847961426,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03153553605079651,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 2.767052173614502,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.03134170174598694,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 2.75537109375,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.030924728140234947,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 2.754851818084717,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03129918873310089,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 2.7355051040649414,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03155917301774025,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 2.7416505813598633,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.031762897968292236,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 2.7178144454956055,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.03035889007151127,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 2.712557792663574,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.0321216844022274,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 2.766390323638916,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.03152631223201752,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 2.757894515991211,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.030752019956707954,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 2.7429919242858887,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03164204582571983,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 2.747443914413452,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.03954765200614929,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 2.8110146522521973,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.653435707092285,
+ "eval_runtime": 57.5301,
+ "eval_samples_per_second": 42.447,
+ "eval_steps_per_second": 1.338,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.031107356771826744,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 2.6978492736816406,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.03117651492357254,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 2.7588353157043457,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.03113948553800583,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 2.704969882965088,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.03138681873679161,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 2.736638069152832,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.031039219349622726,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 2.676696300506592,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.030828941613435745,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 2.730391025543213,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.031116550788283348,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 2.7276642322540283,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.03079712577164173,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 2.7261881828308105,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.030890202149748802,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 2.7424674034118652,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.030908938497304916,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 2.7482223510742188,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.031069086864590645,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 2.724377155303955,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.030668172985315323,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 2.6998305320739746,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.03070460446178913,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 2.7243764400482178,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.030343424528837204,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 2.7061843872070312,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.03097744658589363,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 2.714763641357422,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.030060146003961563,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 2.691669464111328,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.031011972576379776,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 2.7139039039611816,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.03130429983139038,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 2.75567626953125,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.030246606096625328,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 2.718505859375,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.03001324273645878,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 2.7078113555908203,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.030866209417581558,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 2.7188260555267334,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.03085138462483883,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 2.702205181121826,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.03080092929303646,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 2.7203714847564697,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.030342809855937958,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 2.727083683013916,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.030209429562091827,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 2.7203402519226074,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.031100839376449585,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 2.7541468143463135,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.030545715242624283,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 2.7533421516418457,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.03048386052250862,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 2.6727168560028076,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.029950937256217003,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 2.671605110168457,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.03051062487065792,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 2.728219509124756,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.030642330646514893,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 2.6857504844665527,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.030983751639723778,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 2.708402633666992,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.03060961700975895,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 2.74355149269104,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.03050919994711876,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 2.751861572265625,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.030905725434422493,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 2.7248451709747314,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.03106841817498207,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 2.775455951690674,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.030558940023183823,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 2.7393970489501953,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.030954021960496902,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 2.734126329421997,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.030478982254862785,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 2.725252866744995,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.03083394654095173,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 2.7237637042999268,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.031072242185473442,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 2.7282185554504395,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.030463198199868202,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 2.733081817626953,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.030666431412100792,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 2.7412750720977783,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03041495569050312,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 2.7014739513397217,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.030178792774677277,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 2.708418130874634,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.030795138329267502,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 2.7649779319763184,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.031145716086030006,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 2.731771945953369,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.030269090086221695,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 2.743135452270508,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.031099146232008934,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 2.729976177215576,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.030792539939284325,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 2.7519168853759766,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.030581463128328323,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 2.7143120765686035,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.03056303784251213,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 2.747217893600464,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03082135319709778,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 2.73905611038208,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.030459454283118248,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 2.7251338958740234,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.031071403995156288,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 2.7557477951049805,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.030709929764270782,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 2.721416473388672,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.030339695513248444,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 2.749926805496216,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.030725281685590744,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 2.7278075218200684,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.03076869808137417,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 2.737576723098755,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.03086596541106701,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 2.7216379642486572,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.03075433149933815,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 2.772115707397461,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.030509356409311295,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 2.6987905502319336,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03068956546485424,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 2.709048271179199,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.030789071694016457,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 2.7498631477355957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.030625686049461365,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 2.754007339477539,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.031108634546399117,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 2.7382864952087402,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.031294919550418854,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 2.7064387798309326,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.031157594174146652,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 2.718447208404541,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.03080083057284355,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 2.7023630142211914,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.030082032084465027,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 2.710141897201538,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.030887775123119354,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 2.7583160400390625,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.039367008954286575,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 2.7494239807128906,
+ "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.3813260125995008e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-3240/training_args.bin b/runs/l2r10-baseline/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-360/chat_template.jinja b/runs/l2r10-baseline/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-360/config.json b/runs/l2r10-baseline/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-360/generation_config.json b/runs/l2r10-baseline/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-360/model.safetensors b/runs/l2r10-baseline/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..de4c029797f4f7f694a6831a2961c500bf538536
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2588eceff81ee8211b111710186015c757c2082532bdbde9daccdf910da1504f
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-360/optimizer.pt b/runs/l2r10-baseline/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..81cd25dfe6eb33902ef5495c3b88ebeef72977e5
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:284ddd02bb1e66cc08b7c10009aa9bfe20614c98452594dc482e9919dec35d72
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-360/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c3dcf55387a71ee2a6afda87f94800657089f6cc
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e5cf3bac380addaa516f941e6a276bb95c92ecfb3c08371ff9fba4b2faac6df0
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-360/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..26b693a57bc20ed89f333203ee3df5b86d2cc75b
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:219db464e75bbf2b6c41a71470b6182f4de4159f65fd71e3323fd50c658eea3a
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-360/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-360/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..9f43ebb920eaa7f2483f205604373ffec78981af
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:03b8316374c36bf601b0d74a53807a0d460d535e42771ed5f0f6db088f66ab63
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-360/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-360/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c89f029f8f7c32ec2bc7c6471885e82ebfe5322e
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6d6c7bdfadb70cba54ce8abee8b9fbcd1d5870419c1ccbd2e7362a47c09ba74e
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-360/scheduler.pt b/runs/l2r10-baseline/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..d63b22e047ab13a6c29adc08f78969e1d6e569ff
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2802ceffe363a15cca2d2192020ec6c680a5afa8cc5d08bb488000d79d1a8eb0
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-360/tokenizer.json b/runs/l2r10-baseline/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-360/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-360/trainer_state.json b/runs/l2r10-baseline/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..353d0237f9e71617e34034524443e37204ca4617
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "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.534806680666112e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-360/training_args.bin b/runs/l2r10-baseline/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-3600/chat_template.jinja b/runs/l2r10-baseline/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3600/config.json b/runs/l2r10-baseline/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3600/generation_config.json b/runs/l2r10-baseline/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3600/model.safetensors b/runs/l2r10-baseline/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..cf8f5b0f72efbde29893e3be1c73a3fd49d8deaa
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dfc8cc4b556e4fe1eaffe81ab9a2ff5637ba6c99aed1ff1f69829908035fccf5
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-3600/optimizer.pt b/runs/l2r10-baseline/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..69bd4fc6c69dfea483fee12e7f7532bb2d2de7ec
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c9cc401e717bc1c5d614dc176f147f7e7452df3c04fc683a0a81dcf2cc6c6426
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-3600/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ba04971afc98e8e6e658d3cc92c9924b3fc9cae3
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4d3ea95950feae6c01be469e507cccaa46a62fe1d6fab3265e163f0a60e6f279
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3600/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2a5ac10a39438887e3dd6c020bffdc9834f5296f
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d6ae0a812c52013e270d86f3960353ff0a30ca3aca2cb42db12588da7c22c7be
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3600/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-3600/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c5610e5c5166bb3d49b5a039bd2030696f35ebae
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b38ad79248ecb9da76cb9b1d8fef5b9fa798eee47726955e99d44c43f7a26cf
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3600/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-3600/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f2fb64e74d1d9d42b34508caa40df5fb436a9087
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:15ce1fffa50f85f81e05c101e2c887e7330e75b2640ce718417b7be5b0cf3f60
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-3600/scheduler.pt b/runs/l2r10-baseline/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dff04aa3b724ae7dec72031a9c3d0ecf0b695f1b
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:187927afe10d5874e052562039160b9509612fe972489c80a97620ccae701300
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-3600/tokenizer.json b/runs/l2r10-baseline/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3600/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-3600/trainer_state.json b/runs/l2r10-baseline/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5c23d724729c576d1794499c9ae44188a936ffa1
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.422943592071533,
+ "eval_runtime": 57.9028,
+ "eval_samples_per_second": 42.174,
+ "eval_steps_per_second": 1.33,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.018213612958788872,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 4.231602668762207,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.020848194137215614,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 4.240225315093994,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.020879440009593964,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 4.24365234375,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.023936079815030098,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 4.187049388885498,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.026048827916383743,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 4.237275123596191,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.02815127931535244,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 4.240810871124268,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.03438761085271835,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 4.240041255950928,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.03404571861028671,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 4.209555625915527,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.03164630010724068,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 4.255769729614258,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.03230978921055794,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 4.200529098510742,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.02985440380871296,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 4.236949920654297,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.029743371531367302,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 4.232367515563965,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.024602973833680153,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 4.258780479431152,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.027003269642591476,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 4.260591506958008,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.027509033679962158,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 4.236387252807617,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.02914450690150261,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 4.250088691711426,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.03754435479640961,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 4.234399318695068,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.036005642265081406,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 4.247084617614746,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.030005265027284622,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 4.214690208435059,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027164770290255547,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 4.241848468780518,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.025284282863140106,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 4.171867370605469,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.02493755891919136,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 4.1983137130737305,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.02333242818713188,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 4.222731113433838,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.022546762600541115,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 4.272834777832031,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.020186061039566994,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 4.2215094566345215,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.020353354513645172,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 4.224434852600098,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.01862088032066822,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 4.214739799499512,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.018511498346924782,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 4.238588333129883,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.021064987406134605,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 4.218325614929199,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.02308143861591816,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 4.233466148376465,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.02192523330450058,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 4.186307430267334,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019571924582123756,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 4.218533992767334,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01827896386384964,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 4.19612979888916,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.01898665726184845,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 4.176517486572266,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018241895362734795,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 4.161623001098633,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018384460359811783,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 4.191318511962891,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.018202729523181915,
+ "learning_rate": 0.000549983495527656,
+ "loss": 4.179135322570801,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01789158396422863,
+ "learning_rate": 0.000549835338229793,
+ "loss": 4.213575839996338,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.016473401337862015,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 4.182298183441162,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.01656266860663891,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 4.186612129211426,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.016595369204878807,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 4.152517795562744,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.016639037057757378,
+ "learning_rate": 0.000549240721526684,
+ "loss": 4.209235668182373,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.018650133162736893,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 4.15966796875,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.01794867217540741,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 4.174533843994141,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.015561102889478207,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 4.16471529006958,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0145245511084795,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 4.161394119262695,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.015157991088926792,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 4.181033134460449,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.016118204221129417,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 4.177104473114014,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.016800547018647194,
+ "learning_rate": 0.000548192508857563,
+ "loss": 4.1839189529418945,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.01739875040948391,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 4.1550703048706055,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.02128828503191471,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 4.16819429397583,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.02504105679690838,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 4.192280292510986,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.026956729590892792,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 4.168168544769287,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.02562062442302704,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 4.147882461547852,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.02315307967364788,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 4.182806968688965,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 4.1623053550720215,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.03489857167005539,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 4.168793678283691,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.031769100576639175,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 4.169187545776367,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.027104893699288368,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 4.181405067443848,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.028661489486694336,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 4.174742698669434,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.02672589384019375,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 4.170076847076416,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.027590854093432426,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 4.165675163269043,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.027928803116083145,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 4.189201354980469,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.03132770210504532,
+ "learning_rate": 0.000545913797265339,
+ "loss": 4.211795806884766,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.033144377171993256,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 4.177236557006836,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.029317745938897133,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 4.17420768737793,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.031609609723091125,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 4.170773506164551,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.031149422749876976,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 4.1767754554748535,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.026720648631453514,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 4.164065361022949,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.026842376217246056,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 4.188182830810547,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.0287876445800066,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 4.17430305480957,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.029222961515188217,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 4.167144775390625,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.33732271194458,
+ "eval_runtime": 58.0899,
+ "eval_samples_per_second": 42.038,
+ "eval_steps_per_second": 1.326,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.03157186880707741,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 4.1202826499938965,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.033306021243333817,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 4.091897964477539,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.027964282780885696,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 4.083499908447266,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.02376207895576954,
+ "learning_rate": 0.00054405910314802,
+ "loss": 4.0851664543151855,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.02717878483235836,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 4.125383377075195,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.027060512453317642,
+ "learning_rate": 0.000543747262591706,
+ "loss": 4.1078948974609375,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.028081070631742477,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 4.108969688415527,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03188105672597885,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 4.108424186706543,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.02783426083624363,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 4.092161178588867,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.024950848892331123,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 4.105922222137451,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.02644694782793522,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 4.100455284118652,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.02762596495449543,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 4.080826282501221,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.029278438538312912,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 4.12394905090332,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.02477133274078369,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 4.078726768493652,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.02409481257200241,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 4.10707426071167,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.02591671794652939,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 4.11591911315918,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.02274242602288723,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 4.104514122009277,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.019772568717598915,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 4.096553802490234,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.022020503878593445,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 4.122816562652588,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.022672375664114952,
+ "learning_rate": 0.000541542711134479,
+ "loss": 4.095649242401123,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.02008868381381035,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 4.080048084259033,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.017263974994421005,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 4.071868419647217,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.018338099122047424,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 4.08870792388916,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.019487446174025536,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 4.08388614654541,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.018332527950406075,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 4.080994606018066,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.01831705868244171,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 4.123257637023926,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.017459796741604805,
+ "learning_rate": 0.000540426287667833,
+ "loss": 4.10878849029541,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.019018689170479774,
+ "learning_rate": 0.000540266032410741,
+ "loss": 4.080137252807617,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.019408898428082466,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 4.100240707397461,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.018641510978341103,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 4.086728096008301,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.017669158056378365,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 4.074880599975586,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.017775388434529305,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 4.054158687591553,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.0179491825401783,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 4.070185661315918,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.016713285818696022,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 4.115032196044922,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.01540661882609129,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 4.070862293243408,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.017753245308995247,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 4.111281394958496,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.020609313622117043,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 4.054605007171631,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.021059568971395493,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 4.0686116218566895,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.021167151629924774,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 4.033448219299316,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.019137924537062645,
+ "learning_rate": 0.000538328095851792,
+ "loss": 4.089371681213379,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.019189275801181793,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 4.034040451049805,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.018106887117028236,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 4.05123233795166,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.017193133011460304,
+ "learning_rate": 0.000537839336909727,
+ "loss": 4.083070755004883,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.017721638083457947,
+ "learning_rate": 0.00053767603867558,
+ "loss": 4.115424156188965,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.01932597905397415,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 4.063756465911865,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.018668802455067635,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 4.07984733581543,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.0171189047396183,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 4.056335926055908,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.01881405897438526,
+ "learning_rate": 0.000537020956314485,
+ "loss": 4.068214416503906,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.018356040120124817,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 4.022829055786133,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.017072219401597977,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 4.060968399047852,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.018479904159903526,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 4.067076206207275,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.019495565444231033,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 4.04372501373291,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.019574444741010666,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 4.056777477264404,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.019123561680316925,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 4.042490482330322,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.019361261278390884,
+ "learning_rate": 0.000535867308253152,
+ "loss": 4.086056709289551,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.020283197984099388,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 4.057941436767578,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.02247047796845436,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 4.0698018074035645,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.024933770298957825,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 4.052928447723389,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.021339397877454758,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 4.103280544281006,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.019618745893239975,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 4.053844451904297,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.020015845075249672,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 4.071560859680176,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.017333921045064926,
+ "learning_rate": 0.000534704466989222,
+ "loss": 4.058785438537598,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.019794464111328125,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 4.042463302612305,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.019228050485253334,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 4.077017307281494,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.02029075287282467,
+ "learning_rate": 0.000534203303565406,
+ "loss": 4.0088043212890625,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.020918477326631546,
+ "learning_rate": 0.000534035876358542,
+ "loss": 4.053952217102051,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.0211090836673975,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 4.025835990905762,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.020723538473248482,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 4.052520751953125,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021499313414096832,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 4.076242446899414,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.023264063522219658,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 4.078892707824707,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.024839716032147408,
+ "learning_rate": 0.000533195950905842,
+ "loss": 4.046319961547852,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.027914509177207947,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 4.0730743408203125,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.253625392913818,
+ "eval_runtime": 59.3585,
+ "eval_samples_per_second": 41.14,
+ "eval_steps_per_second": 1.297,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.03260979801416397,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 4.011908531188965,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.03244398534297943,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 4.01697301864624,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02977318875491619,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 3.979959487915039,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.029870595782995224,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 4.004053592681885,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.028955796733498573,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 4.00233268737793,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.027880676090717316,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 4.054180145263672,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02649105153977871,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 4.003045558929443,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.025833062827587128,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 4.0110015869140625,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.024416228756308556,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 3.967074155807495,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.026908395811915398,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 3.9963364601135254,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.026111548766493797,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 4.001660346984863,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.023146765306591988,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 3.9977056980133057,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.023773102089762688,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 4.016289234161377,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.020599715411663055,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 4.002712249755859,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.02016695961356163,
+ "learning_rate": 0.000530477115403131,
+ "loss": 3.9555301666259766,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.02277635596692562,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 4.001574516296387,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.02674192748963833,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 3.987225294113159,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.02660485915839672,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 4.000420570373535,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.023822061717510223,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 3.9897871017456055,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.019685210660099983,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 3.95322322845459,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.020386461168527603,
+ "learning_rate": 0.0005294454257704,
+ "loss": 4.010000228881836,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.02235131897032261,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 3.9906868934631348,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.01925436407327652,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 3.9662485122680664,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.01824052818119526,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 3.9688498973846436,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.017703719437122345,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 3.9838085174560547,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.01696433499455452,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 4.036727428436279,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.017980515956878662,
+ "learning_rate": 0.000528407168205483,
+ "loss": 3.990978717803955,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.017517749220132828,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 3.9749722480773926,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.016941215842962265,
+ "learning_rate": 0.000528059628009464,
+ "loss": 3.965649127960205,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.018643895164132118,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 3.9722981452941895,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.020305335521697998,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 3.9558448791503906,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.02129443734884262,
+ "learning_rate": 0.000527536958117778,
+ "loss": 3.967961311340332,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.021167973056435585,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 3.9054956436157227,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.019824158400297165,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 4.016880035400391,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.01749780960381031,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 3.9859039783477783,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.01664792373776436,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 3.926689624786377,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.016673220321536064,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 3.970026969909668,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.017926741391420364,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 3.971137285232544,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.02038433589041233,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 3.954503059387207,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.021182948723435402,
+ "learning_rate": 0.000526135222238964,
+ "loss": 3.9808292388916016,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.020381039008498192,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 3.940983772277832,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.020373456180095673,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 3.9796502590179443,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.020932797342538834,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 3.976499557495117,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.02086108922958374,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 3.971055030822754,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.019874339923262596,
+ "learning_rate": 0.000525253290006091,
+ "loss": 3.9769246578216553,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.019969217479228973,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 4.0139970779418945,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.02120753563940525,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 3.964092969894409,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.02346842736005783,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 3.977919101715088,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.023939231410622597,
+ "learning_rate": 0.000524544520190982,
+ "loss": 3.9994258880615234,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.024758117273449898,
+ "learning_rate": 0.000524366881143897,
+ "loss": 3.9937472343444824,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.022501440718770027,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 3.9649665355682373,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.021131295710802078,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 4.002377033233643,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.02232564613223076,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 3.9725093841552734,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.02174161560833454,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 3.965059518814087,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.024300187826156616,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 3.9761104583740234,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.021843038499355316,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 3.9918508529663086,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.019916720688343048,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 3.9578285217285156,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.022183116525411606,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 4.024286270141602,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.023067444562911987,
+ "learning_rate": 0.000522760121133566,
+ "loss": 3.993103265762329,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.024060145020484924,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 3.9805381298065186,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.022849276661872864,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 3.9851036071777344,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.022035881876945496,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 3.9580390453338623,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.021948283538222313,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 3.9361038208007812,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.020747903734445572,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 3.967026710510254,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.020982136949896812,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 3.924905300140381,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.02085375227034092,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 4.004364013671875,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.019405756145715714,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 3.9451048374176025,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.01706794835627079,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 3.9448599815368652,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.017002493143081665,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 3.962613105773926,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.017432868480682373,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 3.9620466232299805,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.01745976135134697,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 3.9514174461364746,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.018377743661403656,
+ "learning_rate": 0.000520413954218197,
+ "loss": 3.964707851409912,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.185940742492676,
+ "eval_runtime": 59.0756,
+ "eval_samples_per_second": 41.337,
+ "eval_steps_per_second": 1.303,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.02122669480741024,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 3.877833366394043,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.024296769872307777,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 3.879645347595215,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.02598883956670761,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 3.8974223136901855,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.026451319456100464,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 3.8838882446289062,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.028279660269618034,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 3.8760550022125244,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.032227542251348495,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 3.9090628623962402,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.0339307002723217,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 3.87621808052063,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.0367603600025177,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 3.905179262161255,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03649311885237694,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 3.8615410327911377,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.031383998692035675,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 3.933948516845703,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.027408214285969734,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 3.9014410972595215,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.025442378595471382,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 3.945730686187744,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.026796169579029083,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 3.9289064407348633,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.026871511712670326,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 3.925365924835205,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.029050160199403763,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 3.9229135513305664,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.030534939840435982,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 3.87099027633667,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03158451244235039,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 3.918179988861084,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.030498676002025604,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 3.896365165710449,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.028272079303860664,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 3.91389799118042,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.02742002345621586,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 3.9120752811431885,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.024277903139591217,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 3.9063873291015625,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.025917580351233482,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 3.9633240699768066,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.029962683096528053,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 3.9379560947418213,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.030525745823979378,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 3.9158802032470703,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.029582135379314423,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 3.8931071758270264,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.027560129761695862,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 3.9119763374328613,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.026923485100269318,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 3.9047884941101074,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.024281412363052368,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 3.9278430938720703,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.02358820103108883,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 3.892178535461426,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.021830955520272255,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 3.9306368827819824,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.019961733371019363,
+ "learning_rate": 0.000514700389506765,
+ "loss": 3.8617804050445557,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.018570013344287872,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 3.9125466346740723,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.018450727686285973,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 3.930734634399414,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.01714426837861538,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 3.8987135887145996,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.016445914283394814,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 3.891550064086914,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.016496669501066208,
+ "learning_rate": 0.000513763379483416,
+ "loss": 3.889310359954834,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.016442641615867615,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 3.9228177070617676,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.016465092077851295,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 3.865020513534546,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.017004676163196564,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 3.8805203437805176,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.015988465398550034,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 3.916411876678467,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.016883812844753265,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 3.9135429859161377,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.016873328015208244,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 3.883897304534912,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.016195813193917274,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 3.90347957611084,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01564607210457325,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 3.872713565826416,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.016025705263018608,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 3.8664731979370117,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.017223576083779335,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 3.9193224906921387,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.01708430051803589,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 3.9284732341766357,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.016623197123408318,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 3.9104905128479004,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.017350180074572563,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 3.909600257873535,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.0183281097561121,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 3.9262514114379883,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.01838030107319355,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 3.8646297454833984,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016262296587228775,
+ "learning_rate": 0.000510736513223685,
+ "loss": 3.9046037197113037,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.01821884512901306,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 3.896596670150757,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.016955381259322166,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 3.9009318351745605,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.017314719036221504,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 3.8839383125305176,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.020972197875380516,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 3.8793082237243652,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.019020648673176765,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 3.8717494010925293,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01699536293745041,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 3.861159563064575,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.01815183274447918,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 3.9181671142578125,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.01891201362013817,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 3.8813958168029785,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.017677534371614456,
+ "learning_rate": 0.000509015031826403,
+ "loss": 3.8868179321289062,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.017896568402647972,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 3.893592596054077,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.018964266404509544,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 3.886383533477783,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.017152804881334305,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 3.865562677383423,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.01780730113387108,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 3.884967088699341,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.018879937008023262,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 3.901293992996216,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.018849680200219154,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 3.8734755516052246,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.018818549811840057,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 3.9414234161376953,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.018060479313135147,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 3.8625552654266357,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.018532156944274902,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 3.9042367935180664,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.018140064552426338,
+ "learning_rate": 0.000507086511366679,
+ "loss": 3.8929543495178223,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.018434276804327965,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 3.851637125015259,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.139517307281494,
+ "eval_runtime": 58.3201,
+ "eval_samples_per_second": 41.872,
+ "eval_steps_per_second": 1.32,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01938880980014801,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 3.794689655303955,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02413240075111389,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 3.8493587970733643,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.029500901699066162,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 3.8072638511657715,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.030607052147388458,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 3.8637888431549072,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.03037809580564499,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 3.8321871757507324,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.03572860360145569,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 3.826117515563965,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.03499697893857956,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 3.852820873260498,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.0279530081897974,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 3.8190274238586426,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.027825169265270233,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 3.762829303741455,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029580535367131233,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 3.824193000793457,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.029778845608234406,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 3.809148073196411,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.028878116980195045,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 3.8076353073120117,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.029662130400538445,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 3.8295326232910156,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.02979203127324581,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 3.8171916007995605,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.03032168559730053,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 3.829080104827881,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.026557279750704765,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 3.8184385299682617,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.027998337522149086,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 3.8123292922973633,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.02893621288239956,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 3.8301210403442383,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.027348127216100693,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 3.829753875732422,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.024058759212493896,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 3.7946386337280273,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.02296740747988224,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 3.7850193977355957,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.020867064595222473,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 3.803496837615967,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.019628005102276802,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 3.846789836883545,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.020485900342464447,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 3.7765331268310547,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.020226402208209038,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 3.816469430923462,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.02190602757036686,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 3.808253288269043,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.022341730073094368,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 3.8490536212921143,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02131671831011772,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 3.854954957962036,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.020937075838446617,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 3.825352907180786,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.019466713070869446,
+ "learning_rate": 0.000501004302813408,
+ "loss": 3.8105711936950684,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.017908498644828796,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 3.8331246376037598,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.017605330795049667,
+ "learning_rate": 0.000500606587074199,
+ "loss": 3.8443679809570312,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01848585531115532,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 3.8474485874176025,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019504506140947342,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 3.8551015853881836,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.019227448850870132,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 3.8436927795410156,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.018044287338852882,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 3.7568745613098145,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.018011970445513725,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 3.8201282024383545,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.019035344943404198,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 3.7922983169555664,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.018870215862989426,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 3.8265316486358643,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.01982545293867588,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 3.8501787185668945,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.02043265290558338,
+ "learning_rate": 0.000498809004003543,
+ "loss": 3.8155386447906494,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018850935623049736,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 3.839395523071289,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.017503544688224792,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 3.835659980773926,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.019515663385391235,
+ "learning_rate": 0.000498206964168724,
+ "loss": 3.8157601356506348,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.01812748983502388,
+ "learning_rate": 0.000498005969458628,
+ "loss": 3.8100833892822266,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.01657606102526188,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 3.8296518325805664,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.017075518146157265,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 3.7969908714294434,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.015394988469779491,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 3.8244729042053223,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.016301406547427177,
+ "learning_rate": 0.000497200421111647,
+ "loss": 3.8859810829162598,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.01751738414168358,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 3.804354667663574,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016982657834887505,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 3.8372726440429688,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.018516328185796738,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 3.843594551086426,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.0195548627525568,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 3.8226122856140137,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.020325159654021263,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 3.7812998294830322,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.019586293026804924,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 3.825611114501953,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.018657393753528595,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 3.8480143547058105,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.01865280792117119,
+ "learning_rate": 0.000495581824580724,
+ "loss": 3.838047504425049,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018529510125517845,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 3.8638744354248047,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018208645284175873,
+ "learning_rate": 0.000495175620586125,
+ "loss": 3.800957679748535,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.01788603886961937,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 3.83078670501709,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.017169160768389702,
+ "learning_rate": 0.000494768797261945,
+ "loss": 3.8585329055786133,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.01915433257818222,
+ "learning_rate": 0.000494565153760897,
+ "loss": 3.8192176818847656,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019295627251267433,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 3.8317480087280273,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.020487409085035324,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 3.842294454574585,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.021370509639382362,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 3.823949098587036,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019179681316018105,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 3.841047763824463,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.01795605570077896,
+ "learning_rate": 0.00049354462443268,
+ "loss": 3.826533794403076,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.019307386130094528,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 3.8582077026367188,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.018065808340907097,
+ "learning_rate": 0.000493135336920878,
+ "loss": 3.792599678039551,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01687827706336975,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 3.85170316696167,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.016427768394351006,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 3.795851707458496,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.01798032969236374,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 3.8290224075317383,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.107441425323486,
+ "eval_runtime": 57.9268,
+ "eval_samples_per_second": 42.157,
+ "eval_steps_per_second": 1.329,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.0186670683324337,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 3.7571539878845215,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02153053693473339,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 3.719728469848633,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.021614069119095802,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 3.741537570953369,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.023252932354807854,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 3.7582201957702637,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.02238192968070507,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 3.7463254928588867,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.02207338809967041,
+ "learning_rate": 0.000491285979372924,
+ "loss": 3.767406702041626,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.022139910608530045,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 3.74958872795105,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.024976715445518494,
+ "learning_rate": 0.000490873338088198,
+ "loss": 3.7249231338500977,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.025434410199522972,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 3.716383218765259,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.023801973089575768,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 3.7443687915802,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.022363534197211266,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 3.7578787803649902,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.023437049239873886,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 3.739867687225342,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.025769734755158424,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 3.7595880031585693,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.026300549507141113,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 3.7617220878601074,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.02770858444273472,
+ "learning_rate": 0.000489424334303338,
+ "loss": 3.7631795406341553,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.02742299810051918,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 3.7650156021118164,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.028872953727841377,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 3.7865872383117676,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.029968462884426117,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 3.7695813179016113,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.031241199001669884,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 3.761380910873413,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.028127970173954964,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 3.7830960750579834,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.028119711205363274,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 3.7502517700195312,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.02801388129591942,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 3.7620580196380615,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.025542795658111572,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 3.734570026397705,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.024914415553212166,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 3.772195339202881,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.028607064858078957,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 3.7644801139831543,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.031127629801630974,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 3.7835636138916016,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.030544091016054153,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 3.7483532428741455,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.028327547013759613,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 3.77004337310791,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.02626611851155758,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 3.784722328186035,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.025772489607334137,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 3.7724661827087402,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02413528598845005,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 3.78495454788208,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.027269966900348663,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 3.786123037338257,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.025271901860833168,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 3.7737531661987305,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.0233627762645483,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 3.7514419555664062,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.02158287912607193,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 3.764479875564575,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.020631330087780952,
+ "learning_rate": 0.000485033394934934,
+ "loss": 3.7764811515808105,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02028827741742134,
+ "learning_rate": 0.000484822676912974,
+ "loss": 3.759162187576294,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.020738838240504265,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 3.7644102573394775,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.019468965008854866,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 3.7950968742370605,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.01996428146958351,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 3.7581353187561035,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.019380994141101837,
+ "learning_rate": 0.000483978341612154,
+ "loss": 3.7982239723205566,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.019529694691300392,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 3.7462620735168457,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.019282348453998566,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 3.7478184700012207,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.019181232899427414,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 3.766955852508545,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.018204201012849808,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 3.767808437347412,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.016695747151970863,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 3.7423832416534424,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.016699818894267082,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 3.725910186767578,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.017720675095915794,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 3.7420101165771484,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.01735539361834526,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 3.7606213092803955,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.016109557822346687,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 3.7556934356689453,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.016956936568021774,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 3.7477269172668457,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.015841521322727203,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 3.7288644313812256,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.01674451120197773,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 3.7705907821655273,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.016386719420552254,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 3.7550854682922363,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.016287485137581825,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 3.766092538833618,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.01622677966952324,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 3.796830177307129,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.016459820792078972,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 3.7620701789855957,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.018488211557269096,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 3.7749991416931152,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.01842881180346012,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 3.759078025817871,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.01854715310037136,
+ "learning_rate": 0.000479936075927473,
+ "loss": 3.7626421451568604,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.018040623515844345,
+ "learning_rate": 0.000479721889242305,
+ "loss": 3.7522125244140625,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.01868262328207493,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 3.7562103271484375,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.01908174157142639,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 3.7399790287017822,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.0177424605935812,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 3.752932071685791,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.017269348725676537,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 3.7690529823303223,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01963854394853115,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 3.77912974357605,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.022213757038116455,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 3.746664047241211,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.022310154512524605,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 3.768237829208374,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.020114649087190628,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 3.775233268737793,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.01896413043141365,
+ "learning_rate": 0.000477787822648007,
+ "loss": 3.7281298637390137,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01821102574467659,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 3.6853957176208496,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.021405719220638275,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 3.7361743450164795,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.08445405960083,
+ "eval_runtime": 57.4893,
+ "eval_samples_per_second": 42.477,
+ "eval_steps_per_second": 1.339,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.021350570023059845,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 3.674328327178955,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.028645632788538933,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 3.6816492080688477,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.02927892655134201,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 3.6540331840515137,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.026212094351649284,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 3.69319486618042,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.023985451087355614,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 3.716484546661377,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.023675596341490746,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 3.650768756866455,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.023407790809869766,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 3.6641035079956055,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.023245887830853462,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 3.6605165004730225,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.02335701324045658,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 3.6764280796051025,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.024053294211626053,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 3.6733686923980713,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.02326623722910881,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 3.701197862625122,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.025494180619716644,
+ "learning_rate": 0.000474756648870413,
+ "loss": 3.6878151893615723,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.026596983894705772,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 3.7066397666931152,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.027404844760894775,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 3.6481714248657227,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.02498064935207367,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 3.7122864723205566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.02395443059504032,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 3.6704280376434326,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.021997403353452682,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 3.680781364440918,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.021413790062069893,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 3.6857357025146484,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.021422969177365303,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 3.68477725982666,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.02252400852739811,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 3.695175886154175,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.022191938012838364,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 3.739368438720703,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.020857268944382668,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 3.716646909713745,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.02102678082883358,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 3.6746416091918945,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.020086582750082016,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 3.7184057235717773,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.019561998546123505,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 3.7075839042663574,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.020195813849568367,
+ "learning_rate": 0.000471698352726896,
+ "loss": 3.6928699016571045,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.019263856112957,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 3.6773016452789307,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.01867717318236828,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 3.701681613922119,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.020490173250436783,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 3.672062397003174,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.021614745259284973,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 3.6993002891540527,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.02031836099922657,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 3.6561665534973145,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.018587948754429817,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 3.695279121398926,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.01865687593817711,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 3.6762537956237793,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.020061181858181953,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 3.717189311981201,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.01857493817806244,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 3.7270169258117676,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.019219569861888885,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 3.7005975246429443,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.019231462851166725,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 3.692373752593994,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.019888117909431458,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 3.696533441543579,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.018624452874064445,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 3.7064361572265625,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.017896229401230812,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 3.69649600982666,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.02101597562432289,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 3.7478058338165283,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.023723410442471504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 3.6769912242889404,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.02525281347334385,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 3.683680772781372,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.02622382529079914,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 3.7346267700195312,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.023398790508508682,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 3.6757893562316895,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.022593358531594276,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 3.7112197875976562,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.023402996361255646,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 3.682003974914551,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.021760715171694756,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 3.7390074729919434,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.021784041076898575,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 3.7288894653320312,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.021479543298482895,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 3.669407844543457,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.019942911341786385,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 3.7207512855529785,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.019828785210847855,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 3.6772518157958984,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019120022654533386,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 3.6976051330566406,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.018221914768218994,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 3.715984344482422,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.017817551270127296,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 3.7146029472351074,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01708374358713627,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 3.701206684112549,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017989085987210274,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 3.72194766998291,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.016059335321187973,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 3.7289986610412598,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.016757579520344734,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 3.7478747367858887,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.01662919856607914,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 3.6870601177215576,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.016734428703784943,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 3.691741704940796,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.01708558015525341,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 3.7028326988220215,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.016840483993291855,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 3.6576757431030273,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.01746114157140255,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 3.7054355144500732,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.01642022468149662,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 3.750699281692505,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01693251170217991,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 3.673200845718384,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018101606518030167,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 3.705084800720215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.01736145280301571,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 3.7125725746154785,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.016361309215426445,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 3.7025232315063477,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.016963724046945572,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 3.7102768421173096,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.01624917797744274,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 3.6785953044891357,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.019211186096072197,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 3.755239486694336,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.06717586517334,
+ "eval_runtime": 57.4743,
+ "eval_samples_per_second": 42.489,
+ "eval_steps_per_second": 1.34,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.02210145629942417,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 3.641345500946045,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03245094418525696,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 3.614536762237549,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.03518654778599739,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 3.6432247161865234,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.031051810830831528,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 3.6136178970336914,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03238958865404129,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 3.627471446990967,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.0350646935403347,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 3.663865089416504,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03598032146692276,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 3.6130645275115967,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03630548715591431,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 3.609205722808838,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.03505865857005119,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 3.615293502807617,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.03157666698098183,
+ "learning_rate": 0.000459203665939781,
+ "loss": 3.598036289215088,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.02659352868795395,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 3.6228132247924805,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.029499147087335587,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 3.6256144046783447,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.027676710858941078,
+ "learning_rate": 0.000458522886595554,
+ "loss": 3.652205228805542,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.02481209859251976,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 3.6298179626464844,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.023255031555891037,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 3.6127071380615234,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.022005213424563408,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 3.6198251247406006,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.02383182756602764,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 3.639307737350464,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.024724068120121956,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 3.665070056915283,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.024819903075695038,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 3.6244585514068604,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.02417726442217827,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 3.638510227203369,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.025315234437584877,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 3.6637606620788574,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.023617450147867203,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 3.64022159576416,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.023162879049777985,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 3.6341278553009033,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.023277444764971733,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 3.6270699501037598,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.021957680583000183,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 3.6911134719848633,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.02002064883708954,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 3.6493544578552246,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.0202852264046669,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 3.6512179374694824,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.020340947434306145,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 3.6485867500305176,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.020181981846690178,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 3.6289093494415283,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.020425328984856606,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 3.6314268112182617,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.02162172459065914,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 3.613992214202881,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.02314089983701706,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 3.6592531204223633,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.023038450628519058,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 3.614387035369873,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.021004032343626022,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 3.654960870742798,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.01977352984249592,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 3.667064905166626,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.019901270046830177,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 3.6473116874694824,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.020619196817278862,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 3.627261161804199,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.01919255591928959,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 3.6830978393554688,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.019076086580753326,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 3.6338319778442383,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.01938723959028721,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 3.657992362976074,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.020146159455180168,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 3.6425180435180664,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.018782278522849083,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 3.6335573196411133,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.01914847269654274,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 3.6690282821655273,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.019698835909366608,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 3.703953266143799,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.0199875570833683,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 3.650359869003296,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.021708209067583084,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 3.6547513008117676,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.021237781271338463,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 3.650317668914795,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.019340135157108307,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 3.6419219970703125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.019564533606171608,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 3.6405396461486816,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.02104061469435692,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 3.6715660095214844,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.020478850230574608,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 3.638094902038574,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.018648967146873474,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 3.6675028800964355,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.018322831019759178,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 3.665201187133789,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.018666431307792664,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 3.657125949859619,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.018973948433995247,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 3.6562130451202393,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.020256970077753067,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 3.6451401710510254,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.019447142258286476,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 3.666623592376709,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01848008669912815,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 3.6250391006469727,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.01816529594361782,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 3.6637797355651855,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.01880284585058689,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 3.6753997802734375,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.019338387995958328,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 3.6681299209594727,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.018261823803186417,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 3.6428165435791016,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.01807800680398941,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 3.6293084621429443,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.018320204690098763,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 3.6575655937194824,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01738686114549637,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 3.6298575401306152,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.017209429293870926,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 3.662601947784424,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01818215847015381,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 3.6311774253845215,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.018872492015361786,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 3.662242889404297,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.019406167790293694,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 3.642942428588867,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.018712520599365234,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 3.668457508087158,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.019251205027103424,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 3.6561279296875,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.019796201959252357,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 3.6254398822784424,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.057714939117432,
+ "eval_runtime": 59.0862,
+ "eval_samples_per_second": 41.329,
+ "eval_steps_per_second": 1.303,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.021933455020189285,
+ "learning_rate": 0.000444677103403854,
+ "loss": 3.556142807006836,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.026990169659256935,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 3.582862377166748,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.027932146564126015,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 3.5789272785186768,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.029158424586057663,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 3.551563262939453,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.030291933566331863,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 3.5450387001037598,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.029524479061365128,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 3.6028175354003906,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.03075278177857399,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 3.60900616645813,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.030901696532964706,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 3.5917916297912598,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.033321600407361984,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 3.581235885620117,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.032877810299396515,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 3.545470714569092,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.0316464826464653,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 3.604422092437744,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.032704200595617294,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 3.580557346343994,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.035659417510032654,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 3.570511817932129,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.035209573805332184,
+ "learning_rate": 0.000441621628895411,
+ "loss": 3.5881423950195312,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.03173108398914337,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 3.6203012466430664,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.030566902831196785,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 3.5588295459747314,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.032591693103313446,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 3.568089723587036,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.030227143317461014,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 3.559251308441162,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.027909398078918457,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 3.597496509552002,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.02759142406284809,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 3.57094144821167,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.024543963372707367,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 3.5953636169433594,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.024014849215745926,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 3.594050407409668,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.021878862753510475,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 3.620053768157959,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.021530907601118088,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 3.5617899894714355,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.020457876846194267,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 3.5899715423583984,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.020476995036005974,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 3.5921177864074707,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.020980000495910645,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 3.591780662536621,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.021293308585882187,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 3.6104915142059326,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.020023846998810768,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 3.553990364074707,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.020731419324874878,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 3.575496196746826,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.021699700504541397,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 3.6188504695892334,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.021342109888792038,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 3.5971972942352295,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.021388649940490723,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 3.5733251571655273,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.02152523398399353,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 3.5968692302703857,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.022245800122618675,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 3.6348977088928223,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02376301772892475,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 3.61745023727417,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.0244919341057539,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 3.578310489654541,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.0221614520996809,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 3.58817458152771,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.020129330456256866,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 3.6150174140930176,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.020523490384221077,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 3.604076862335205,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.01972249150276184,
+ "learning_rate": 0.000435215814386134,
+ "loss": 3.569692611694336,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.021307583898305893,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 3.5803356170654297,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019381383433938026,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 3.616848945617676,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.020019758492708206,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 3.5952048301696777,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.02002069354057312,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 3.6171677112579346,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.01784311980009079,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 3.6209845542907715,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.01695092022418976,
+ "learning_rate": 0.000433781621332752,
+ "loss": 3.5850586891174316,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.018931619822978973,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 3.580548048019409,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.017423048615455627,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 3.6044249534606934,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.0174386166036129,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 3.5817184448242188,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01821446791291237,
+ "learning_rate": 0.000432823382695327,
+ "loss": 3.622119188308716,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.017841191962361336,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 3.61679744720459,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018728772178292274,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 3.60861873626709,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.01906188763678074,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 3.591869354248047,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.021123753860592842,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 3.576908588409424,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.020037898793816566,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 3.632876396179199,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.018905598670244217,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 3.582653045654297,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.01936863176524639,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 3.5872559547424316,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.018147630617022514,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 3.6032497882843018,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018680520355701447,
+ "learning_rate": 0.000430661245733797,
+ "loss": 3.6002111434936523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.01924154907464981,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 3.6379334926605225,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.017969833686947823,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 3.627161979675293,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.01845017820596695,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 3.6164960861206055,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.01762695424258709,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 3.6111643314361572,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01760116219520569,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 3.6188783645629883,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.018708186224102974,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 3.590704917907715,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.019144946709275246,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 3.554852247238159,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.02082422934472561,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 3.597614288330078,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02052866294980049,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 3.6233348846435547,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.019568005576729774,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 3.5922327041625977,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.01830167882144451,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 3.6281347274780273,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.020819291472434998,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 3.6321980953216553,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.051860809326172,
+ "eval_runtime": 58.2632,
+ "eval_samples_per_second": 41.913,
+ "eval_steps_per_second": 1.322,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02480812557041645,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 3.5010173320770264,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03333202376961708,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 3.5103073120117188,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03054194711148739,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 3.533601760864258,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.02558896690607071,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 3.4939944744110107,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.03195684030652046,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 3.5070371627807617,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.03344952315092087,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 3.5111050605773926,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.030559631064534187,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 3.519585132598877,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.03167171776294708,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 3.518773078918457,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.029442498460412025,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 3.5214240550994873,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.02626856043934822,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 3.5308220386505127,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.026943588629364967,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 3.492037773132324,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.025889765471220016,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 3.4954471588134766,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.025352807715535164,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 3.497431993484497,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.024663597345352173,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 3.4991567134857178,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.023239824920892715,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 3.5358808040618896,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.022951604798436165,
+ "learning_rate": 0.000423881957237287,
+ "loss": 3.5449252128601074,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.022692883387207985,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 3.5172364711761475,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.02134561538696289,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 3.5221004486083984,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.02145172283053398,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 3.5303094387054443,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.022249769419431686,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 3.546945810317993,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.02359449863433838,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 3.5478804111480713,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.022824840620160103,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 3.5485544204711914,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.022656137123703957,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 3.530205249786377,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.020470548421144485,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 3.5334994792938232,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.022017398849129677,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 3.527745246887207,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.022035932168364525,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 3.563663959503174,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.019601896405220032,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 3.493222236633301,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.01847813092172146,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 3.4562323093414307,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.019719749689102173,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 3.536501884460449,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.020435485988855362,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 3.522662878036499,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.020339036360383034,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 3.545625925064087,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.019466938450932503,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 3.538750171661377,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.018639566376805305,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 3.563586711883545,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.019322801381349564,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 3.55507230758667,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.019936447963118553,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 3.5396952629089355,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.01938309520483017,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 3.562225580215454,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.019329382106661797,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 3.5604193210601807,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.019480690360069275,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 3.588340997695923,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.02054744027554989,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 3.569444417953491,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.01937416009604931,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 3.5359957218170166,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.01959577202796936,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 3.557295799255371,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.021186739206314087,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 3.5431675910949707,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.02178957872092724,
+ "learning_rate": 0.000417272427439646,
+ "loss": 3.5732364654541016,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.02179132029414177,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 3.5829646587371826,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.02110847271978855,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 3.580549955368042,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.018998883664608,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 3.557058095932007,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.020483702421188354,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 3.5822079181671143,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.02137128822505474,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 3.5660111904144287,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.01978660561144352,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 3.5489938259124756,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.020733579993247986,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 3.557328701019287,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.02146589756011963,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 3.5744309425354004,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.02013026550412178,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 3.5245683193206787,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018831906840205193,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 3.573132038116455,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019593436270952225,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 3.545682191848755,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.02184540219604969,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 3.5328493118286133,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.019832152873277664,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 3.565908432006836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.019065087661147118,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 3.586731195449829,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.020244313403964043,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 3.5626816749572754,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.019208578392863274,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 3.5504705905914307,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01902802661061287,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 3.5671372413635254,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.019126586616039276,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 3.556605100631714,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.020821236073970795,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 3.5481464862823486,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.021857762709259987,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 3.5577614307403564,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.021358119323849678,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 3.524912118911743,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.020829759538173676,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 3.5888445377349854,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.021035850048065186,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 3.571042060852051,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.021055007353425026,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 3.571467399597168,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.019711976870894432,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 3.57421612739563,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.01846799999475479,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 3.5534613132476807,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.01917346939444542,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 3.571594476699829,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.01955689862370491,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 3.549837350845337,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.021038826555013657,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 3.578613758087158,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.051298141479492,
+ "eval_runtime": 58.6513,
+ "eval_samples_per_second": 41.636,
+ "eval_steps_per_second": 1.313,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023113707080483437,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 3.465150833129883,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.03300150856375694,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 3.432025909423828,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03417632728815079,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 3.4799556732177734,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03063829243183136,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 3.4971375465393066,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.029994051903486252,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 3.4738049507141113,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.03180816397070885,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 3.478649616241455,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.03222670406103134,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 3.4722816944122314,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.0329032801091671,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 3.4833946228027344,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.03196725994348526,
+ "learning_rate": 0.000407857329622967,
+ "loss": 3.455472946166992,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03203568607568741,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 3.496694564819336,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.032266005873680115,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 3.488771438598633,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.0312756709754467,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 3.484738826751709,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.030836546793580055,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 3.4575226306915283,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.03203203156590462,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 3.487154006958008,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.031227687373757362,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 3.5082948207855225,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.029995592311024666,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 3.48995304107666,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.028428824618458748,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 3.479043960571289,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.028689490631222725,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 3.5153400897979736,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.030439546331763268,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 3.5100574493408203,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.030581898987293243,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 3.4533753395080566,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.02614150382578373,
+ "learning_rate": 0.000404858275823277,
+ "loss": 3.486408233642578,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.024486782029271126,
+ "learning_rate": 0.000404607816444578,
+ "loss": 3.4802398681640625,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.024331916123628616,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 3.487150192260742,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.02270285040140152,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 3.4774131774902344,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.023079639300704002,
+ "learning_rate": 0.000403855947934478,
+ "loss": 3.4956793785095215,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.02306828647851944,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 3.5223357677459717,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.02239404432475567,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 3.496359348297119,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.022653669118881226,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 3.4847817420959473,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.02280675247311592,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 3.509044647216797,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.02028113231062889,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 3.5075793266296387,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.020893927663564682,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 3.4905447959899902,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.02332674339413643,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 3.4929158687591553,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.020620740950107574,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 3.4864981174468994,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.02110065519809723,
+ "learning_rate": 0.000401595976318565,
+ "loss": 3.4757821559906006,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.02148778736591339,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 3.529191493988037,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.021461354568600655,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 3.49798321723938,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.021812263876199722,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 3.528012752532959,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.02050560899078846,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 3.467883586883545,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.01998377963900566,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 3.4750752449035645,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.02020927332341671,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 3.5254440307617188,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.02113622985780239,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 3.5038583278656006,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.02169550210237503,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 3.514065742492676,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.021112140268087387,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 3.5000643730163574,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.020050300285220146,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 3.4759621620178223,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.01918383128941059,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 3.521851062774658,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.02040806971490383,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 3.5059475898742676,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.020598193630576134,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 3.5234999656677246,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.020813090726733208,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 3.5075957775115967,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.020201681181788445,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 3.4736557006835938,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.021085135638713837,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 3.5109405517578125,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.02251121774315834,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 3.5283968448638916,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.020876411348581314,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 3.4896645545959473,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.020130541175603867,
+ "learning_rate": 0.000396803974909638,
+ "loss": 3.532644033432007,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.02017023041844368,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 3.461735725402832,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.019770722836256027,
+ "learning_rate": 0.000396297942393265,
+ "loss": 3.513817310333252,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.02023123763501644,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 3.5335988998413086,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019868681207299232,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 3.5176589488983154,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.020205941051244736,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 3.5124671459198,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.01940520480275154,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 3.5122005939483643,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.019885379821062088,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 3.5213141441345215,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.01942404918372631,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 3.5797927379608154,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.018944591283798218,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 3.503115653991699,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018981127068400383,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 3.526421546936035,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.020422127097845078,
+ "learning_rate": 0.000394017098798633,
+ "loss": 3.53432297706604,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018412627279758453,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 3.5393242835998535,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019408466294407845,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 3.4724152088165283,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.019304445013403893,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 3.4926209449768066,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019746296107769012,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 3.5282492637634277,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.019049543887376785,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 3.5705926418304443,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.01971081644296646,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 3.505812168121338,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.01887447200715542,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 3.5020153522491455,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021414555609226227,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 3.518467426300049,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.051388263702393,
+ "eval_runtime": 56.9961,
+ "eval_samples_per_second": 42.845,
+ "eval_steps_per_second": 1.351,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.025093184784054756,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 3.4097423553466797,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.03676852211356163,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 3.423332691192627,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.03706786781549454,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 3.4601776599884033,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.03295315429568291,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 3.3931725025177,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.03400004655122757,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 3.4046292304992676,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.03133119270205498,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 3.3973398208618164,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.03206339478492737,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 3.45023250579834,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.035398341715335846,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 3.4506936073303223,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.033690791577100754,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 3.4294052124023438,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.029663220047950745,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 3.441192150115967,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.02699434757232666,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 3.447843551635742,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.02588626556098461,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 3.4560794830322266,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.026281286031007767,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 3.4600586891174316,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.027101336047053337,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 3.4347634315490723,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.027688035741448402,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 3.4075331687927246,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.026556817814707756,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 3.4263265132904053,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.02650831639766693,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 3.3978524208068848,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.026215262711048126,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 3.411625862121582,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.025802599266171455,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 3.4558637142181396,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.0247990433126688,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 3.414487361907959,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.025337068364024162,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 3.431673049926758,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.025068484246730804,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 3.4494783878326416,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.02360439859330654,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 3.4370007514953613,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.023126931861042976,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 3.4386305809020996,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.022841129451990128,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 3.4705872535705566,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.02347823977470398,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 3.43479585647583,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.02303808368742466,
+ "learning_rate": 0.00038509205478744,
+ "loss": 3.4324889183044434,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.022484753280878067,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 3.445479393005371,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.023051930591464043,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 3.4609944820404053,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.022568609565496445,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 3.4593892097473145,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.022198747843503952,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 3.4456088542938232,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.023739583790302277,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 3.4679696559906006,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.022741669788956642,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 3.4565229415893555,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.02302674762904644,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 3.488236427307129,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.024340948089957237,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 3.5038561820983887,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.022462062537670135,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 3.4510014057159424,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.021418236196041107,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 3.4584603309631348,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.02252611145377159,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 3.457310438156128,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.020706895738840103,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 3.462167739868164,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.023216690868139267,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 3.4735589027404785,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.023865949362516403,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 3.4780890941619873,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020857958123087883,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 3.486572265625,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.02123563550412655,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 3.4572622776031494,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.022383181378245354,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 3.4799070358276367,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.022209407761693,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 3.4691996574401855,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.021435456350445747,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 3.451552629470825,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.021575991064310074,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 3.487623929977417,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.022472340613603592,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 3.40765380859375,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02144278772175312,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 3.433671474456787,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.020785948261618614,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 3.4721295833587646,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.020393695682287216,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 3.4597363471984863,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.01953595131635666,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 3.476322889328003,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.019719557836651802,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 3.4800615310668945,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.020016683265566826,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 3.461822509765625,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.020387453958392143,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 3.460003137588501,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.020490648224949837,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 3.446851968765259,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.02041707932949066,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 3.4531164169311523,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.02066073939204216,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 3.489438533782959,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.01999092474579811,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 3.4757559299468994,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.02145274169743061,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 3.467782735824585,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.021867597475647926,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 3.515063524246216,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.023147426545619965,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 3.5088002681732178,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.02281234599649906,
+ "learning_rate": 0.000375827577564042,
+ "loss": 3.4469048976898193,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.021617989987134933,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 3.4753246307373047,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.0209389328956604,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 3.5107932090759277,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.021566197276115417,
+ "learning_rate": 0.000375051971546236,
+ "loss": 3.518498659133911,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.020994573831558228,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 3.4910788536071777,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.02159244380891323,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 3.4878058433532715,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.020420216023921967,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 3.4549574851989746,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.019625937566161156,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 3.4554479122161865,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.020955607295036316,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 3.468738079071045,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.02302907034754753,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 3.488142490386963,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.059457302093506,
+ "eval_runtime": 57.4985,
+ "eval_samples_per_second": 42.471,
+ "eval_steps_per_second": 1.339,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.026207681745290756,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 3.365338087081909,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.034944433718919754,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 3.38917875289917,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.035554803907871246,
+ "learning_rate": 0.000372722041257003,
+ "loss": 3.3781232833862305,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.032454103231430054,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 3.389756679534912,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.034100402146577835,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 3.3792924880981445,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.03344498574733734,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 3.343498468399048,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.033951107412576675,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 3.388092279434204,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03451889008283615,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 3.4028940200805664,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.030206510797142982,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 3.4052300453186035,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.028641844168305397,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 3.3771004676818848,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.027113836258649826,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 3.412726879119873,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.027178717777132988,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 3.3877010345458984,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02603665180504322,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 3.371579647064209,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.026231717318296432,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 3.396456241607666,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.026615826413035393,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 3.3754091262817383,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.025756143033504486,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 3.3875372409820557,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.024971701204776764,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 3.3703670501708984,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.024891039356589317,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 3.4131410121917725,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.02329416759312153,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 3.379918098449707,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.024025732651352882,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 3.3939833641052246,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.022928878664970398,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 3.398134469985962,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.023813094943761826,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 3.4256794452667236,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.023199962452054024,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 3.363520622253418,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.024802766740322113,
+ "learning_rate": 0.000367268105959126,
+ "loss": 3.423652172088623,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.025105707347393036,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 3.3905768394470215,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.024943247437477112,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 3.3943331241607666,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.0238077063113451,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 3.419189214706421,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.024073036387562752,
+ "learning_rate": 0.000366226612810024,
+ "loss": 3.3886280059814453,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.02383914403617382,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 3.401461601257324,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.023710472509264946,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 3.3898520469665527,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.02406720072031021,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 3.4047622680664062,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.024680016562342644,
+ "learning_rate": 0.000365184304613104,
+ "loss": 3.4107213020324707,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.024795781821012497,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 3.4231784343719482,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.023218058049678802,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 3.4097158908843994,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.023267678916454315,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 3.418971061706543,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.02348184585571289,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 3.3942806720733643,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020704049617052078,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 3.4145870208740234,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021238867193460464,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 3.407421112060547,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.021618813276290894,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 3.432514190673828,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.02061457373201847,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 3.4329605102539062,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02205919660627842,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 3.3977103233337402,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.021960418671369553,
+ "learning_rate": 0.000362575056487632,
+ "loss": 3.4228010177612305,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02149094268679619,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 3.4203829765319824,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.021904826164245605,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 3.402132511138916,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.022541839629411697,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 3.458667516708374,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.02264418639242649,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 3.4126877784729004,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022923439741134644,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 3.444674491882324,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.02155117690563202,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 3.3989930152893066,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.020406510680913925,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 3.4507153034210205,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.021224774420261383,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 3.4883923530578613,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02135223150253296,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 3.4533205032348633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021949265152215958,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 3.4156031608581543,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.02190091833472252,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 3.412038803100586,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020892580971121788,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 3.4461188316345215,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.020374979823827744,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 3.428609609603882,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.020254503935575485,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 3.4694762229919434,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.020331677049398422,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 3.431952476501465,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.020411314442753792,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 3.424576759338379,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.02066114731132984,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 3.390298366546631,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.021013202145695686,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 3.4480080604553223,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.020736275240778923,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 3.452897071838379,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.02104155160486698,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 3.447688579559326,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.021258676424622536,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 3.472508430480957,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.020248394459486008,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 3.4705982208251953,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02051556296646595,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 3.427004337310791,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021719107404351234,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 3.432591676712036,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.020638927817344666,
+ "learning_rate": 0.000356031397755195,
+ "loss": 3.417743682861328,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.020480314269661903,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 3.462677478790283,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021806994453072548,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 3.4506142139434814,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.019832748919725418,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 3.430135488510132,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.01996248960494995,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 3.451282501220703,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023044096305966377,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 3.404249429702759,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.067168235778809,
+ "eval_runtime": 57.6819,
+ "eval_samples_per_second": 42.336,
+ "eval_steps_per_second": 1.335,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.025444013997912407,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 3.3383355140686035,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.03486324101686478,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 3.3396785259246826,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.037794116884469986,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 3.3102633953094482,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.036535438150167465,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 3.3464841842651367,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.03269411623477936,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 3.384748697280884,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.029291365295648575,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 3.321235179901123,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.02828531339764595,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 3.35295033454895,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.030116885900497437,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 3.3256876468658447,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.030035801231861115,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 3.28776216506958,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.0286693274974823,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 3.342027187347412,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.027392711490392685,
+ "learning_rate": 0.000351829234402338,
+ "loss": 3.304401397705078,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.02725227177143097,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 3.3337674140930176,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.02838747762143612,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 3.357710599899292,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.028003402054309845,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 3.30666184425354,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.027846232056617737,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 3.3797547817230225,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.02630700170993805,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 3.3321480751037598,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.02590361051261425,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 3.3984055519104004,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.026592480018734932,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 3.316356658935547,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.02769327349960804,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 3.335212230682373,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.02544599585235119,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 3.3456692695617676,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.025139695033431053,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 3.345773696899414,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.026409810408949852,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 3.353511333465576,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.025375913828611374,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 3.3762428760528564,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.02592187561094761,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 3.3453292846679688,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.025008294731378555,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 3.366783618927002,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.025024795904755592,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 3.358029365539551,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.02466474287211895,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 3.3371262550354004,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.027389483526349068,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 3.3611607551574707,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.027957933023571968,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 3.3551647663116455,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.026804372668266296,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 3.3942408561706543,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02727789618074894,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 3.3694655895233154,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.025425074622035027,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 3.369279146194458,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.02281091921031475,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 3.3721425533294678,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.023236725479364395,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 3.3855597972869873,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.02261143922805786,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 3.3934850692749023,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.022573474794626236,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 3.360562324523926,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.02276243455708027,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 3.3849050998687744,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022081028670072556,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 3.3659398555755615,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02166752703487873,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 3.4195823669433594,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022180205211043358,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 3.406813144683838,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.021390747278928757,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 3.3981051445007324,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.02131008729338646,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 3.3568129539489746,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.02251545339822769,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 3.3702750205993652,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.022563323378562927,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 3.4056906700134277,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.023473508656024933,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 3.36798095703125,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.022822057828307152,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 3.418736219406128,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.02232038602232933,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 3.3745017051696777,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.023148618638515472,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 3.399953603744507,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02254980243742466,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 3.3977737426757812,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022202614694833755,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 3.39168643951416,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.023596765473484993,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 3.391096591949463,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02297876589000225,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 3.3825743198394775,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.022956600412726402,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 3.3784632682800293,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02227114327251911,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 3.346220016479492,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.020837847143411636,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 3.4044406414031982,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02115369774401188,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 3.402350902557373,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.021096231415867805,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 3.396646738052368,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.02154834195971489,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 3.4352779388427734,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.0210975781083107,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 3.43650484085083,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.02199115976691246,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 3.3852007389068604,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.023173483088612556,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 3.421245574951172,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.02217956632375717,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 3.416940450668335,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.020996537059545517,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 3.359067916870117,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02091015875339508,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 3.42267107963562,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.02163015492260456,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 3.4003851413726807,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.021535418927669525,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 3.3823819160461426,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.021727832034230232,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 3.4028236865997314,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.021644851192831993,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 3.4537129402160645,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.02185365930199623,
+ "learning_rate": 0.000336518346307424,
+ "loss": 3.4127559661865234,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.022695355117321014,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 3.405269145965576,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.021355243399739265,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 3.3951516151428223,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.023939238861203194,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 3.3879458904266357,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.085916996002197,
+ "eval_runtime": 56.8187,
+ "eval_samples_per_second": 42.979,
+ "eval_steps_per_second": 1.355,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.02489437721669674,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 3.2944960594177246,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03628309816122055,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 3.3077774047851562,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.038621291518211365,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 3.3123650550842285,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.033979278057813644,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 3.259011745452881,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.029284164309501648,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 3.3123598098754883,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.02919616550207138,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 3.31483793258667,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.02754475548863411,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 3.346447229385376,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.028829721733927727,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 3.2982635498046875,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.029506055638194084,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 3.311398506164551,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03008107654750347,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 3.27156662940979,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.028397979214787483,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 3.292876958847046,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.028333736583590508,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 3.315647602081299,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.029216237366199493,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 3.290541648864746,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.027114301919937134,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 3.3449525833129883,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.02596432715654373,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 3.3390188217163086,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.02521491050720215,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 3.295459270477295,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.0259327981621027,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 3.3004584312438965,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.026970062404870987,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 3.314810276031494,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.027248073369264603,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 3.3181986808776855,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.027815084904432297,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 3.285250425338745,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.02566373161971569,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 3.2733936309814453,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.02371748350560665,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 3.3399839401245117,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.02442985028028488,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 3.3195228576660156,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.024349072948098183,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 3.326303482055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.02414594031870365,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 3.290952682495117,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.024389425292611122,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 3.307804584503174,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.025722524151206017,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 3.3366007804870605,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.02489073947072029,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 3.3147470951080322,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.025039978325366974,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 3.2927045822143555,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.022538235411047935,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 3.287053108215332,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.023837540298700333,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 3.3483755588531494,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.024349937215447426,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 3.2967443466186523,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.023388011381030083,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 3.314453601837158,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.022756870836019516,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 3.3277556896209717,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02328263223171234,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 3.3614227771759033,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.022580597549676895,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 3.3670601844787598,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.022743072360754013,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 3.3320538997650146,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.025794565677642822,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 3.33750057220459,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.02554655633866787,
+ "learning_rate": 0.000325372061241796,
+ "loss": 3.3529505729675293,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.02310260757803917,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 3.3489670753479004,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.024861179292201996,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 3.333862781524658,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.024991028010845184,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 3.365661859512329,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02365446835756302,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 3.32954478263855,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.024246711283922195,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 3.3355329036712646,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.024773702025413513,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 3.351102352142334,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.023916229605674744,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 3.3614797592163086,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02332758530974388,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 3.361693859100342,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.023978501558303833,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 3.3413100242614746,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.023313414305448532,
+ "learning_rate": 0.000322712903929477,
+ "loss": 3.383427381515503,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02359236218035221,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 3.357372283935547,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022092007100582123,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 3.316666841506958,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02178315445780754,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 3.3177199363708496,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.02300027571618557,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 3.388227939605713,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.02403372712433338,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 3.360116481781006,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.025050941854715347,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 3.355740547180176,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.024728873744606972,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 3.3315725326538086,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023279374465346336,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 3.35990834236145,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.023458480834960938,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 3.3521854877471924,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02446048893034458,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 3.334538459777832,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.024110041558742523,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 3.3580374717712402,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.023655131459236145,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 3.3682992458343506,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02197028137743473,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 3.385678291320801,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02278904803097248,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 3.35733699798584,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.023296736180782318,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 3.364748477935791,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.02328462153673172,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 3.3735222816467285,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02265746146440506,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 3.323875904083252,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.021671075373888016,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 3.3468072414398193,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.0228126123547554,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 3.3791561126708984,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.024337442591786385,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 3.377685546875,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.0221228189766407,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 3.374784469604492,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.022732283920049667,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 3.390019655227661,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.026288222521543503,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 3.3947649002075195,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.099128723144531,
+ "eval_runtime": 56.8396,
+ "eval_samples_per_second": 42.963,
+ "eval_steps_per_second": 1.355,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02650369331240654,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 3.245565414428711,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.03795403614640236,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 3.2313404083251953,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.03605008125305176,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 3.2457761764526367,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.033865656703710556,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 3.236895799636841,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.03908597305417061,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 3.278275489807129,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.040220506489276886,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 3.2598671913146973,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.03662317618727684,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 3.288180112838745,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.03467962145805359,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 3.282745122909546,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.03267224133014679,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 3.256056547164917,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.033073775470256805,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 3.259392261505127,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.03392944857478142,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 3.2664551734924316,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.03331601992249489,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 3.272479295730591,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.032030750066041946,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 3.278921127319336,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.031217405572533607,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 3.269260883331299,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.028545768931508064,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 3.2556514739990234,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.029085848480463028,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 3.2199110984802246,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.027847737073898315,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 3.267047643661499,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.028855187818408012,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 3.267087459564209,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.027484651654958725,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 3.276724338531494,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.026942569762468338,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 3.2841362953186035,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.027965093031525612,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 3.2546982765197754,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.027496227994561195,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 3.2300760746002197,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.026141833513975143,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 3.2681469917297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.026588531211018562,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 3.295330047607422,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.0282877366989851,
+ "learning_rate": 0.000309930621834911,
+ "loss": 3.246816635131836,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.02680497244000435,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 3.2756869792938232,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.02529861032962799,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 3.292912006378174,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.027711933478713036,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 3.328094244003296,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.026861567050218582,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 3.2854347229003906,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.026213087141513824,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 3.2591683864593506,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.025807173922657967,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 3.2941884994506836,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.024857092648744583,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 3.2978360652923584,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.024767041206359863,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 3.292267322540283,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.02368018589913845,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 3.2653818130493164,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.02389381267130375,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 3.3316941261291504,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.024605995044112206,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 3.2812769412994385,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.024144303053617477,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 3.2859184741973877,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.02431401051580906,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 3.3373374938964844,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.026107139885425568,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 3.279526948928833,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.024653980508446693,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 3.3347928524017334,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.025357453152537346,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 3.2909247875213623,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.024386251345276833,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 3.314579963684082,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.024505093693733215,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 3.3231546878814697,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.02523699961602688,
+ "learning_rate": 0.000304866093757771,
+ "loss": 3.271603584289551,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.024947956204414368,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 3.318005084991455,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024697156623005867,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 3.3308792114257812,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.023375261574983597,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 3.285569667816162,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.023240001872181892,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 3.2877140045166016,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.02440231665968895,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 3.325361967086792,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.02395760267972946,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 3.3355207443237305,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.02394867315888405,
+ "learning_rate": 0.000303,
+ "loss": 3.3411712646484375,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.026035571470856667,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 3.3467907905578613,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.02454688586294651,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 3.307335138320923,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.023200271651148796,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 3.3416378498077393,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.02673390321433544,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 3.33894944190979,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.02540498599410057,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 3.2643580436706543,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02263791486620903,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 3.3205347061157227,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.023672081530094147,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 3.342198371887207,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.02290850505232811,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 3.360527515411377,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.02199256792664528,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 3.313976287841797,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.02408529259264469,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 3.2987663745880127,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.022791776806116104,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 3.3329124450683594,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.023352347314357758,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 3.342763662338257,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.0230550616979599,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 3.3260750770568848,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.02257031761109829,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 3.33486270904541,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023672664538025856,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 3.342003345489502,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.024178389459848404,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 3.3288965225219727,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.022518686950206757,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 3.335498809814453,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.022953400388360023,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 3.319986581802368,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024052146822214127,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 3.2925193309783936,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.0233283843845129,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 3.3660390377044678,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.02665606327354908,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 3.2953720092773438,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.118098258972168,
+ "eval_runtime": 57.5101,
+ "eval_samples_per_second": 42.462,
+ "eval_steps_per_second": 1.339,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.02890697494149208,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 3.249951124191284,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.041633449494838715,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 3.2009143829345703,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.045876361429691315,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 3.243760585784912,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.04569151997566223,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 3.1994779109954834,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.04899405315518379,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 3.17582631111145,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.04929453134536743,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 3.23600435256958,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.04230935871601105,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 3.252906560897827,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.03628655895590782,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 3.259765863418579,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.03702453523874283,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 3.214686393737793,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.03758135810494423,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 3.250516653060913,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.03414451703429222,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 3.2239394187927246,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.03131867200136185,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 3.2182369232177734,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.032515935599803925,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 3.201007843017578,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.0324273519217968,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 3.2108006477355957,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.0289190411567688,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 3.2271595001220703,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.030286597087979317,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 3.2005205154418945,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.029980774968862534,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 3.2406399250030518,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.030094027519226074,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 3.22554349899292,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.027732938528060913,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 3.191636085510254,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.02878301590681076,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 3.231097936630249,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.02830193005502224,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 3.2348110675811768,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.027315426617860794,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 3.236872434616089,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.02744620479643345,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 3.239691734313965,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.02737320400774479,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 3.2365617752075195,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.027895567938685417,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 3.2656173706054688,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.028630778193473816,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 3.2649641036987305,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.026158377528190613,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 3.205411911010742,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.02790597826242447,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 3.249823808670044,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.0281178280711174,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 3.2284631729125977,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.026781145483255386,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 3.2646565437316895,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.02716926671564579,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 3.23388934135437,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.026623109355568886,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 3.28131103515625,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.02563607692718506,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 3.2354767322540283,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.027210721746087074,
+ "learning_rate": 0.000288343693342466,
+ "loss": 3.2772653102874756,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.026623180136084557,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 3.280789613723755,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.026812341064214706,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 3.2569217681884766,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025391709059476852,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 3.239611864089966,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.028013214468955994,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 3.2758724689483643,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.02640947885811329,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 3.261630058288574,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02424028143286705,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 3.2681832313537598,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.025359483435750008,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 3.290400743484497,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.026214027777314186,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 3.242974281311035,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.025660529732704163,
+ "learning_rate": 0.000285947841605349,
+ "loss": 3.2581229209899902,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.025018133223056793,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 3.314174175262451,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.026054153218865395,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 3.2657594680786133,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.02707616798579693,
+ "learning_rate": 0.000285149463934261,
+ "loss": 3.2682297229766846,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.025845540687441826,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 3.2810416221618652,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.02462257817387581,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 3.2729787826538086,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.0247847568243742,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 3.2813968658447266,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.024695508182048798,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 3.281198501586914,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02510354481637478,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 3.2675232887268066,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.02423112839460373,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 3.313127279281616,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.023726003244519234,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 3.247558355331421,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.02415836974978447,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 3.298170804977417,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.0245672520250082,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 3.2992563247680664,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.023869989439845085,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 3.271489381790161,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023803818970918655,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 3.277963399887085,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.02492332085967064,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 3.2893974781036377,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024075444787740707,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 3.2436158657073975,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.024968193843960762,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 3.2588701248168945,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.02316642552614212,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 3.288280487060547,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.024051489308476448,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 3.338749647140503,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.024682875722646713,
+ "learning_rate": 0.000280627938758204,
+ "loss": 3.310123920440674,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023569269105792046,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 3.2981066703796387,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023198245093226433,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 3.3373751640319824,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.024926021695137024,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 3.284407138824463,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023436030372977257,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 3.286210775375366,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022795837372541428,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 3.2836194038391113,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.025310585275292397,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 3.315124750137329,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.023906854912638664,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 3.273519515991211,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.023158904165029526,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 3.3090248107910156,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.02710728347301483,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 3.3370521068573,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.1380791664123535,
+ "eval_runtime": 57.828,
+ "eval_samples_per_second": 42.229,
+ "eval_steps_per_second": 1.332,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028397580608725548,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 3.157905340194702,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.038552045822143555,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 3.168872833251953,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.03612525016069412,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 3.1779890060424805,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.034037038683891296,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 3.1505064964294434,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.03745132312178612,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 3.1749038696289062,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.0375814326107502,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 3.1900854110717773,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.03265482187271118,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 3.148488759994507,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.028728758916258812,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 3.1728153228759766,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.027440344914793968,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 3.175471544265747,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.028495166450738907,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 3.1602094173431396,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.027664585039019585,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 3.178624391555786,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.02791575901210308,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 3.1330881118774414,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.028835628181695938,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 3.201948642730713,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.030627859756350517,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 3.2166032791137695,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.030933234840631485,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 3.2238168716430664,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.028820496052503586,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 3.166398763656616,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.028881458565592766,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 3.2101995944976807,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.03201906755566597,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 3.188455581665039,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.033344775438308716,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 3.1890811920166016,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.03553580492734909,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 3.1949586868286133,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.036840688437223434,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 3.208887815475464,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.03239849954843521,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 3.2023463249206543,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.02859567478299141,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 3.2354788780212402,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.029732951894402504,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 3.16135311126709,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.03067614696919918,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 3.1891722679138184,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.03014565072953701,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 3.2443408966064453,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.02737642452120781,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 3.22528076171875,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.02632616087794304,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 3.2110209465026855,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.02590067684650421,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 3.205991268157959,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.026110181584954262,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 3.2602338790893555,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.02733764797449112,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 3.2435476779937744,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.026461347937583923,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 3.2302608489990234,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.024851882830262184,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 3.237276554107666,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.027676021680235863,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 3.2511582374572754,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.028534185141324997,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 3.218414783477783,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.02874479629099369,
+ "learning_rate": 0.00026868712586269,
+ "loss": 3.2452523708343506,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.026604484766721725,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 3.2343528270721436,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.025352559983730316,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 3.2056655883789062,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.02720716781914234,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 3.2509307861328125,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.027365729212760925,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 3.1912002563476562,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.02664838545024395,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 3.242295265197754,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.026786725968122482,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 3.2326836585998535,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.02805040217936039,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 3.2520134449005127,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.026042792946100235,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 3.200939178466797,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.024807952344417572,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 3.27309250831604,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.027628514915704727,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 3.230095386505127,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02674996852874756,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 3.2413103580474854,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.025710299611091614,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 3.238966464996338,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.02538335882127285,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 3.2255516052246094,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.025578321889042854,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 3.2096924781799316,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.02601344883441925,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 3.2297346591949463,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.026096008718013763,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 3.241189479827881,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02780098281800747,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 3.251811981201172,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.027289612218737602,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 3.2270426750183105,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.026324691250920296,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 3.2375741004943848,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02650313824415207,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 3.2548668384552,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.026873862370848656,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 3.2308764457702637,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.026542654260993004,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 3.265718460083008,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.025225713849067688,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 3.2674314975738525,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.026227261871099472,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 3.2573204040527344,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02565634436905384,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 3.213150978088379,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.025645481422543526,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 3.256298303604126,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.026869403198361397,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 3.280714750289917,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.02498205378651619,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 3.2348437309265137,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024347074329853058,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 3.264981985092163,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.02532394789159298,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 3.2695374488830566,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.02515113539993763,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 3.2553372383117676,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.02415953390300274,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 3.2565059661865234,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.024644216522574425,
+ "learning_rate": 0.00025996500713765,
+ "loss": 3.250833034515381,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.02456027641892433,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 3.2761712074279785,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.02426525205373764,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 3.2629470825195312,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.028048187494277954,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 3.2276482582092285,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.158375263214111,
+ "eval_runtime": 57.2344,
+ "eval_samples_per_second": 42.667,
+ "eval_steps_per_second": 1.345,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.02946070209145546,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 3.121852159500122,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.03865921497344971,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 3.1245241165161133,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.03603826463222504,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 3.1450228691101074,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.03139101341366768,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 3.1472625732421875,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.034746382385492325,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 3.151329755783081,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.03474539518356323,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 3.1338629722595215,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.033249594271183014,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 3.156055212020874,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.031936001032590866,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 3.141859292984009,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.03096783347427845,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 3.1524581909179688,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.03065602481365204,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 3.186131477355957,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.030547183007001877,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 3.1329398155212402,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.02896001562476158,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 3.1926004886627197,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.028308730572462082,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 3.1565964221954346,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.028324034065008163,
+ "learning_rate": 0.000255486047794226,
+ "loss": 3.1669921875,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.028712721541523933,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 3.1584408283233643,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.029040448367595673,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 3.1685431003570557,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.0281654242426157,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 3.166020393371582,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.02892228588461876,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 3.1665492057800293,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.029494833201169968,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 3.154541254043579,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.030289137735962868,
+ "learning_rate": 0.000253907826333243,
+ "loss": 3.1542015075683594,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.03235023096203804,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 3.1689505577087402,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.0317135788500309,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 3.14835262298584,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.030222205445170403,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 3.1633877754211426,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.02939915843307972,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 3.1395506858825684,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.030564088374376297,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 3.1217494010925293,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.029609909281134605,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 3.2093873023986816,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.027965130284428596,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 3.1839005947113037,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.028356825932860374,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 3.1262643337249756,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.027346370741724968,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 3.169198513031006,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.027762236073613167,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 3.163200855255127,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.029112881049513817,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 3.1838035583496094,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.029743950814008713,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 3.2060787677764893,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.030414888635277748,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 3.151318073272705,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026616528630256653,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 3.162863254547119,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.02728109061717987,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 3.2224156856536865,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027906913310289383,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 3.1820082664489746,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.02686009556055069,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 3.212308168411255,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.02723880484700203,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 3.195708751678467,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.028102140873670578,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 3.233551025390625,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.026631979271769524,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 3.2048614025115967,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.02571697160601616,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 3.211066722869873,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.026849795132875443,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 3.1466212272644043,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026982581242918968,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 3.1449697017669678,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.026633495464920998,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 3.21518611907959,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02661176398396492,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 3.1968324184417725,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.027553340420126915,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 3.1963584423065186,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.028503065928816795,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 3.164424419403076,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.028009451925754547,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 3.233910322189331,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.027892669662833214,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 3.2139945030212402,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.027213294059038162,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 3.1882662773132324,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.026182152330875397,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 3.1851303577423096,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02885112725198269,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 3.2572717666625977,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.028626110404729843,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 3.203584909439087,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02623717114329338,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 3.254133462905884,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.027923112735152245,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 3.221933126449585,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.02818283438682556,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 3.211678981781006,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026261597871780396,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 3.188681125640869,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02704189158976078,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 3.1620755195617676,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.026541976258158684,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 3.1781210899353027,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.026731157675385475,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 3.1845755577087402,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02696199342608452,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 3.2352161407470703,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.02645431086421013,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 3.214784860610962,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.025962313637137413,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 3.2050833702087402,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.027177246287465096,
+ "learning_rate": 0.000242380656502223,
+ "loss": 3.2680234909057617,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.02790023200213909,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 3.260568141937256,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.02651599608361721,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 3.227966547012329,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.02662951685488224,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 3.2258334159851074,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.025851519778370857,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 3.206686019897461,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.027288703247904778,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 3.1935949325561523,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.026220062747597694,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 3.2079954147338867,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.025760062038898468,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 3.2240872383117676,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.03130556270480156,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 3.191253900527954,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.180140972137451,
+ "eval_runtime": 58.551,
+ "eval_samples_per_second": 41.707,
+ "eval_steps_per_second": 1.315,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.0355788990855217,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 3.1215739250183105,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04892604425549507,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 3.116471529006958,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.04660751670598984,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 3.1185190677642822,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04066198319196701,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 3.0865578651428223,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.04082629457116127,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 3.1207001209259033,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.03933149576187134,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 3.090609550476074,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.036161698400974274,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 3.1162736415863037,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.0331297442317009,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 3.0847244262695312,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.033159028738737106,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 3.11242938041687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.03180311247706413,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 3.1014082431793213,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.031308356672525406,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 3.0722479820251465,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.03233671933412552,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 3.1153006553649902,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.03377128392457962,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 3.0850257873535156,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.033663321286439896,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 3.1224865913391113,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.03465031832456589,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 3.1194047927856445,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.03184987232089043,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 3.1185622215270996,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.02998354844748974,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 3.1006929874420166,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.03301263973116875,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 3.1423110961914062,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.031899046152830124,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 3.1092641353607178,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.030688438564538956,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 3.130136013031006,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.03196574002504349,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 3.112138271331787,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.033352479338645935,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 3.1272900104522705,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.03180698677897453,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 3.157930374145508,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.029812967404723167,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 3.1247220039367676,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.028813188895583153,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 3.089658260345459,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.03237403556704521,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 3.138625383377075,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.03242601826786995,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 3.086696147918701,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.030924616381525993,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 3.1654038429260254,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.029315272346138954,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 3.1636850833892822,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.029705161228775978,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 3.1628870964050293,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.027950260788202286,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 3.1637582778930664,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.02769061177968979,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 3.1565256118774414,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.02836288884282112,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 3.148399829864502,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.02915837988257408,
+ "learning_rate": 0.000231465389734324,
+ "loss": 3.163072109222412,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.027166903018951416,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 3.106757640838623,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.027938751503825188,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 3.160259246826172,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.02934502437710762,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 3.141427516937256,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.027676397934556007,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 3.190730571746826,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.02690025605261326,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 3.1713430881500244,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.02652641572058201,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 3.137932777404785,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.027723152190446854,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 3.1590471267700195,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.02680366300046444,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 3.1951065063476562,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.027073737233877182,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 3.154332160949707,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.02711140178143978,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 3.178050994873047,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.026306450366973877,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 3.1711394786834717,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.0266092661768198,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 3.153665065765381,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.0270571056753397,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 3.1791672706604004,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.02735244855284691,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 3.193817138671875,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.027825796976685524,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 3.192131519317627,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.02676193043589592,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 3.181812047958374,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.027864079922437668,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 3.1917107105255127,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.05341985076665878,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 3.1917757987976074,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.02956882305443287,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 3.163125991821289,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.028512390330433846,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 3.1717798709869385,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.028295889496803284,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 3.1639628410339355,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.027207838371396065,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 3.2133731842041016,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.028072115033864975,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 3.176164150238037,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.028681570664048195,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 3.18463134765625,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.027309462428092957,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 3.1805896759033203,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.027211535722017288,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 3.16485333442688,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.027867497876286507,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 3.1531105041503906,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.027384409680962563,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 3.2058889865875244,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.027143698185682297,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 3.157866954803467,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.027240339666604996,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 3.2181386947631836,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.028287801891565323,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 3.193422317504883,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.027239253744482994,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 3.189561367034912,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.028243936598300934,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 3.1677606105804443,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.02861366607248783,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 3.1926746368408203,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.0283220075070858,
+ "learning_rate": 0.00022244633283095,
+ "loss": 3.2236387729644775,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.02835279330611229,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 3.1697449684143066,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.02796671725809574,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 3.1984987258911133,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.03166359290480614,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 3.19610595703125,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.2039618492126465,
+ "eval_runtime": 58.5416,
+ "eval_samples_per_second": 41.714,
+ "eval_steps_per_second": 1.315,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03369779884815216,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 3.0812559127807617,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.05070783197879791,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 3.0677804946899414,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.051560062915086746,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 3.057511568069458,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04496128857135773,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 3.0786938667297363,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.04082498699426651,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 3.1139144897460938,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.042083434760570526,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 3.104275941848755,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.038129668682813644,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 3.0800914764404297,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.03446940705180168,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 3.076841354370117,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.03592631593346596,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 3.09020733833313,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.03772344812750816,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 3.09391713142395,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.034410931169986725,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 3.0629119873046875,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.03517600893974304,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 3.065742015838623,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.036171507090330124,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 3.1003737449645996,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.03234133496880531,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 3.0920376777648926,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.03142267093062401,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 3.10030198097229,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.033919043838977814,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 3.103757381439209,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.031541913747787476,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 3.083867311477661,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.030086882412433624,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 3.1067614555358887,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.02972504310309887,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 3.084838390350342,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.029621386900544167,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 3.0923590660095215,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.03075578436255455,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 3.146130084991455,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.030716707929968834,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 3.1039209365844727,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.03125046566128731,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 3.1153035163879395,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.02955695241689682,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 3.135328769683838,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.02832690440118313,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 3.1040847301483154,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.03152746707201004,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 3.106022834777832,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.03143440559506416,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 3.0805022716522217,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.028248652815818787,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 3.0860421657562256,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.02913457527756691,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 3.140413522720337,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.02998923510313034,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 3.129356861114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.030854487791657448,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 3.121748924255371,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.02916296012699604,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 3.1009695529937744,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.029774636030197144,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 3.1226165294647217,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.028826434165239334,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 3.160597085952759,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.03017219342291355,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 3.110243558883667,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.028641732409596443,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 3.0800039768218994,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.028798656538128853,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 3.179795026779175,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.029349444434046745,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 3.0988149642944336,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.029021043330430984,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 3.064181089401245,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.02870240993797779,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 3.1240763664245605,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.02823748253285885,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 3.146803140640259,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.028530996292829514,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 3.1475019454956055,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.029223430901765823,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 3.1216864585876465,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.027813591063022614,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 3.101078987121582,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.027918612584471703,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 3.1277475357055664,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.028475921601057053,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 3.125309467315674,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.028015555813908577,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 3.1116862297058105,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026905957609415054,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 3.100590467453003,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.027701787650585175,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 3.1296615600585938,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.027875013649463654,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 3.110649585723877,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.02704387530684471,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 3.110461473464966,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02804766595363617,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 3.1070356369018555,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.02761704847216606,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 3.1334657669067383,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.027547121047973633,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 3.128934621810913,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.028524842113256454,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 3.139470100402832,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02890404686331749,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 3.147649049758911,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02851000428199768,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 3.140340805053711,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.027430236339569092,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 3.141169548034668,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.027634181082248688,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 3.1349918842315674,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.027339693158864975,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 3.160902261734009,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.0271914079785347,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 3.1236281394958496,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.028070030733942986,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 3.14902400970459,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.027782054618000984,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 3.119905471801758,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.02806680090725422,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 3.1655449867248535,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.02678612992167473,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 3.125488758087158,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.026848314329981804,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 3.124390125274658,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.027314338833093643,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 3.135408639907837,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.027944346889853477,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 3.174356460571289,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.027283160015940666,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 3.1777257919311523,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02715890295803547,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 3.1342411041259766,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.026732949540019035,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 3.1567957401275635,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.032828811556100845,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 3.1452670097351074,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.23610782623291,
+ "eval_runtime": 57.861,
+ "eval_samples_per_second": 42.205,
+ "eval_steps_per_second": 1.331,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.031560398638248444,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 3.0346384048461914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.045797161757946014,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 3.0253865718841553,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.03975280746817589,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 3.064655303955078,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.03750868886709213,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 3.0535778999328613,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.0428822822868824,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 3.029329538345337,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.03772140294313431,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 3.038602113723755,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.0340406708419323,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 3.024937152862549,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.036795567721128464,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 3.0093514919281006,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.034226614981889725,
+ "learning_rate": 0.000201141724176723,
+ "loss": 3.037254571914673,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.034093596041202545,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 3.0515356063842773,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.03472839668393135,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 3.020470142364502,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.03269178792834282,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 3.051333427429199,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.033917032182216644,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 3.052259922027588,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.03324243798851967,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 3.0460095405578613,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.032261185348033905,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 3.053861141204834,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.03396065905690193,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 3.048023223876953,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.034620821475982666,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 3.0418081283569336,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.032161977142095566,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 3.009852886199951,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.031200187280774117,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 3.0368716716766357,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.03394074738025665,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 3.071866035461426,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.03577565774321556,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 3.080648422241211,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.03355010226368904,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 3.056335210800171,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.03100624494254589,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 3.070770263671875,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.030809594318270683,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 3.0508432388305664,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.029902741312980652,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 3.0698328018188477,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.029862644150853157,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 3.07668137550354,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.030799617990851402,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 3.0797815322875977,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.030734151601791382,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 3.0688986778259277,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03087432309985161,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 3.078287124633789,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.030203802511096,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 3.0989227294921875,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.030054137110710144,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 3.108900547027588,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.030525945127010345,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 3.0743603706359863,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03116847202181816,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 3.1147680282592773,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.02907412499189377,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 3.0795233249664307,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.029001710936427116,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 3.0691943168640137,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03244122490286827,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 3.0728673934936523,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03296313062310219,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 3.0621304512023926,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.030616287142038345,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 3.0865912437438965,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030837416648864746,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 3.0722920894622803,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.0298515222966671,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 3.074018955230713,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.02962825447320938,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 3.0872483253479004,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.0306903887540102,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 3.1015772819519043,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.02899639680981636,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 3.080179214477539,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.028741996735334396,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 3.0685665607452393,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.03072701022028923,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 3.0677199363708496,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.028850078582763672,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 3.108672618865967,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.028551483526825905,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 3.1213910579681396,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.03012346662580967,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 3.083681106567383,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.028515953570604324,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 3.100470781326294,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.030353186652064323,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 3.12215518951416,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.029224202036857605,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 3.105957269668579,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.02899855375289917,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 3.1268749237060547,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.029873481020331383,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 3.106316328048706,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02885374426841736,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 3.0703983306884766,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02765561453998089,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 3.1055452823638916,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.027459438890218735,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 3.1233561038970947,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.028457194566726685,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 3.085897445678711,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02814573235809803,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 3.0763416290283203,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.028196604922413826,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 3.079221248626709,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027772540226578712,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 3.101588726043701,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.028152190148830414,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 3.125788688659668,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.028581861406564713,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 3.1013102531433105,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.027978789061307907,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 3.1162004470825195,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.029316946864128113,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 3.1161651611328125,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.028609825298190117,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 3.1236777305603027,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028157226741313934,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 3.0862250328063965,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028885260224342346,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 3.139831304550171,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.027559489011764526,
+ "learning_rate": 0.000186516746349841,
+ "loss": 3.133944272994995,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.028318390250205994,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 3.144155979156494,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02769157849252224,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 3.1399827003479004,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.028807122260332108,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 3.080939769744873,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.033507585525512695,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 3.1044228076934814,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.260251998901367,
+ "eval_runtime": 57.818,
+ "eval_samples_per_second": 42.236,
+ "eval_steps_per_second": 1.332,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.03682977333664894,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 3.0096187591552734,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.049676790833473206,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 3.005502700805664,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.04197567328810692,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 2.986161231994629,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.040878161787986755,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 3.0177392959594727,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.04427504912018776,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 2.9872331619262695,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.03664223104715347,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 2.982750654220581,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.03359461575746536,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 3.036256790161133,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.03522174432873726,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 2.9673585891723633,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.036801036447286606,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 2.9804298877716064,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.03503398597240448,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 3.0192883014678955,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.03201582282781601,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 3.0131349563598633,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.034218158572912216,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 3.018552541732788,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.034080881625413895,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 3.0217127799987793,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.0325000062584877,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 2.9699440002441406,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.03486644849181175,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 2.996582508087158,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.033362530171871185,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 3.0134687423706055,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.03219781443476677,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 3.028303623199463,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.03249913081526756,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 3.041970729827881,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.03392951563000679,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 3.0437307357788086,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.035250015556812286,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 3.0016467571258545,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.03219404071569443,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 2.9868557453155518,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.034740231931209564,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 3.0191102027893066,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.03378608450293541,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 2.9819235801696777,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.03126170486211777,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 3.0244431495666504,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.0341620147228241,
+ "learning_rate": 0.000179445406945268,
+ "loss": 3.025275230407715,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.03303704410791397,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 3.0206751823425293,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.031866636127233505,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 3.065530300140381,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.03319002315402031,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 3.035928249359131,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.03198426961898804,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 3.035161018371582,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.02992428094148636,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 3.002439260482788,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.03143618628382683,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 3.0593252182006836,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.030728137120604515,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 3.043550491333008,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.029600419104099274,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 3.0696005821228027,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.031791139394044876,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 3.016582489013672,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.030455080792307854,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 3.021450996398926,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.0301319882273674,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 3.0840072631835938,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.03059639409184456,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 3.069697380065918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.031164854764938354,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 3.0536410808563232,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03087274543941021,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 3.0589685440063477,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.03018832392990589,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 3.0317018032073975,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03111763298511505,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 3.0193753242492676,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.030017679557204247,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 3.033637046813965,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.030399367213249207,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 3.0928962230682373,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.03129652142524719,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 3.0451242923736572,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.02999301627278328,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 3.0762739181518555,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.029050013050436974,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 3.035623550415039,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.030129432678222656,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 3.0518558025360107,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.03071288764476776,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 3.070361375808716,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029714390635490417,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 3.0466830730438232,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031577423214912415,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 3.0402965545654297,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.03088134154677391,
+ "learning_rate": 0.000173176617304673,
+ "loss": 3.041398525238037,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03100186213850975,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 3.0857033729553223,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.03201247379183769,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 3.0708329677581787,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.030221953988075256,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 3.0749387741088867,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.03167426586151123,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 3.086536169052124,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.03179052844643593,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 3.0833234786987305,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.029809722676873207,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 3.0629539489746094,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.03139837831258774,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 3.1162657737731934,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029216980561614037,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 3.075932025909424,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.030586371198296547,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 3.0647311210632324,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.02969566360116005,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 3.0812134742736816,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.028870539739727974,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 3.0748748779296875,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.029527587816119194,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 3.1284332275390625,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.029147129505872726,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 3.100613594055176,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028313715010881424,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 3.0623369216918945,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.029429465532302856,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 3.1212449073791504,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02836095355451107,
+ "learning_rate": 0.00016935382741164,
+ "loss": 3.104053497314453,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.028584513813257217,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 3.1087045669555664,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.0308294165879488,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 3.0686898231506348,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.028480850160121918,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 3.056847095489502,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.027765415608882904,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 3.0788183212280273,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.03465089946985245,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 3.083177328109741,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.289492130279541,
+ "eval_runtime": 57.6739,
+ "eval_samples_per_second": 42.341,
+ "eval_steps_per_second": 1.335,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.03739845007658005,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 2.971905469894409,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.0454539880156517,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 2.9235942363739014,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.03972721844911575,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 2.943814277648926,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.039135806262493134,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 2.9464917182922363,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.038645751774311066,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 3.0013396739959717,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.03719992935657501,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 2.950340986251831,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.03530147671699524,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 3.013052225112915,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.034085702151060104,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 2.9704601764678955,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.03628101572394371,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 2.9669294357299805,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.035743679851293564,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 2.9868359565734863,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.03441668674349785,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 2.9880685806274414,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.03296050429344177,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 2.981017589569092,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.03243963047862053,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 2.9854543209075928,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.03302016481757164,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 2.946493148803711,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.033656030893325806,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 2.9685728549957275,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.03422021493315697,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 3.0115339756011963,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.034188102930784225,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 2.9989778995513916,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.031733572483062744,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 2.9996390342712402,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.03390700742602348,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 2.995767116546631,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.034200429916381836,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 2.9650206565856934,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.032906122505664825,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 3.0107078552246094,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.032964903861284256,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 2.9816744327545166,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.032815348356962204,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 2.9982123374938965,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.03259589150547981,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 3.0009212493896484,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.032530251890420914,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 2.99307918548584,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.032114770263433456,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 2.9932491779327393,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.032941076904535294,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 3.059328556060791,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.03325921669602394,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 2.9920570850372314,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.03189065307378769,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 2.986832857131958,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.0320298932492733,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 2.986527442932129,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.032062828540802,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 3.0112881660461426,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.03301781415939331,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 3.0216145515441895,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.0344916433095932,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 3.0155141353607178,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.0320601612329483,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 2.9892053604125977,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03163528069853783,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 3.005617141723633,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.0329110287129879,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 3.0535356998443604,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.030556878075003624,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 3.0203990936279297,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.031008001416921616,
+ "learning_rate": 0.000159218843594243,
+ "loss": 3.02127742767334,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.031155841425061226,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 2.9743614196777344,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.030541326850652695,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 3.014299154281616,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.031742338091135025,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 3.0051097869873047,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.02989187091588974,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 3.051193952560425,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.030058210715651512,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 3.017111301422119,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029765194281935692,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 3.053699016571045,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.030537934973835945,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 3.013504981994629,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.03024795465171337,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 3.0272743701934814,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030360743403434753,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 3.030949354171753,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.03035072423517704,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 3.051844358444214,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030504168942570686,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 3.049577236175537,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.03011324070394039,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 2.9918508529663086,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03013714775443077,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 3.037904977798462,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.030488433316349983,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 3.027632236480713,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.03132355213165283,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 3.056293249130249,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.03080538846552372,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 3.0026464462280273,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029128601774573326,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 3.0270485877990723,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.02996237576007843,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 3.0554800033569336,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.03137197345495224,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 3.030535936355591,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.03169243037700653,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 3.006303310394287,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.030219880864024162,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 3.0744738578796387,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.03023732639849186,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 3.0363545417785645,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0328553169965744,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 3.040400981903076,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.029735038056969643,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 3.028709888458252,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.030272237956523895,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 3.037313461303711,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.03199860826134682,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 3.0432136058807373,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.02964850887656212,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 3.0143280029296875,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.032533321529626846,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 3.075748920440674,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.03221677988767624,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 3.0475339889526367,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.032870691269636154,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 3.077136993408203,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.0326097346842289,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 3.046293258666992,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.03128218278288841,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 3.024522066116333,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.031186817213892937,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 3.043630599975586,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03708904609084129,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 3.0491294860839844,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.324725151062012,
+ "eval_runtime": 58.8721,
+ "eval_samples_per_second": 41.48,
+ "eval_steps_per_second": 1.308,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03718156740069389,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 2.9137024879455566,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.04242836683988571,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 2.95491361618042,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.034661613404750824,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 2.931143283843994,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.03455570340156555,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 2.933091402053833,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.03829373046755791,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 2.938300132751465,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.037849120795726776,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 2.9631741046905518,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.036504197865724564,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 2.9297828674316406,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.032648202031850815,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 2.9342050552368164,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.03621445596218109,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 2.9636025428771973,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.03777499124407768,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 2.9307641983032227,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.03778013959527016,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 2.9447648525238037,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.034956999123096466,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 2.9596714973449707,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.033349718898534775,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 2.9255731105804443,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.03491971269249916,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 2.8907923698425293,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.03583350032567978,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 2.9661455154418945,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.03390899673104286,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 2.9769177436828613,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.031930334866046906,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 2.941274881362915,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.03465861827135086,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 2.949491024017334,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.03498814254999161,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 2.9623749256134033,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.03372015431523323,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 2.952651023864746,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.032251399010419846,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 2.9634861946105957,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.03347077965736389,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 2.919717311859131,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.03428836911916733,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 2.9775307178497314,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.033225737512111664,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 2.981713056564331,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.033842265605926514,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 2.99894642829895,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.034690506756305695,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 2.9432735443115234,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.036143939942121506,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 2.993316411972046,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.03434835001826286,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 2.9919919967651367,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.03247698396444321,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 2.9784095287323,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.03651128336787224,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 2.9647932052612305,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.03521955385804176,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 2.9638381004333496,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.03404879570007324,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 2.995042324066162,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.03397255018353462,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 2.98030948638916,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.034281399101018906,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 2.9578874111175537,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.03375784680247307,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 2.9310011863708496,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.032266587018966675,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 3.017228841781616,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.031346071511507034,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 2.985002040863037,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03182312101125717,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 2.968994140625,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.031591545790433884,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 2.966625213623047,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.03151732310652733,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 2.95800518989563,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.032275281846523285,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 2.9820804595947266,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03335779532790184,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 3.0172390937805176,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.03131173551082611,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 2.967258930206299,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03147612512111664,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 3.0259766578674316,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.031647227704524994,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 2.984004020690918,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030623044818639755,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 2.9716386795043945,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.03214540705084801,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 3.036837100982666,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03211726248264313,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 3.0012319087982178,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030490046367049217,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 3.000899314880371,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031676359474658966,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 2.999171733856201,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.03196047246456146,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 2.9652652740478516,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.03154071792960167,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 2.9977519512176514,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.03187791630625725,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 3.0295329093933105,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.030363669618964195,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 2.984137535095215,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.03208064287900925,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 3.007162094116211,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.030690619722008705,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 2.995037078857422,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.030634157359600067,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 3.002346992492676,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.0325019545853138,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 2.990049362182617,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.03119182027876377,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 3.0190300941467285,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.032793447375297546,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 3.015969753265381,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.03210591524839401,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 3.0110068321228027,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.031592607498168945,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 3.015460968017578,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.031449154019355774,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 2.980496406555176,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.0318843312561512,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 3.0351834297180176,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.030633851885795593,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 3.025505542755127,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.03055507503449917,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 2.980363607406616,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.030444832518696785,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 3.0007693767547607,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.030038077384233475,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 2.9965107440948486,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030796151608228683,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 3.0268783569335938,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.032338906079530716,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 3.0161352157592773,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.031326185911893845,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 2.998199939727783,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.03641432896256447,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 2.99208664894104,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.365145683288574,
+ "eval_runtime": 59.6109,
+ "eval_samples_per_second": 40.966,
+ "eval_steps_per_second": 1.292,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036101240664720535,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 2.9229609966278076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.04659443348646164,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 2.882582426071167,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.039827633649110794,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 2.913970708847046,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.03899892047047615,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 2.9170823097229004,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.040949538350105286,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 2.8714303970336914,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.04048046097159386,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 2.942922592163086,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.039095427840948105,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 2.917171001434326,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.036895740777254105,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 2.881669521331787,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.036871183663606644,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 2.904865026473999,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.03580665960907936,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 2.888312816619873,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.033497925847768784,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 2.9159886837005615,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.03645741939544678,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 2.922903537750244,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.03467963635921478,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 2.893218994140625,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.03516887500882149,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 2.946096181869507,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.03285518288612366,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 2.883183479309082,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.03461560606956482,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 2.9127964973449707,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.032447874546051025,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 2.941572904586792,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.032827962189912796,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 2.882232904434204,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.03459580987691879,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 2.9359278678894043,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.033537592738866806,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 2.9211392402648926,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.03445928171277046,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 2.951965570449829,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.034292835742235184,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 2.922822952270508,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.0331917330622673,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 2.93473219871521,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.035322073847055435,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 2.9726855754852295,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.03501332551240921,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 2.937869071960449,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.03303850442171097,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 2.907097101211548,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.034785833209753036,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 2.9137706756591797,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.03453590348362923,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 2.9239890575408936,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.031692180782556534,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 2.94581937789917,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.033933885395526886,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 2.9585378170013428,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03295003995299339,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 2.934412956237793,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03174088895320892,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 2.905796527862549,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 2.9427170753479004,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.031007668003439903,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 2.9342517852783203,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03159578889608383,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 2.9440736770629883,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03076927363872528,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 2.9372286796569824,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03194348141551018,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 2.950411558151245,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.031811829656362534,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 2.9286372661590576,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031859494745731354,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 2.949293851852417,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03211456537246704,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 2.9497315883636475,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032061900943517685,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 2.9805281162261963,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.03235242888331413,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 2.9582552909851074,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03274158015847206,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 2.9244611263275146,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.03237871825695038,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 2.9584853649139404,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03335065394639969,
+ "learning_rate": 0.000125422220031917,
+ "loss": 2.967963933944702,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.032168373465538025,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 2.9352662563323975,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.031649500131607056,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 2.9314675331115723,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03199118748307228,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 2.94907283782959,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.032334573566913605,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 2.9527769088745117,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03069196455180645,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 2.9593281745910645,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.0315573588013649,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 2.9340977668762207,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.03241933509707451,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 2.987230062484741,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.030948035418987274,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 2.9927141666412354,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.03212989121675491,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 2.9522669315338135,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.03238612040877342,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 2.9981212615966797,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.031098810955882072,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 2.980008840560913,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03202599659562111,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 2.945791721343994,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.03131226450204849,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 2.978998899459839,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.03163373842835426,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 2.964719772338867,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03205667808651924,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 2.9884414672851562,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.03170310705900192,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 2.9828829765319824,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.033174507319927216,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 2.993612051010132,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.031098203733563423,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 2.960470676422119,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.0320245698094368,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 2.9731860160827637,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.03298075124621391,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 2.978109359741211,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.033254217356443405,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 2.99928617477417,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.03272705525159836,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 2.9873595237731934,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.032606013119220734,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 2.9822492599487305,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.033151786774396896,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 3.0517663955688477,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.032137393951416016,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 3.0320076942443848,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.03240504115819931,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 2.965942621231079,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03748507797718048,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 2.986581325531006,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.39909029006958,
+ "eval_runtime": 57.8644,
+ "eval_samples_per_second": 42.202,
+ "eval_steps_per_second": 1.331,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.035249192267656326,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 2.8695621490478516,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.04332931339740753,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 2.872889518737793,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.0370100736618042,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 2.891376495361328,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.03743851184844971,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 2.8930583000183105,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.03672601655125618,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 2.8492941856384277,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.03673556447029114,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 2.847184181213379,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.03713645413517952,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 2.891683340072632,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.035592418164014816,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 2.8745617866516113,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.03660868853330612,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 2.8822832107543945,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.03587000072002411,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 2.8569459915161133,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.03584085404872894,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 2.871934413909912,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.03400537371635437,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 2.898621082305908,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.03427768498659134,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 2.8695733547210693,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.03240136429667473,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 2.8452627658843994,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.035201236605644226,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 2.846024751663208,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.03296452388167381,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 2.8867619037628174,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.03552323952317238,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 2.932100534439087,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.03576110675930977,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 2.897157669067383,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.0338599719107151,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 2.9155187606811523,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.035200271755456924,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 2.886493682861328,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.0342402420938015,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 2.8792905807495117,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.03284120932221413,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 2.901045560836792,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.03285597264766693,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 2.8879854679107666,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.03379133343696594,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 2.9062161445617676,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.03294893354177475,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 2.912517547607422,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.03286999091506004,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 2.8826236724853516,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.03335225582122803,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 2.9071149826049805,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.03209758177399635,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 2.9216933250427246,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.03388523310422897,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 2.927353858947754,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.032792337238788605,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 2.90283203125,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.032631076872348785,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 2.8815271854400635,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03211396187543869,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 2.929408550262451,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03343743085861206,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 2.899761199951172,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.03195416182279587,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 2.9175775051116943,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.032496511936187744,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 2.903224468231201,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.03279714286327362,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 2.934840679168701,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.03238125517964363,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 2.9084653854370117,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.032917145639657974,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 2.9250540733337402,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03196168690919876,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 2.906609058380127,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03373948857188225,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 2.908381938934326,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.0319669209420681,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 2.914118528366089,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.031623195856809616,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 2.92551326751709,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03334169462323189,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 2.956587076187134,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.032796405255794525,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 2.9236581325531006,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.03214484080672264,
+ "learning_rate": 0.000110418175419276,
+ "loss": 2.925595283508301,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.03265630453824997,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 2.916499376296997,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.031656887382268906,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 2.931150436401367,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.032084085047245026,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 2.9337143898010254,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.032294776290655136,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 2.8914670944213867,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03171965479850769,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 2.9523673057556152,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03230489417910576,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 2.937072515487671,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03182378038764,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 2.924713373184204,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.03162626177072525,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 2.9573068618774414,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.03187672421336174,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 2.919142246246338,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03102356567978859,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 2.9293179512023926,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.03191511705517769,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 2.9295756816864014,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.03278054669499397,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 2.9508566856384277,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03192828223109245,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 2.934763193130493,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.032828524708747864,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 2.941349506378174,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.03223246708512306,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 2.966546058654785,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.03259873390197754,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 2.9705801010131836,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03265198692679405,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 2.9603195190429688,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.032012395560741425,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 2.9593594074249268,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.0328369215130806,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 2.933140277862549,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.03183514252305031,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 2.942354679107666,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.03233134374022484,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 2.92272686958313,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.03143055737018585,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 2.9438138008117676,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03257118910551071,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 2.957641124725342,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031078124418854713,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 2.9572582244873047,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.03105352818965912,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 2.9723658561706543,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.031190577894449234,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 2.9154210090637207,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.03738512471318245,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 2.9228148460388184,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.432395935058594,
+ "eval_runtime": 57.493,
+ "eval_samples_per_second": 42.475,
+ "eval_steps_per_second": 1.339,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.037372712045907974,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 2.8703017234802246,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.04003313183784485,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 2.846599578857422,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.035013001412153244,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 2.8098678588867188,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.03771941363811493,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 2.84356951713562,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.036406442523002625,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 2.818575859069824,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.03623209521174431,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 2.8696632385253906,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.03613818809390068,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 2.854975700378418,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.036677125841379166,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 2.812471628189087,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.035224951803684235,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 2.8532795906066895,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.034982819110155106,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 2.859151840209961,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.033107299357652664,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 2.858462333679199,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.036417897790670395,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 2.8269128799438477,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.034186989068984985,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 2.8623671531677246,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.034109801054000854,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 2.8755102157592773,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.03457697480916977,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 2.851405620574951,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.03468300774693489,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 2.8593785762786865,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.034213028848171234,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 2.8725686073303223,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.03522878512740135,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 2.8508810997009277,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.03519051522016525,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 2.8610117435455322,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.03408816084265709,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 2.8392627239227295,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.03551741689443588,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 2.8957273960113525,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.03470981493592262,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 2.852356433868408,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.034143827855587006,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 2.8662776947021484,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.03391839191317558,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 2.8915393352508545,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.03528929129242897,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 2.8711304664611816,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.03383256867527962,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 2.8797762393951416,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.034317776560783386,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 2.8560853004455566,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.03462211415171623,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 2.866088390350342,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.034040067344903946,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 2.8447439670562744,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.03318457305431366,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 2.9107751846313477,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.03563983738422394,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 2.896859645843506,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.03428848460316658,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 2.8807625770568848,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.03331796079874039,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 2.890900135040283,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.03448121249675751,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 2.8964316844940186,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03365302085876465,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 2.8742756843566895,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.034365978091955185,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 2.8907721042633057,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.033616915345191956,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 2.888810634613037,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.033790890127420425,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 2.9025700092315674,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.032762594521045685,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 2.8793303966522217,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.035109154880046844,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 2.8829760551452637,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03275948762893677,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 2.913402557373047,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.03401525318622589,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 2.906674385070801,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.033500537276268005,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 2.882190227508545,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.03277073800563812,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 2.915426731109619,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03256448730826378,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 2.897702217102051,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.033269502222537994,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 2.887411117553711,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03247280418872833,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 2.918998956680298,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.03282757103443146,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 2.878009080886841,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03320639207959175,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 2.913011074066162,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.033050697296857834,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 2.9491519927978516,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.03235333412885666,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 2.897588014602661,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03257526457309723,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 2.9275996685028076,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.032952696084976196,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 2.914909839630127,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.0327947735786438,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 2.8949787616729736,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03329124674201012,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 2.9024860858917236,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03428658843040466,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 2.896939277648926,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03282622620463371,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 2.919009208679199,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.0329170897603035,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 2.9075279235839844,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.03273281455039978,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 2.913926124572754,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.03187453746795654,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 2.929065227508545,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.03417131304740906,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 2.929168939590454,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.03281114995479584,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 2.9142422676086426,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.03288140520453453,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 2.889498233795166,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.03295015171170235,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 2.8863954544067383,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.03233663737773895,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 2.903395891189575,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.032834749668836594,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 2.903757333755493,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.03178175166249275,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 2.893575668334961,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.031149886548519135,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 2.9036448001861572,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.03207555040717125,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 2.895413398742676,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.03135302662849426,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 2.912942409515381,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030814621597528458,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 2.9085190296173096,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03772229328751564,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 2.8710484504699707,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.469374656677246,
+ "eval_runtime": 56.641,
+ "eval_samples_per_second": 43.114,
+ "eval_steps_per_second": 1.359,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03446470946073532,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 2.8153815269470215,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.03691394254565239,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 2.7982006072998047,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.03586282953619957,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 2.7988619804382324,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.039884597063064575,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 2.793919086456299,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.03394780680537224,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 2.849790334701538,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.03676057234406471,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 2.828138828277588,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.03541228547692299,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 2.8262484073638916,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.0352398119866848,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 2.839468479156494,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.03511424735188484,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 2.812490463256836,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.034419652074575424,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 2.8443245887756348,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.03387727960944176,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 2.8124494552612305,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.033847443759441376,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 2.8152976036071777,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.03418067842721939,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 2.8289899826049805,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.034598272293806076,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 2.85463285446167,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.03405346721410751,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 2.8366053104400635,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.0326545275747776,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 2.798079490661621,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.034301143139600754,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 2.826050043106079,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.03322048485279083,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 2.8373303413391113,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.03460463136434555,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 2.811732292175293,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.033100854605436325,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 2.8398869037628174,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.03397074341773987,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 2.8279929161071777,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.033724334090948105,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 2.8651649951934814,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.03249189630150795,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 2.8317794799804688,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.03396932780742645,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 2.835175037384033,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.03288092464208603,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 2.8255081176757812,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.03325018659234047,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 2.8808155059814453,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.032659146934747696,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 2.844255208969116,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.033794667571783066,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 2.8324851989746094,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.033197466284036636,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 2.847168445587158,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.033781230449676514,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 2.8837218284606934,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.033751554787158966,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 2.859447717666626,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.03268533945083618,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 2.825350761413574,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.03334410861134529,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 2.8775081634521484,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.033601801842451096,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 2.8139495849609375,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.03383617103099823,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 2.8522391319274902,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.03364632651209831,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 2.8646411895751953,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03337915614247322,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 2.8269598484039307,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03271420672535896,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 2.860752582550049,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.0327487513422966,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 2.892174243927002,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03336317092180252,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 2.8342764377593994,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.03182297945022583,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 2.8651742935180664,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.03333026170730591,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 2.87003231048584,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.031769055873155594,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 2.8893930912017822,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03293822333216667,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 2.882981777191162,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03192837908864021,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 2.8615071773529053,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.032835572957992554,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 2.8465023040771484,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.03238287940621376,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 2.859096050262451,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03261588141322136,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 2.8671963214874268,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.032639745622873306,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 2.847773313522339,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.03352993726730347,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 2.884315252304077,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.03244686871767044,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 2.8648123741149902,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.03223097696900368,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 2.8568317890167236,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03279644623398781,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 2.88169002532959,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.031271256506443024,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 2.8385443687438965,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03260452672839165,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 2.850785732269287,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.0321393720805645,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 2.8878376483917236,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.031968653202056885,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 2.859452724456787,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032150719314813614,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 2.90781307220459,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03173813596367836,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 2.8684515953063965,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03238045424222946,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 2.8368163108825684,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03147270530462265,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 2.9057931900024414,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03182937577366829,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 2.8692893981933594,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.031568143516778946,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 2.8956680297851562,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.03183847293257713,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 2.9455864429473877,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03154289722442627,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 2.881195306777954,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.032405827194452286,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 2.910112142562866,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.031707290560007095,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 2.8775830268859863,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.032700903713703156,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 2.897766351699829,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03194038197398186,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 2.8818325996398926,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.0319269634783268,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 2.885464668273926,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03255274519324303,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 2.9075706005096436,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03922920301556587,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 2.868931293487549,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.5041823387146,
+ "eval_runtime": 56.5164,
+ "eval_samples_per_second": 43.209,
+ "eval_steps_per_second": 1.362,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.03487532213330269,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 2.7858150005340576,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.03757835552096367,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 2.760089635848999,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.03367038816213608,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 2.773590564727783,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.03676961734890938,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 2.7899584770202637,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.033205557614564896,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 2.7687323093414307,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.03825245425105095,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 2.832014799118042,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.03551522269845009,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 2.801161050796509,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.03563264012336731,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 2.7789340019226074,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.03769055753946304,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 2.7946577072143555,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.03326762095093727,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 2.7901415824890137,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.03519181162118912,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 2.8277456760406494,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.03473416343331337,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 2.773768663406372,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.03260878846049309,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 2.7627739906311035,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.034741878509521484,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 2.795914649963379,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.03342209383845329,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 2.8334903717041016,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.033505652099847794,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 2.8028039932250977,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.033087071031332016,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 2.841115713119507,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.03366958722472191,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 2.827853202819824,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.03446904942393303,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 2.8055543899536133,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.032004229724407196,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 2.7958261966705322,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.034619275480508804,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 2.8495965003967285,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.03300263360142708,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 2.821180820465088,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.03343051299452782,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 2.832827568054199,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.03356117755174637,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 2.812239170074463,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.03272807225584984,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 2.775458335876465,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.032449908554553986,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 2.781595230102539,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.03275706246495247,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 2.820122718811035,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.03220542147755623,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 2.8294851779937744,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.031954556703567505,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 2.8244080543518066,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.03279522806406021,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 2.838766574859619,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0325172133743763,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 2.819446086883545,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.03238601237535477,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 2.79189395904541,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.033187057822942734,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 2.8329806327819824,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.033052098006010056,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 2.859341621398926,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.03370978683233261,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 2.8741466999053955,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.032403722405433655,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 2.7915124893188477,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.03302672505378723,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 2.8447070121765137,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.03291403502225876,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 2.8044419288635254,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.033257290720939636,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 2.826233386993408,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.032518718391656876,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 2.853498935699463,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.033048365265131,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 2.837798595428467,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.033396560698747635,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 2.821176528930664,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.03348768129944801,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 2.8420958518981934,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.03432426601648331,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 2.8399481773376465,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03322499245405197,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 2.872260332107544,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.03470583260059357,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 2.852072238922119,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.03246411681175232,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 2.852479934692383,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.034265074878931046,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 2.8654937744140625,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03242061287164688,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 2.805283546447754,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.03301931917667389,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 2.85548734664917,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.03337244689464569,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 2.8210458755493164,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03238043934106827,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 2.8109846115112305,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.033897001296281815,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 2.851470708847046,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.03259831666946411,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 2.8891053199768066,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03364091366529465,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 2.862358331680298,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.0329914465546608,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 2.832576036453247,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.033170927315950394,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 2.8525824546813965,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.0325101763010025,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 2.8674569129943848,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.033472560346126556,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 2.850935220718384,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03266644850373268,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 2.8125693798065186,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.03234545513987541,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 2.8465185165405273,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.03224002197384834,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 2.862696409225464,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032113656401634216,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 2.834886074066162,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03165457025170326,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 2.850790023803711,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.032658688724040985,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 2.839470863342285,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03168034926056862,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 2.8641517162323,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03244374692440033,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 2.852146625518799,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03152457997202873,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 2.838306427001953,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.032360222190618515,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 2.8598556518554688,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.03107994608581066,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 2.8537580966949463,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.03254120796918869,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 2.8840019702911377,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.039810214191675186,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 2.8393032550811768,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.535612106323242,
+ "eval_runtime": 57.6473,
+ "eval_samples_per_second": 42.361,
+ "eval_steps_per_second": 1.336,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.035575415939092636,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 2.7888336181640625,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.03578243777155876,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 2.784425735473633,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.03683833032846451,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 2.7602436542510986,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.034776996821165085,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 2.734706163406372,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.03540709987282753,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 2.8027572631835938,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.033955518156290054,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 2.785323143005371,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.03607526049017906,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 2.767956495285034,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.033837687224149704,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 2.7793612480163574,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.033539947122335434,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 2.7713685035705566,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.03523581102490425,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 2.798258066177368,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.03330468013882637,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 2.851783037185669,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.033918727189302444,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 2.779262065887451,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.03370535373687744,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 2.745286703109741,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.033641379326581955,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 2.7701475620269775,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.0328962542116642,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 2.791355848312378,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.032616086304187775,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 2.751828193664551,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.03318217024207115,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 2.778864860534668,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.03360389173030853,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 2.7615017890930176,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.032204389572143555,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 2.7768197059631348,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.03359612077474594,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 2.812666893005371,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.03206004947423935,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 2.7630255222320557,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.03305307775735855,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 2.7884228229522705,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.03213780000805855,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 2.783125877380371,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.033877503126859665,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 2.816810131072998,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.03254047781229019,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 2.786142587661743,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.03319665789604187,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 2.8080053329467773,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.03267517313361168,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 2.770346164703369,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.0328146256506443,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 2.787729501724243,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.03216152638196945,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 2.8101940155029297,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.03260299190878868,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 2.8068180084228516,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.03232688829302788,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 2.799811363220215,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.03209792822599411,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 2.761941432952881,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.03259320184588432,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 2.8126721382141113,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.03288176283240318,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 2.8376340866088867,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03155255690217018,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 2.775063991546631,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.03322870656847954,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 2.800600051879883,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03230913728475571,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 2.8152663707733154,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03264563903212547,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 2.79964017868042,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.03290131315588951,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 2.7971184253692627,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.032422926276922226,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 2.8155899047851562,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.03309594467282295,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 2.784984588623047,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.032494667917490005,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 2.8198728561401367,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.031838785856962204,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 2.770472288131714,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.03269412741065025,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 2.821829319000244,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03241150453686714,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 2.807669162750244,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.032060347497463226,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 2.816555976867676,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03307179734110832,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 2.809134006500244,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.03209899365901947,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 2.8191277980804443,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.032275401055812836,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 2.8053417205810547,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.033092692494392395,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 2.8481149673461914,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03189569339156151,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 2.7976434230804443,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.032415684312582016,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 2.851633310317993,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.03285417705774307,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 2.8052849769592285,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.03224415332078934,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 2.7979726791381836,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.031853772699832916,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 2.8241000175476074,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.0322316437959671,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 2.7952651977539062,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.031960539519786835,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 2.836901903152466,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.03200649470090866,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 2.83998441696167,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.03190051019191742,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 2.8309121131896973,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.032434865832328796,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 2.787348985671997,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.031419698148965836,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 2.8245019912719727,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.03204237297177315,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 2.867809772491455,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.03196193277835846,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 2.83435320854187,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.03119942732155323,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 2.8341619968414307,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.031631290912628174,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 2.8319990634918213,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03170793876051903,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 2.8110299110412598,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.031340908259153366,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 2.8069095611572266,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.032818615436553955,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 2.869403123855591,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03155144676566124,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 2.805049180984497,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.03143952786922455,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 2.8520846366882324,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.03166790306568146,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 2.8212716579437256,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03885777294635773,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 2.808021068572998,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.569339275360107,
+ "eval_runtime": 57.1485,
+ "eval_samples_per_second": 42.731,
+ "eval_steps_per_second": 1.347,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.034283265471458435,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 2.7696597576141357,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.03373602405190468,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 2.740394115447998,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.035183947533369064,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 2.777935028076172,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.033623334020376205,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 2.750498056411743,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.03427752107381821,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 2.7566113471984863,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.03325826674699783,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 2.741637706756592,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.032829977571964264,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 2.791822671890259,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.033819783478975296,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 2.7341437339782715,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.03247702494263649,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 2.722377300262451,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.03292803093791008,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 2.7639598846435547,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.032617710530757904,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 2.745471477508545,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.03270521014928818,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 2.7421998977661133,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.032306969165802,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 2.73567533493042,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.03307414427399635,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 2.745532751083374,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.03215734288096428,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 2.7670440673828125,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.03348211571574211,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 2.7779524326324463,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.03339233249425888,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 2.801846504211426,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.03207641839981079,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 2.754849910736084,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.03268122300505638,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 2.783100128173828,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.0316154919564724,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 2.7738475799560547,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.03281943127512932,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 2.719428300857544,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.03191844001412392,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 2.7809932231903076,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.033162347972393036,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 2.762366533279419,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.03232284262776375,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 2.791337251663208,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.031977295875549316,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 2.7846035957336426,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.03218942880630493,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 2.724649667739868,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.03226738050580025,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 2.766108751296997,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.032297879457473755,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 2.7549610137939453,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.031384050846099854,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 2.7626614570617676,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.032188814133405685,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 2.7857532501220703,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.033742956817150116,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 2.799126148223877,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.032267872244119644,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 2.7718982696533203,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.032209400087594986,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 2.7860467433929443,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.032202448695898056,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 2.7959060668945312,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.032153163105249405,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 2.7876834869384766,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.03210372105240822,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 2.7873010635375977,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.03164523094892502,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 2.7512216567993164,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.032562121748924255,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 2.8027753829956055,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.03262171521782875,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 2.8270232677459717,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.03154899552464485,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 2.7840075492858887,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.032488565891981125,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 2.81056547164917,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.03253582864999771,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 2.796245813369751,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.03186483681201935,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 2.7793664932250977,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.03157131001353264,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 2.7430591583251953,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03213154152035713,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 2.7686574459075928,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.032049816101789474,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 2.7827882766723633,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03246365487575531,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 2.7825546264648438,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.032422985881567,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 2.8061885833740234,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.032443851232528687,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 2.801968812942505,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.032752737402915955,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 2.796931266784668,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03166511282324791,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 2.8253393173217773,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03266747668385506,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 2.7977123260498047,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03224790468811989,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 2.8086612224578857,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.031219875440001488,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 2.7706151008605957,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.03268706426024437,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 2.777017831802368,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03180723637342453,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 2.7993979454040527,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.032663531601428986,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 2.8316493034362793,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03161679953336716,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 2.7913477420806885,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.03250109404325485,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 2.809959888458252,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.032254476100206375,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 2.7803966999053955,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.032249052077531815,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 2.7919392585754395,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.03209810331463814,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 2.778228759765625,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.03182975575327873,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 2.7956900596618652,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.03231583535671234,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 2.8188533782958984,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03172706812620163,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 2.7777481079101562,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03181561082601547,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 2.8213555812835693,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03313136473298073,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 2.8289520740509033,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03205486387014389,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 2.809636116027832,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.03203390911221504,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 2.801621913909912,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.03193974867463112,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 2.7802486419677734,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.032365866005420685,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 2.8018054962158203,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.038718629628419876,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 2.778092384338379,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.596390247344971,
+ "eval_runtime": 57.7915,
+ "eval_samples_per_second": 42.255,
+ "eval_steps_per_second": 1.332,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.036336805671453476,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 2.7744364738464355,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.0316612645983696,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 2.740724563598633,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.035904236137866974,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 2.7506675720214844,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.03343231603503227,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 2.715701103210449,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.03319878503680229,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 2.7158095836639404,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.034973908215761185,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 2.7205851078033447,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0326351560652256,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 2.7368392944335938,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.03459784761071205,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 2.7572948932647705,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.03433673083782196,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 2.756472110748291,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.033050913363695145,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 2.727799654006958,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.03323569521307945,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 2.7098822593688965,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.032346174120903015,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 2.7528586387634277,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.032360825687646866,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 2.745169162750244,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.03219181299209595,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 2.7412123680114746,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.03166823461651802,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 2.726210832595825,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.03198220953345299,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 2.742135763168335,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.03186439350247383,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 2.726210355758667,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.031570304185152054,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 2.721841335296631,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.03214096650481224,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 2.7286245822906494,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.03189755976200104,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 2.7493395805358887,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.03185759484767914,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 2.7649126052856445,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.030986769124865532,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 2.7538859844207764,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.03220684826374054,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 2.7524051666259766,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.031301289796829224,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 2.7590246200561523,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.03188304230570793,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 2.7554893493652344,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.03162779659032822,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 2.754054069519043,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.03091351129114628,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 2.775412082672119,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.031103957444429398,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 2.7786972522735596,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.031575944274663925,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 2.766420602798462,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.03108934871852398,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 2.748870849609375,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.031753718852996826,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 2.7378451824188232,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.03170621395111084,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 2.7669477462768555,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.03145500272512436,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 2.7953059673309326,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.03122818097472191,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 2.7311127185821533,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.03124464489519596,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 2.6937713623046875,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.03180540353059769,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 2.733259677886963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.03137016296386719,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 2.732177257537842,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.031839460134506226,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 2.726780414581299,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.0316641703248024,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 2.77913761138916,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.031652599573135376,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 2.7615957260131836,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.031522803008556366,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 2.7664713859558105,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.032187819480895996,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 2.746629238128662,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.03177458792924881,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 2.766712188720703,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.03131174296140671,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 2.771763563156128,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03206568956375122,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 2.797121524810791,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03160213306546211,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 2.7942163944244385,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.031057968735694885,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 2.755692958831787,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.03130852058529854,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 2.787384271621704,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03187759593129158,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 2.7955973148345947,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.031654201447963715,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 2.7755446434020996,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.03207271918654442,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 2.762018918991089,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.031359415501356125,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 2.805023670196533,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.03266169875860214,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 2.794983386993408,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03115970641374588,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 2.749746322631836,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.03204722702503204,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 2.7850396633148193,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03195057064294815,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 2.760915756225586,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.032219987362623215,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 2.776365280151367,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03176714479923248,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 2.779020309448242,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.032023120671510696,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 2.7487635612487793,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.03245598077774048,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 2.7448408603668213,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.031706083565950394,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 2.7816359996795654,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.032322995364665985,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 2.7536940574645996,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.031783461570739746,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 2.7843456268310547,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.032678306102752686,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 2.801398754119873,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.03182339295744896,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 2.7606360912323,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.03216681629419327,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 2.8024938106536865,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03215061500668526,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 2.808044672012329,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.03153601288795471,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 2.7573795318603516,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.03208918869495392,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 2.775096893310547,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.03181913122534752,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 2.7780838012695312,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.03192935138940811,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 2.7965097427368164,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.0396445207297802,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 2.806685447692871,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.625502109527588,
+ "eval_runtime": 58.0936,
+ "eval_samples_per_second": 42.036,
+ "eval_steps_per_second": 1.325,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.03469860181212425,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 2.6991372108459473,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.03283834829926491,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 2.7259292602539062,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.034924499690532684,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 2.7379021644592285,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.034502189606428146,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 2.7289793491363525,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.03308502584695816,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 2.7090988159179688,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.0341394878923893,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 2.7335824966430664,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.03431018441915512,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 2.748699903488159,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.03247246518731117,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 2.707603931427002,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.034720007330179214,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 2.7011375427246094,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.032531965523958206,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 2.742347478866577,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.032509587705135345,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 2.713306188583374,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.032791849225759506,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 2.718690872192383,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.03192365914583206,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 2.7517895698547363,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.03311075642704964,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 2.7561326026916504,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.03173956274986267,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 2.709946632385254,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.032993774861097336,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 2.752880096435547,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.032164067029953,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 2.7515780925750732,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.03307962417602539,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 2.725029468536377,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.031974758952856064,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 2.738672971725464,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.03306545317173004,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 2.723395347595215,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.03194974735379219,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 2.726745843887329,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.03151552751660347,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 2.7316157817840576,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.03236325457692146,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 2.693617343902588,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.03182254731655121,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 2.7267110347747803,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.03176427632570267,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 2.7479493618011475,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.032564207911491394,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 2.7499499320983887,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.0311724990606308,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 2.7501862049102783,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.031560108065605164,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 2.6962831020355225,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.031850121915340424,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 2.731621503829956,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.03137243911623955,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 2.760693073272705,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.03272967040538788,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 2.7518720626831055,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.03132633864879608,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 2.7601799964904785,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.03168002516031265,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 2.7225546836853027,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.031334057450294495,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 2.7221384048461914,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.03146284073591232,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 2.7389538288116455,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.031102966517210007,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 2.7562854290008545,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.031278736889362335,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 2.734985828399658,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.03147172927856445,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 2.766950845718384,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.031015127897262573,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 2.737208366394043,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03091510199010372,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 2.761941432952881,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.03113712929189205,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 2.7699170112609863,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.030985459685325623,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 2.7287673950195312,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.031207162886857986,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 2.7633845806121826,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.03153573349118233,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 2.7301464080810547,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.031127776950597763,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 2.746314525604248,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.031800318509340286,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 2.7607038021087646,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.031280338764190674,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 2.763211488723755,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.030917951837182045,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 2.7608180046081543,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03197769448161125,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 2.747262716293335,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.030538206920027733,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 2.7575979232788086,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.03191604092717171,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 2.723932981491089,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.031094307079911232,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 2.7764835357666016,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.031684279441833496,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 2.746481418609619,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.03092978522181511,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 2.749342441558838,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.031006447970867157,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 2.7438805103302,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03162384778261185,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 2.768954038619995,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.031565409153699875,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 2.7825887203216553,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.0312856025993824,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 2.758105754852295,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03127129375934601,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 2.74495267868042,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.03154046833515167,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 2.7607998847961426,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03153553605079651,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 2.767052173614502,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.03134170174598694,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 2.75537109375,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.030924728140234947,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 2.754851818084717,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03129918873310089,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 2.7355051040649414,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03155917301774025,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 2.7416505813598633,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.031762897968292236,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 2.7178144454956055,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.03035889007151127,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 2.712557792663574,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.0321216844022274,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 2.766390323638916,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.03152631223201752,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 2.757894515991211,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.030752019956707954,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 2.7429919242858887,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03164204582571983,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 2.747443914413452,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.03954765200614929,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 2.8110146522521973,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.653435707092285,
+ "eval_runtime": 57.5301,
+ "eval_samples_per_second": 42.447,
+ "eval_steps_per_second": 1.338,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.031107356771826744,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 2.6978492736816406,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.03117651492357254,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 2.7588353157043457,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.03113948553800583,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 2.704969882965088,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.03138681873679161,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 2.736638069152832,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.031039219349622726,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 2.676696300506592,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.030828941613435745,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 2.730391025543213,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.031116550788283348,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 2.7276642322540283,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.03079712577164173,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 2.7261881828308105,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.030890202149748802,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 2.7424674034118652,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.030908938497304916,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 2.7482223510742188,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.031069086864590645,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 2.724377155303955,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.030668172985315323,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 2.6998305320739746,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.03070460446178913,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 2.7243764400482178,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.030343424528837204,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 2.7061843872070312,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.03097744658589363,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 2.714763641357422,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.030060146003961563,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 2.691669464111328,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.031011972576379776,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 2.7139039039611816,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.03130429983139038,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 2.75567626953125,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.030246606096625328,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 2.718505859375,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.03001324273645878,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 2.7078113555908203,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.030866209417581558,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 2.7188260555267334,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.03085138462483883,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 2.702205181121826,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.03080092929303646,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 2.7203714847564697,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.030342809855937958,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 2.727083683013916,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.030209429562091827,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 2.7203402519226074,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.031100839376449585,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 2.7541468143463135,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.030545715242624283,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 2.7533421516418457,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.03048386052250862,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 2.6727168560028076,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.029950937256217003,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 2.671605110168457,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.03051062487065792,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 2.728219509124756,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.030642330646514893,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 2.6857504844665527,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.030983751639723778,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 2.708402633666992,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.03060961700975895,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 2.74355149269104,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.03050919994711876,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 2.751861572265625,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.030905725434422493,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 2.7248451709747314,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.03106841817498207,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 2.775455951690674,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.030558940023183823,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 2.7393970489501953,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.030954021960496902,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 2.734126329421997,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.030478982254862785,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 2.725252866744995,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.03083394654095173,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 2.7237637042999268,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.031072242185473442,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 2.7282185554504395,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.030463198199868202,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 2.733081817626953,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.030666431412100792,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 2.7412750720977783,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03041495569050312,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 2.7014739513397217,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.030178792774677277,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 2.708418130874634,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.030795138329267502,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 2.7649779319763184,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.031145716086030006,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 2.731771945953369,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.030269090086221695,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 2.743135452270508,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.031099146232008934,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 2.729976177215576,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.030792539939284325,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 2.7519168853759766,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.030581463128328323,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 2.7143120765686035,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.03056303784251213,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 2.747217893600464,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03082135319709778,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 2.73905611038208,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.030459454283118248,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 2.7251338958740234,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.031071403995156288,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 2.7557477951049805,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.030709929764270782,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 2.721416473388672,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.030339695513248444,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 2.749926805496216,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.030725281685590744,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 2.7278075218200684,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.03076869808137417,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 2.737576723098755,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.03086596541106701,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 2.7216379642486572,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.03075433149933815,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 2.772115707397461,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.030509356409311295,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 2.6987905502319336,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03068956546485424,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 2.709048271179199,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.030789071694016457,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 2.7498631477355957,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.030625686049461365,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 2.754007339477539,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.031108634546399117,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 2.7382864952087402,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.031294919550418854,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 2.7064387798309326,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.031157594174146652,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 2.718447208404541,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.03080083057284355,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 2.7023630142211914,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.030082032084465027,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 2.710141897201538,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.030887775123119354,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 2.7583160400390625,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.039367008954286575,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 2.7494239807128906,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 4.672783374786377,
+ "eval_runtime": 56.4582,
+ "eval_samples_per_second": 43.253,
+ "eval_steps_per_second": 1.364,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397379912664,
+ "grad_norm": 0.03121339902281761,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 2.695721387863159,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02794759825328,
+ "grad_norm": 0.03007887303829193,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 2.6967008113861084,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041921397379916,
+ "grad_norm": 0.030390124768018723,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 2.700073719024658,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05589519650655,
+ "grad_norm": 0.03141214698553085,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 2.708585500717163,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069868995633186,
+ "grad_norm": 0.030641483142971992,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 2.703624725341797,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083842794759825,
+ "grad_norm": 0.03031296469271183,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 2.666076421737671,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09781659388646,
+ "grad_norm": 0.03090117685496807,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 2.6997766494750977,
+ "step": 3247
+ },
+ {
+ "epoch": 45.1117903930131,
+ "grad_norm": 0.030277682468295097,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 2.67824649810791,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12576419213974,
+ "grad_norm": 0.029856469482183456,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 2.6859688758850098,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13973799126637,
+ "grad_norm": 0.030576622113585472,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 2.720244884490967,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15371179039301,
+ "grad_norm": 0.030533745884895325,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 2.683864116668701,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16768558951965,
+ "grad_norm": 0.03025984950363636,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 2.6925323009490967,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18165938864629,
+ "grad_norm": 0.030383598059415817,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 2.703411102294922,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19563318777293,
+ "grad_norm": 0.030620712786912918,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 2.7168655395507812,
+ "step": 3254
+ },
+ {
+ "epoch": 45.209606986899566,
+ "grad_norm": 0.030542252585291862,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 2.734499454498291,
+ "step": 3255
+ },
+ {
+ "epoch": 45.223580786026204,
+ "grad_norm": 0.030622195452451706,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 2.7596778869628906,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237554585152836,
+ "grad_norm": 0.030220093205571175,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 2.7037837505340576,
+ "step": 3257
+ },
+ {
+ "epoch": 45.251528384279474,
+ "grad_norm": 0.03062046878039837,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 2.6797125339508057,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26550218340611,
+ "grad_norm": 0.030457401648163795,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 2.7158713340759277,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27947598253275,
+ "grad_norm": 0.03014346957206726,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 2.68379545211792,
+ "step": 3260
+ },
+ {
+ "epoch": 45.29344978165939,
+ "grad_norm": 0.03018721379339695,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 2.738302230834961,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30742358078603,
+ "grad_norm": 0.03049435466527939,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 2.695387125015259,
+ "step": 3262
+ },
+ {
+ "epoch": 45.32139737991266,
+ "grad_norm": 0.030261099338531494,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 2.7209811210632324,
+ "step": 3263
+ },
+ {
+ "epoch": 45.3353711790393,
+ "grad_norm": 0.030874863266944885,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 2.7271978855133057,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34934497816594,
+ "grad_norm": 0.030714083462953568,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 2.7215359210968018,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36331877729258,
+ "grad_norm": 0.03059345856308937,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 2.745035171508789,
+ "step": 3266
+ },
+ {
+ "epoch": 45.377292576419215,
+ "grad_norm": 0.030038883909583092,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 2.743767023086548,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391266375545854,
+ "grad_norm": 0.031117530539631844,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 2.7027482986450195,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40524017467249,
+ "grad_norm": 0.030062058940529823,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 2.6897876262664795,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419213973799124,
+ "grad_norm": 0.030444515869021416,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 2.6883881092071533,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43318777292576,
+ "grad_norm": 0.03049866110086441,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 2.6957526206970215,
+ "step": 3271
+ },
+ {
+ "epoch": 45.4471615720524,
+ "grad_norm": 0.030044468119740486,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 2.7162795066833496,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46113537117904,
+ "grad_norm": 0.03025023825466633,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 2.7337069511413574,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47510917030568,
+ "grad_norm": 0.030269887298345566,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 2.7069835662841797,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48908296943232,
+ "grad_norm": 0.02981337159872055,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 2.701450824737549,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50305676855895,
+ "grad_norm": 0.03011847846210003,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 2.7088308334350586,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51703056768559,
+ "grad_norm": 0.030163759365677834,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 2.743638753890991,
+ "step": 3277
+ },
+ {
+ "epoch": 45.531004366812226,
+ "grad_norm": 0.02992214635014534,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 2.720752239227295,
+ "step": 3278
+ },
+ {
+ "epoch": 45.544978165938865,
+ "grad_norm": 0.030215341597795486,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 2.707686424255371,
+ "step": 3279
+ },
+ {
+ "epoch": 45.5589519650655,
+ "grad_norm": 0.03013812191784382,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 2.72668194770813,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57292576419214,
+ "grad_norm": 0.02992650493979454,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 2.7222609519958496,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58689956331878,
+ "grad_norm": 0.030125267803668976,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 2.7164907455444336,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60087336244541,
+ "grad_norm": 0.029859226197004318,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 2.7107815742492676,
+ "step": 3283
+ },
+ {
+ "epoch": 45.61484716157205,
+ "grad_norm": 0.030037682503461838,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 2.744706153869629,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62882096069869,
+ "grad_norm": 0.030045198276638985,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 2.7138242721557617,
+ "step": 3285
+ },
+ {
+ "epoch": 45.64279475982533,
+ "grad_norm": 0.03002268821001053,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 2.6946237087249756,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65676855895197,
+ "grad_norm": 0.029851816594600677,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 2.70735502243042,
+ "step": 3287
+ },
+ {
+ "epoch": 45.670742358078606,
+ "grad_norm": 0.029987821355462074,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 2.7376060485839844,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68471615720524,
+ "grad_norm": 0.029709115624427795,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 2.7303218841552734,
+ "step": 3289
+ },
+ {
+ "epoch": 45.698689956331876,
+ "grad_norm": 0.029756542295217514,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 2.7321949005126953,
+ "step": 3290
+ },
+ {
+ "epoch": 45.712663755458514,
+ "grad_norm": 0.03013347089290619,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 2.7430479526519775,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72663755458515,
+ "grad_norm": 0.0298486165702343,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 2.716432809829712,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74061135371179,
+ "grad_norm": 0.030205387622117996,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 2.7200074195861816,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75458515283843,
+ "grad_norm": 0.0300633255392313,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 2.726349353790283,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76855895196506,
+ "grad_norm": 0.029309527948498726,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 2.684202194213867,
+ "step": 3295
+ },
+ {
+ "epoch": 45.7825327510917,
+ "grad_norm": 0.03017377480864525,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 2.724987506866455,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79650655021834,
+ "grad_norm": 0.030097557231783867,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 2.691286563873291,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81048034934498,
+ "grad_norm": 0.029793206602334976,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 2.7268309593200684,
+ "step": 3298
+ },
+ {
+ "epoch": 45.82445414847162,
+ "grad_norm": 0.029918476939201355,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 2.7298831939697266,
+ "step": 3299
+ },
+ {
+ "epoch": 45.838427947598255,
+ "grad_norm": 0.030054405331611633,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 2.7032384872436523,
+ "step": 3300
+ },
+ {
+ "epoch": 45.852401746724894,
+ "grad_norm": 0.0300983227789402,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 2.732882261276245,
+ "step": 3301
+ },
+ {
+ "epoch": 45.866375545851525,
+ "grad_norm": 0.03008466400206089,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 2.741739511489868,
+ "step": 3302
+ },
+ {
+ "epoch": 45.880349344978164,
+ "grad_norm": 0.03039098158478737,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 2.707380771636963,
+ "step": 3303
+ },
+ {
+ "epoch": 45.8943231441048,
+ "grad_norm": 0.030802017077803612,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 2.7796432971954346,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90829694323144,
+ "grad_norm": 0.02988274395465851,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 2.709036350250244,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92227074235808,
+ "grad_norm": 0.02964550070464611,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 2.7289037704467773,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93624454148472,
+ "grad_norm": 0.03001422807574272,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 2.714503765106201,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95021834061135,
+ "grad_norm": 0.030089279636740685,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 2.7066762447357178,
+ "step": 3308
+ },
+ {
+ "epoch": 45.96419213973799,
+ "grad_norm": 0.030323611572384834,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 2.7784066200256348,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97816593886463,
+ "grad_norm": 0.030161548405885696,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 2.722024917602539,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992139737991266,
+ "grad_norm": 0.030073257163167,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 2.7222061157226562,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.039092399179935455,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 2.7272253036499023,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 4.690523147583008,
+ "eval_runtime": 56.2699,
+ "eval_samples_per_second": 43.398,
+ "eval_steps_per_second": 1.368,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397379912664,
+ "grad_norm": 0.02977227233350277,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 2.666165590286255,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02794759825328,
+ "grad_norm": 0.029423551633954048,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 2.703575611114502,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041921397379916,
+ "grad_norm": 0.02948828972876072,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 2.683201789855957,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05589519650655,
+ "grad_norm": 0.030201617628335953,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 2.704782724380493,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069868995633186,
+ "grad_norm": 0.03061441145837307,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 2.7080211639404297,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083842794759825,
+ "grad_norm": 0.02945823222398758,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 2.701735019683838,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09781659388646,
+ "grad_norm": 0.02986137568950653,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 2.6979432106018066,
+ "step": 3319
+ },
+ {
+ "epoch": 46.1117903930131,
+ "grad_norm": 0.02952863834798336,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 2.6875975131988525,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12576419213974,
+ "grad_norm": 0.029525186866521835,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 2.651641368865967,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13973799126637,
+ "grad_norm": 0.0300346277654171,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 2.73091983795166,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15371179039301,
+ "grad_norm": 0.029832322150468826,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 2.708127975463867,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16768558951965,
+ "grad_norm": 0.029952572658658028,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 2.6968636512756348,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18165938864629,
+ "grad_norm": 0.029948215931653976,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 2.6964778900146484,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19563318777293,
+ "grad_norm": 0.029759280383586884,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 2.67399525642395,
+ "step": 3326
+ },
+ {
+ "epoch": 46.209606986899566,
+ "grad_norm": 0.0294744111597538,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 2.700078010559082,
+ "step": 3327
+ },
+ {
+ "epoch": 46.223580786026204,
+ "grad_norm": 0.0296860933303833,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 2.714526891708374,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237554585152836,
+ "grad_norm": 0.029766269028186798,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 2.6930484771728516,
+ "step": 3329
+ },
+ {
+ "epoch": 46.251528384279474,
+ "grad_norm": 0.029673025012016296,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 2.693804979324341,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26550218340611,
+ "grad_norm": 0.0294746495783329,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 2.6696457862854004,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27947598253275,
+ "grad_norm": 0.029391536489129066,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 2.693734645843506,
+ "step": 3332
+ },
+ {
+ "epoch": 46.29344978165939,
+ "grad_norm": 0.029500585049390793,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 2.712386131286621,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30742358078603,
+ "grad_norm": 0.029598969966173172,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 2.673994779586792,
+ "step": 3334
+ },
+ {
+ "epoch": 46.32139737991266,
+ "grad_norm": 0.029756860807538033,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 2.7112057209014893,
+ "step": 3335
+ },
+ {
+ "epoch": 46.3353711790393,
+ "grad_norm": 0.02938690409064293,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 2.6699116230010986,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34934497816594,
+ "grad_norm": 0.02942667156457901,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 2.7117724418640137,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36331877729258,
+ "grad_norm": 0.029563553631305695,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 2.7152230739593506,
+ "step": 3338
+ },
+ {
+ "epoch": 46.377292576419215,
+ "grad_norm": 0.029616059735417366,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 2.7127323150634766,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391266375545854,
+ "grad_norm": 0.0295573640614748,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 2.712160587310791,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40524017467249,
+ "grad_norm": 0.029640117660164833,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 2.7074813842773438,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419213973799124,
+ "grad_norm": 0.029607564210891724,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 2.6955556869506836,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43318777292576,
+ "grad_norm": 0.029701320454478264,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 2.700089454650879,
+ "step": 3343
+ },
+ {
+ "epoch": 46.4471615720524,
+ "grad_norm": 0.029305437579751015,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 2.6738266944885254,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46113537117904,
+ "grad_norm": 0.029630376026034355,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 2.6976566314697266,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47510917030568,
+ "grad_norm": 0.030031926929950714,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 2.7012693881988525,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48908296943232,
+ "grad_norm": 0.029545899480581284,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 2.720386028289795,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50305676855895,
+ "grad_norm": 0.029486043378710747,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 2.6919093132019043,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51703056768559,
+ "grad_norm": 0.029677465558052063,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 2.714512348175049,
+ "step": 3349
+ },
+ {
+ "epoch": 46.531004366812226,
+ "grad_norm": 0.02976772002875805,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 2.699399471282959,
+ "step": 3350
+ },
+ {
+ "epoch": 46.544978165938865,
+ "grad_norm": 0.029727868735790253,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 2.6796231269836426,
+ "step": 3351
+ },
+ {
+ "epoch": 46.5589519650655,
+ "grad_norm": 0.029361581429839134,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 2.723130702972412,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57292576419214,
+ "grad_norm": 0.029209377244114876,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 2.6866884231567383,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58689956331878,
+ "grad_norm": 0.029438484460115433,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 2.7212467193603516,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60087336244541,
+ "grad_norm": 0.029799623414874077,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 2.7254977226257324,
+ "step": 3355
+ },
+ {
+ "epoch": 46.61484716157205,
+ "grad_norm": 0.02966463938355446,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 2.692837715148926,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62882096069869,
+ "grad_norm": 0.029435917735099792,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 2.71144437789917,
+ "step": 3357
+ },
+ {
+ "epoch": 46.64279475982533,
+ "grad_norm": 0.029445402324199677,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 2.704474449157715,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65676855895197,
+ "grad_norm": 0.029897822067141533,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 2.7146501541137695,
+ "step": 3359
+ },
+ {
+ "epoch": 46.670742358078606,
+ "grad_norm": 0.02983117289841175,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 2.6923089027404785,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68471615720524,
+ "grad_norm": 0.029536357149481773,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 2.691542625427246,
+ "step": 3361
+ },
+ {
+ "epoch": 46.698689956331876,
+ "grad_norm": 0.030073685571551323,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 2.716017723083496,
+ "step": 3362
+ },
+ {
+ "epoch": 46.712663755458514,
+ "grad_norm": 0.029754098504781723,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 2.745846748352051,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72663755458515,
+ "grad_norm": 0.029666855931282043,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 2.7081689834594727,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74061135371179,
+ "grad_norm": 0.02957395650446415,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 2.7299087047576904,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75458515283843,
+ "grad_norm": 0.02975006215274334,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 2.7208640575408936,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76855895196506,
+ "grad_norm": 0.030019618570804596,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 2.6937003135681152,
+ "step": 3367
+ },
+ {
+ "epoch": 46.7825327510917,
+ "grad_norm": 0.029811738058924675,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 2.7077858448028564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79650655021834,
+ "grad_norm": 0.029356686398386955,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 2.6958608627319336,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81048034934498,
+ "grad_norm": 0.030098900198936462,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 2.7138266563415527,
+ "step": 3370
+ },
+ {
+ "epoch": 46.82445414847162,
+ "grad_norm": 0.02984294854104519,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 2.709331750869751,
+ "step": 3371
+ },
+ {
+ "epoch": 46.838427947598255,
+ "grad_norm": 0.030011937022209167,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 2.7004995346069336,
+ "step": 3372
+ },
+ {
+ "epoch": 46.852401746724894,
+ "grad_norm": 0.029592441394925117,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 2.693936347961426,
+ "step": 3373
+ },
+ {
+ "epoch": 46.866375545851525,
+ "grad_norm": 0.0299440398812294,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 2.695557117462158,
+ "step": 3374
+ },
+ {
+ "epoch": 46.880349344978164,
+ "grad_norm": 0.029792217537760735,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 2.7176361083984375,
+ "step": 3375
+ },
+ {
+ "epoch": 46.8943231441048,
+ "grad_norm": 0.0296501312404871,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 2.723083019256592,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90829694323144,
+ "grad_norm": 0.029662206768989563,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 2.7146801948547363,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92227074235808,
+ "grad_norm": 0.029850319027900696,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 2.73811936378479,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93624454148472,
+ "grad_norm": 0.02941645123064518,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 2.712193012237549,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95021834061135,
+ "grad_norm": 0.02979850582778454,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 2.758450746536255,
+ "step": 3380
+ },
+ {
+ "epoch": 46.96419213973799,
+ "grad_norm": 0.02950097806751728,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 2.759809970855713,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97816593886463,
+ "grad_norm": 0.02961902506649494,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 2.6955885887145996,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992139737991266,
+ "grad_norm": 0.02948659099638462,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 2.7428767681121826,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.038300611078739166,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 2.7364625930786133,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 4.704062461853027,
+ "eval_runtime": 57.004,
+ "eval_samples_per_second": 42.839,
+ "eval_steps_per_second": 1.351,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397379912664,
+ "grad_norm": 0.02948535606265068,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 2.6697189807891846,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02794759825328,
+ "grad_norm": 0.029040472581982613,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 2.672049045562744,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041921397379916,
+ "grad_norm": 0.028800783678889275,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 2.679978132247925,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05589519650655,
+ "grad_norm": 0.029078565537929535,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 2.67055082321167,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069868995633186,
+ "grad_norm": 0.029621262103319168,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 2.705810785293579,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083842794759825,
+ "grad_norm": 0.02934262529015541,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 2.685251235961914,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09781659388646,
+ "grad_norm": 0.029448553919792175,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 2.7106966972351074,
+ "step": 3391
+ },
+ {
+ "epoch": 47.1117903930131,
+ "grad_norm": 0.02907189168035984,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 2.684588670730591,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12576419213974,
+ "grad_norm": 0.029136070981621742,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 2.6712934970855713,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13973799126637,
+ "grad_norm": 0.029477497562766075,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 2.701383113861084,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15371179039301,
+ "grad_norm": 0.029362378641963005,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 2.7102549076080322,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16768558951965,
+ "grad_norm": 0.02919241413474083,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 2.679081916809082,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18165938864629,
+ "grad_norm": 0.029038911685347557,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 2.7141544818878174,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19563318777293,
+ "grad_norm": 0.029590114951133728,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 2.6912012100219727,
+ "step": 3398
+ },
+ {
+ "epoch": 47.209606986899566,
+ "grad_norm": 0.02977665327489376,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 2.6930532455444336,
+ "step": 3399
+ },
+ {
+ "epoch": 47.223580786026204,
+ "grad_norm": 0.029177051037549973,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 2.7046380043029785,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237554585152836,
+ "grad_norm": 0.029413346201181412,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 2.7218821048736572,
+ "step": 3401
+ },
+ {
+ "epoch": 47.251528384279474,
+ "grad_norm": 0.029412033036351204,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 2.7081127166748047,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26550218340611,
+ "grad_norm": 0.02971121110022068,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 2.689289093017578,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27947598253275,
+ "grad_norm": 0.028984062373638153,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 2.693742275238037,
+ "step": 3404
+ },
+ {
+ "epoch": 47.29344978165939,
+ "grad_norm": 0.029603127390146255,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 2.700174331665039,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30742358078603,
+ "grad_norm": 0.02948378399014473,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 2.6822633743286133,
+ "step": 3406
+ },
+ {
+ "epoch": 47.32139737991266,
+ "grad_norm": 0.029481081292033195,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 2.6908187866210938,
+ "step": 3407
+ },
+ {
+ "epoch": 47.3353711790393,
+ "grad_norm": 0.029488569125533104,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 2.6864452362060547,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34934497816594,
+ "grad_norm": 0.02922879531979561,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 2.710583209991455,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36331877729258,
+ "grad_norm": 0.029259832575917244,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 2.684490203857422,
+ "step": 3410
+ },
+ {
+ "epoch": 47.377292576419215,
+ "grad_norm": 0.029385490342974663,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 2.6965785026550293,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391266375545854,
+ "grad_norm": 0.029207000508904457,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 2.7038254737854004,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40524017467249,
+ "grad_norm": 0.028680339455604553,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 2.6811161041259766,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419213973799124,
+ "grad_norm": 0.029218515381217003,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 2.737346649169922,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43318777292576,
+ "grad_norm": 0.02945815958082676,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 2.715803623199463,
+ "step": 3415
+ },
+ {
+ "epoch": 47.4471615720524,
+ "grad_norm": 0.029093516990542412,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 2.7119383811950684,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46113537117904,
+ "grad_norm": 0.029424559324979782,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 2.6983790397644043,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47510917030568,
+ "grad_norm": 0.02928711287677288,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 2.6720566749572754,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48908296943232,
+ "grad_norm": 0.029276058077812195,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 2.6839070320129395,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50305676855895,
+ "grad_norm": 0.028919551521539688,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 2.6943511962890625,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51703056768559,
+ "grad_norm": 0.029095228761434555,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 2.6568963527679443,
+ "step": 3421
+ },
+ {
+ "epoch": 47.531004366812226,
+ "grad_norm": 0.02945675700902939,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 2.7232818603515625,
+ "step": 3422
+ },
+ {
+ "epoch": 47.544978165938865,
+ "grad_norm": 0.02932729572057724,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 2.7395825386047363,
+ "step": 3423
+ },
+ {
+ "epoch": 47.5589519650655,
+ "grad_norm": 0.02902030758559704,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 2.707866907119751,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57292576419214,
+ "grad_norm": 0.029326369985938072,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 2.7125473022460938,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58689956331878,
+ "grad_norm": 0.029392309486865997,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 2.714390277862549,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60087336244541,
+ "grad_norm": 0.02921556495130062,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 2.7114500999450684,
+ "step": 3427
+ },
+ {
+ "epoch": 47.61484716157205,
+ "grad_norm": 0.029071055352687836,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 2.715576648712158,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62882096069869,
+ "grad_norm": 0.029343361034989357,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 2.6993460655212402,
+ "step": 3429
+ },
+ {
+ "epoch": 47.64279475982533,
+ "grad_norm": 0.029446683824062347,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 2.714357852935791,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65676855895197,
+ "grad_norm": 0.02923998236656189,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 2.7123334407806396,
+ "step": 3431
+ },
+ {
+ "epoch": 47.670742358078606,
+ "grad_norm": 0.0289139561355114,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 2.673900604248047,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68471615720524,
+ "grad_norm": 0.029311420395970345,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 2.6930952072143555,
+ "step": 3433
+ },
+ {
+ "epoch": 47.698689956331876,
+ "grad_norm": 0.029650095850229263,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 2.711275100708008,
+ "step": 3434
+ },
+ {
+ "epoch": 47.712663755458514,
+ "grad_norm": 0.029591921716928482,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 2.696511745452881,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72663755458515,
+ "grad_norm": 0.029205845668911934,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 2.6952948570251465,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74061135371179,
+ "grad_norm": 0.029247714206576347,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 2.6723623275756836,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75458515283843,
+ "grad_norm": 0.029058989137411118,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 2.6659984588623047,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76855895196506,
+ "grad_norm": 0.02911272831261158,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 2.697719097137451,
+ "step": 3439
+ },
+ {
+ "epoch": 47.7825327510917,
+ "grad_norm": 0.029062405228614807,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 2.686225652694702,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79650655021834,
+ "grad_norm": 0.02898796647787094,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 2.6834046840667725,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81048034934498,
+ "grad_norm": 0.029112616553902626,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 2.6908154487609863,
+ "step": 3442
+ },
+ {
+ "epoch": 47.82445414847162,
+ "grad_norm": 0.02870102785527706,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 2.6897130012512207,
+ "step": 3443
+ },
+ {
+ "epoch": 47.838427947598255,
+ "grad_norm": 0.02922901138663292,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 2.714108943939209,
+ "step": 3444
+ },
+ {
+ "epoch": 47.852401746724894,
+ "grad_norm": 0.02945016510784626,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 2.7132515907287598,
+ "step": 3445
+ },
+ {
+ "epoch": 47.866375545851525,
+ "grad_norm": 0.029169796034693718,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 2.707731246948242,
+ "step": 3446
+ },
+ {
+ "epoch": 47.880349344978164,
+ "grad_norm": 0.029197875410318375,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 2.7022597789764404,
+ "step": 3447
+ },
+ {
+ "epoch": 47.8943231441048,
+ "grad_norm": 0.029044341295957565,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 2.6715545654296875,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90829694323144,
+ "grad_norm": 0.029276235029101372,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 2.720996856689453,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92227074235808,
+ "grad_norm": 0.029028017073869705,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 2.68961238861084,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93624454148472,
+ "grad_norm": 0.029182827100157738,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 2.6928493976593018,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95021834061135,
+ "grad_norm": 0.02933787740767002,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 2.714722156524658,
+ "step": 3452
+ },
+ {
+ "epoch": 47.96419213973799,
+ "grad_norm": 0.029206400737166405,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 2.725179433822632,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97816593886463,
+ "grad_norm": 0.029380252584815025,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 2.675166606903076,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992139737991266,
+ "grad_norm": 0.029519718140363693,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 2.711859941482544,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.0379948727786541,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 2.7073445320129395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 4.7157182693481445,
+ "eval_runtime": 56.7424,
+ "eval_samples_per_second": 43.037,
+ "eval_steps_per_second": 1.357,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397379912664,
+ "grad_norm": 0.028399785980582237,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 2.6326241493225098,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02794759825328,
+ "grad_norm": 0.028703832998871803,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 2.6860108375549316,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041921397379916,
+ "grad_norm": 0.029073547571897507,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 2.6949195861816406,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05589519650655,
+ "grad_norm": 0.029133491218090057,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 2.703305721282959,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069868995633186,
+ "grad_norm": 0.02873835153877735,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 2.703850269317627,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083842794759825,
+ "grad_norm": 0.029016882181167603,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 2.6737303733825684,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09781659388646,
+ "grad_norm": 0.028826992958784103,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 2.674872875213623,
+ "step": 3463
+ },
+ {
+ "epoch": 48.1117903930131,
+ "grad_norm": 0.02890416607260704,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 2.6696853637695312,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12576419213974,
+ "grad_norm": 0.028834465891122818,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 2.68613862991333,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13973799126637,
+ "grad_norm": 0.029019195586442947,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 2.723546028137207,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15371179039301,
+ "grad_norm": 0.028950629755854607,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 2.6940197944641113,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16768558951965,
+ "grad_norm": 0.028925269842147827,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 2.70632266998291,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18165938864629,
+ "grad_norm": 0.029217874631285667,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 2.6949350833892822,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19563318777293,
+ "grad_norm": 0.029041508212685585,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 2.7236475944519043,
+ "step": 3470
+ },
+ {
+ "epoch": 48.209606986899566,
+ "grad_norm": 0.029102129861712456,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 2.688462495803833,
+ "step": 3471
+ },
+ {
+ "epoch": 48.223580786026204,
+ "grad_norm": 0.029029566794633865,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 2.7147531509399414,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237554585152836,
+ "grad_norm": 0.029467174783349037,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 2.7085914611816406,
+ "step": 3473
+ },
+ {
+ "epoch": 48.251528384279474,
+ "grad_norm": 0.028706204146146774,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 2.6808018684387207,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26550218340611,
+ "grad_norm": 0.028934527188539505,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 2.680325984954834,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27947598253275,
+ "grad_norm": 0.028934858739376068,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 2.7092955112457275,
+ "step": 3476
+ },
+ {
+ "epoch": 48.29344978165939,
+ "grad_norm": 0.028838135302066803,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 2.6929752826690674,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30742358078603,
+ "grad_norm": 0.02859792299568653,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 2.6796987056732178,
+ "step": 3478
+ },
+ {
+ "epoch": 48.32139737991266,
+ "grad_norm": 0.028754238039255142,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 2.6610891819000244,
+ "step": 3479
+ },
+ {
+ "epoch": 48.3353711790393,
+ "grad_norm": 0.028972558677196503,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 2.6810083389282227,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34934497816594,
+ "grad_norm": 0.029027530923485756,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 2.681730270385742,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36331877729258,
+ "grad_norm": 0.028917944058775902,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 2.663813829421997,
+ "step": 3482
+ },
+ {
+ "epoch": 48.377292576419215,
+ "grad_norm": 0.028561362996697426,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 2.6488466262817383,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391266375545854,
+ "grad_norm": 0.029001012444496155,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 2.6486518383026123,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40524017467249,
+ "grad_norm": 0.02919728308916092,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 2.706660270690918,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419213973799124,
+ "grad_norm": 0.028659304603934288,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 2.708829879760742,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43318777292576,
+ "grad_norm": 0.028653401881456375,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 2.6900107860565186,
+ "step": 3487
+ },
+ {
+ "epoch": 48.4471615720524,
+ "grad_norm": 0.028907833620905876,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 2.689260959625244,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46113537117904,
+ "grad_norm": 0.02933928370475769,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 2.694216251373291,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47510917030568,
+ "grad_norm": 0.028963541612029076,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 2.6991653442382812,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48908296943232,
+ "grad_norm": 0.028675256296992302,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 2.655954599380493,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50305676855895,
+ "grad_norm": 0.02877618558704853,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 2.7296652793884277,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51703056768559,
+ "grad_norm": 0.029142364859580994,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 2.7213540077209473,
+ "step": 3493
+ },
+ {
+ "epoch": 48.531004366812226,
+ "grad_norm": 0.028855957090854645,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 2.6714015007019043,
+ "step": 3494
+ },
+ {
+ "epoch": 48.544978165938865,
+ "grad_norm": 0.028963008895516396,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 2.7168283462524414,
+ "step": 3495
+ },
+ {
+ "epoch": 48.5589519650655,
+ "grad_norm": 0.029076462611556053,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 2.692319869995117,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57292576419214,
+ "grad_norm": 0.02894405461847782,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 2.7064852714538574,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58689956331878,
+ "grad_norm": 0.02886543609201908,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 2.6851015090942383,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60087336244541,
+ "grad_norm": 0.02887367643415928,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 2.6493563652038574,
+ "step": 3499
+ },
+ {
+ "epoch": 48.61484716157205,
+ "grad_norm": 0.028871862217783928,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 2.674808979034424,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62882096069869,
+ "grad_norm": 0.028945861384272575,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 2.6570582389831543,
+ "step": 3501
+ },
+ {
+ "epoch": 48.64279475982533,
+ "grad_norm": 0.02897925302386284,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 2.728266716003418,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65676855895197,
+ "grad_norm": 0.028966007754206657,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 2.677445411682129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.670742358078606,
+ "grad_norm": 0.028917523100972176,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 2.7045655250549316,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68471615720524,
+ "grad_norm": 0.02895013988018036,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 2.6943867206573486,
+ "step": 3505
+ },
+ {
+ "epoch": 48.698689956331876,
+ "grad_norm": 0.029035190120339394,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 2.695784330368042,
+ "step": 3506
+ },
+ {
+ "epoch": 48.712663755458514,
+ "grad_norm": 0.02896309643983841,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 2.6921744346618652,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72663755458515,
+ "grad_norm": 0.02878146804869175,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 2.706491470336914,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74061135371179,
+ "grad_norm": 0.029011188074946404,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 2.7233529090881348,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75458515283843,
+ "grad_norm": 0.029120108112692833,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 2.7203731536865234,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76855895196506,
+ "grad_norm": 0.028738558292388916,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 2.68076753616333,
+ "step": 3511
+ },
+ {
+ "epoch": 48.7825327510917,
+ "grad_norm": 0.028690986335277557,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 2.6696062088012695,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79650655021834,
+ "grad_norm": 0.0289732925593853,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 2.6993908882141113,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81048034934498,
+ "grad_norm": 0.028958367183804512,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 2.7064661979675293,
+ "step": 3514
+ },
+ {
+ "epoch": 48.82445414847162,
+ "grad_norm": 0.02892228029668331,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 2.69020938873291,
+ "step": 3515
+ },
+ {
+ "epoch": 48.838427947598255,
+ "grad_norm": 0.028908373787999153,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 2.7160887718200684,
+ "step": 3516
+ },
+ {
+ "epoch": 48.852401746724894,
+ "grad_norm": 0.028965691104531288,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 2.7160191535949707,
+ "step": 3517
+ },
+ {
+ "epoch": 48.866375545851525,
+ "grad_norm": 0.02873348817229271,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 2.6896045207977295,
+ "step": 3518
+ },
+ {
+ "epoch": 48.880349344978164,
+ "grad_norm": 0.02881632186472416,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 2.6941750049591064,
+ "step": 3519
+ },
+ {
+ "epoch": 48.8943231441048,
+ "grad_norm": 0.02906230464577675,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 2.668043851852417,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90829694323144,
+ "grad_norm": 0.02913038246333599,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 2.726792335510254,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92227074235808,
+ "grad_norm": 0.02884376235306263,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 2.6916184425354004,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93624454148472,
+ "grad_norm": 0.029047545045614243,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 2.6843204498291016,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95021834061135,
+ "grad_norm": 0.028718410059809685,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 2.6753625869750977,
+ "step": 3524
+ },
+ {
+ "epoch": 48.96419213973799,
+ "grad_norm": 0.0287738349288702,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 2.6959047317504883,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97816593886463,
+ "grad_norm": 0.029052242636680603,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 2.69156551361084,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992139737991266,
+ "grad_norm": 0.02885941043496132,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 2.675367832183838,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.03798742592334747,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 2.697859764099121,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 4.723073959350586,
+ "eval_runtime": 57.0711,
+ "eval_samples_per_second": 42.789,
+ "eval_steps_per_second": 1.349,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397379912664,
+ "grad_norm": 0.028861727565526962,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 2.697840929031372,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02794759825328,
+ "grad_norm": 0.028563573956489563,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 2.6648597717285156,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041921397379916,
+ "grad_norm": 0.02856377884745598,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 2.7003798484802246,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05589519650655,
+ "grad_norm": 0.028494233265519142,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 2.68088960647583,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069868995633186,
+ "grad_norm": 0.02868560701608658,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 2.7012579441070557,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083842794759825,
+ "grad_norm": 0.028838444501161575,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 2.685722827911377,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09781659388646,
+ "grad_norm": 0.028336046263575554,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 2.67991304397583,
+ "step": 3535
+ },
+ {
+ "epoch": 49.1117903930131,
+ "grad_norm": 0.02891390398144722,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 2.697277069091797,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12576419213974,
+ "grad_norm": 0.02899148315191269,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 2.7042107582092285,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13973799126637,
+ "grad_norm": 0.02849668636918068,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 2.6893656253814697,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15371179039301,
+ "grad_norm": 0.0287025086581707,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 2.7020163536071777,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16768558951965,
+ "grad_norm": 0.02855336107313633,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 2.657525062561035,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18165938864629,
+ "grad_norm": 0.02882380783557892,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 2.6597421169281006,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19563318777293,
+ "grad_norm": 0.02873956970870495,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 2.7068991661071777,
+ "step": 3542
+ },
+ {
+ "epoch": 49.209606986899566,
+ "grad_norm": 0.029280824586749077,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 2.7055423259735107,
+ "step": 3543
+ },
+ {
+ "epoch": 49.223580786026204,
+ "grad_norm": 0.0285833440721035,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 2.694809675216675,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237554585152836,
+ "grad_norm": 0.028631163761019707,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 2.6739370822906494,
+ "step": 3545
+ },
+ {
+ "epoch": 49.251528384279474,
+ "grad_norm": 0.0286440197378397,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 2.67933988571167,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26550218340611,
+ "grad_norm": 0.028623685240745544,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 2.699056625366211,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27947598253275,
+ "grad_norm": 0.0287085622549057,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 2.679306983947754,
+ "step": 3548
+ },
+ {
+ "epoch": 49.29344978165939,
+ "grad_norm": 0.02884216606616974,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 2.679819345474243,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30742358078603,
+ "grad_norm": 0.028636733070015907,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 2.6728734970092773,
+ "step": 3550
+ },
+ {
+ "epoch": 49.32139737991266,
+ "grad_norm": 0.02860157936811447,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 2.658294439315796,
+ "step": 3551
+ },
+ {
+ "epoch": 49.3353711790393,
+ "grad_norm": 0.028707826510071754,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 2.6643166542053223,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34934497816594,
+ "grad_norm": 0.028743430972099304,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 2.6736879348754883,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36331877729258,
+ "grad_norm": 0.02863624133169651,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 2.6785244941711426,
+ "step": 3554
+ },
+ {
+ "epoch": 49.377292576419215,
+ "grad_norm": 0.028452038764953613,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 2.6661925315856934,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391266375545854,
+ "grad_norm": 0.028843043372035027,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 2.7043795585632324,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40524017467249,
+ "grad_norm": 0.028968360275030136,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 2.7257041931152344,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419213973799124,
+ "grad_norm": 0.028575871139764786,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 2.649977207183838,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43318777292576,
+ "grad_norm": 0.028767623007297516,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 2.694122076034546,
+ "step": 3559
+ },
+ {
+ "epoch": 49.4471615720524,
+ "grad_norm": 0.028660466894507408,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 2.691086530685425,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46113537117904,
+ "grad_norm": 0.028903251513838768,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 2.695719003677368,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47510917030568,
+ "grad_norm": 0.028949933126568794,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 2.6880290508270264,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48908296943232,
+ "grad_norm": 0.028700068593025208,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 2.6585071086883545,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50305676855895,
+ "grad_norm": 0.028925064951181412,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 2.699838161468506,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51703056768559,
+ "grad_norm": 0.02877260372042656,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 2.6603827476501465,
+ "step": 3565
+ },
+ {
+ "epoch": 49.531004366812226,
+ "grad_norm": 0.02889588475227356,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 2.6968319416046143,
+ "step": 3566
+ },
+ {
+ "epoch": 49.544978165938865,
+ "grad_norm": 0.028690209612250328,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 2.6829376220703125,
+ "step": 3567
+ },
+ {
+ "epoch": 49.5589519650655,
+ "grad_norm": 0.028731634840369225,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 2.6899232864379883,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57292576419214,
+ "grad_norm": 0.02870480902493,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 2.677396535873413,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58689956331878,
+ "grad_norm": 0.028742175549268723,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 2.656550407409668,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60087336244541,
+ "grad_norm": 0.02867046743631363,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 2.6763229370117188,
+ "step": 3571
+ },
+ {
+ "epoch": 49.61484716157205,
+ "grad_norm": 0.02863277494907379,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 2.7151691913604736,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62882096069869,
+ "grad_norm": 0.028526797890663147,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 2.6758933067321777,
+ "step": 3573
+ },
+ {
+ "epoch": 49.64279475982533,
+ "grad_norm": 0.028894688934087753,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 2.676497220993042,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65676855895197,
+ "grad_norm": 0.02914990670979023,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 2.6799588203430176,
+ "step": 3575
+ },
+ {
+ "epoch": 49.670742358078606,
+ "grad_norm": 0.02885585092008114,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 2.7050347328186035,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68471615720524,
+ "grad_norm": 0.028923412784934044,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 2.6787631511688232,
+ "step": 3577
+ },
+ {
+ "epoch": 49.698689956331876,
+ "grad_norm": 0.028883814811706543,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 2.69866943359375,
+ "step": 3578
+ },
+ {
+ "epoch": 49.712663755458514,
+ "grad_norm": 0.029004443436861038,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 2.6974992752075195,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72663755458515,
+ "grad_norm": 0.028923943638801575,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 2.7052881717681885,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74061135371179,
+ "grad_norm": 0.029057597741484642,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 2.7099761962890625,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75458515283843,
+ "grad_norm": 0.028637412935495377,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 2.668548107147217,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76855895196506,
+ "grad_norm": 0.02879095822572708,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 2.680701732635498,
+ "step": 3583
+ },
+ {
+ "epoch": 49.7825327510917,
+ "grad_norm": 0.0286074411123991,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 2.670041799545288,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79650655021834,
+ "grad_norm": 0.028956744819879532,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 2.719585657119751,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81048034934498,
+ "grad_norm": 0.029006116092205048,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 2.7075507640838623,
+ "step": 3586
+ },
+ {
+ "epoch": 49.82445414847162,
+ "grad_norm": 0.028835568577051163,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 2.6613879203796387,
+ "step": 3587
+ },
+ {
+ "epoch": 49.838427947598255,
+ "grad_norm": 0.028693044558167458,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 2.7032716274261475,
+ "step": 3588
+ },
+ {
+ "epoch": 49.852401746724894,
+ "grad_norm": 0.029162991791963577,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 2.7293691635131836,
+ "step": 3589
+ },
+ {
+ "epoch": 49.866375545851525,
+ "grad_norm": 0.028709864243865013,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 2.706416606903076,
+ "step": 3590
+ },
+ {
+ "epoch": 49.880349344978164,
+ "grad_norm": 0.028917444869875908,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 2.7226650714874268,
+ "step": 3591
+ },
+ {
+ "epoch": 49.8943231441048,
+ "grad_norm": 0.028877682983875275,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 2.688647508621216,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90829694323144,
+ "grad_norm": 0.028934404253959656,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 2.6688904762268066,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92227074235808,
+ "grad_norm": 0.028848186135292053,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 2.702721118927002,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93624454148472,
+ "grad_norm": 0.02883368916809559,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 2.692359685897827,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95021834061135,
+ "grad_norm": 0.028756333515048027,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 2.697359085083008,
+ "step": 3596
+ },
+ {
+ "epoch": 49.96419213973799,
+ "grad_norm": 0.028945717960596085,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 2.6841366291046143,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97816593886463,
+ "grad_norm": 0.029207611456513405,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 2.6881966590881348,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992139737991266,
+ "grad_norm": 0.02916429191827774,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 2.676997661590576,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.037957075983285904,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 2.7095985412597656,
+ "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.534806680666112e+18,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-3600/training_args.bin b/runs/l2r10-baseline/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-72/chat_template.jinja b/runs/l2r10-baseline/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-72/config.json b/runs/l2r10-baseline/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-72/generation_config.json b/runs/l2r10-baseline/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-72/model.safetensors b/runs/l2r10-baseline/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e418fc530333121d158c6befc262a1596e619139
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d3083543b24747ef32cb622c6f317cefc508bfc54b1457fe1a79d92011d2682d
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-72/optimizer.pt b/runs/l2r10-baseline/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..36524891869bce9ed7a0d09eb2d555a2c67b6647
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7f0953936b583c3e170a715bfcdfc5b392f8872588a3d4964de3286a8339eba2
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-72/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5631561581b3634362004f6c036145ee8e54d0f4
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b184f8fc9facd6e4a6513602952b43b9446784300c3ea2da72aefb029f93aac1
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-72/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5c9399d17854873e90933eddfa9944d5e3d0b38f
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:937f07b3f415f537fbc809c70f15f64b8410cd6a07adbe7d246f5ca7359b3b49
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-72/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-72/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..8a986c37b53237a7bde101804a5602d204f737ba
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:07e3f7eacec877950b3dad99b106bf80da30203dda6159b06f954c15b7f5d367
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-72/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-72/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3ec45d94b0661de4e43586eec83b2caf40c79a8e
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2a5087a11a5f0a226f1607ec68740ea6baa2599559138de38da40f89dd666683
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-72/scheduler.pt b/runs/l2r10-baseline/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..43cf114590f1088fd438450226c42885d843da41
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:878ec53f5c2a524fc37af578b94a9025923faefea55f621be8e5643a79915d0f
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-72/tokenizer.json b/runs/l2r10-baseline/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-72/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-72/trainer_state.json b/runs/l2r10-baseline/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..0259cffc7ce62fb22b44816caf3e0721b78941ff
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "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.069613361332224e+16,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-72/training_args.bin b/runs/l2r10-baseline/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856
diff --git a/runs/l2r10-baseline/checkpoint-720/chat_template.jinja b/runs/l2r10-baseline/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-720/config.json b/runs/l2r10-baseline/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-720/generation_config.json b/runs/l2r10-baseline/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-720/model.safetensors b/runs/l2r10-baseline/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e20d4f2a45c86b7a778e1507f660f54c17ea7948
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:05dc5fb3f43c16bc60c54e9c93b554ab9eff06ef489f5e481b8983f6fa80d8b9
+size 583356232
diff --git a/runs/l2r10-baseline/checkpoint-720/optimizer.pt b/runs/l2r10-baseline/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..be03a6583d935de37be242809c89543a20ba48e6
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c267825ae70f43674dd08dc24a7a78c6e79a769130dd1d8bb7f0063bff7b68ca
+size 1166825338
diff --git a/runs/l2r10-baseline/checkpoint-720/rng_state_0.pth b/runs/l2r10-baseline/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0977c0bf00c01a46d716db730a3c9bcc82905aaf
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a02d728a763af949adfec4bf1d121e1daf1ef655fd3b17a42c2399e0221768dd
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-720/rng_state_1.pth b/runs/l2r10-baseline/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..4e5cd4f14d76f3fe2c0762093e6bb01d818def44
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d60087aa7d44f5751e6a709354a90b705404a21a9437680f20377cf12743341b
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-720/rng_state_2.pth b/runs/l2r10-baseline/checkpoint-720/rng_state_2.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1dbfc9354146f87ee95d6d46bdc97b42ae7b6f65
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/rng_state_2.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c962bfcedafeb4fe574f63e648405b9b28a01333d49c391529b2c7a4fead463
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-720/rng_state_3.pth b/runs/l2r10-baseline/checkpoint-720/rng_state_3.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0a96d4dec11fa27b14ffd309db2393d72f178feb
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/rng_state_3.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:478ec022631f64178ab44a8355b560b75c942f4cf348cc636a8cb37ec3bec6cc
+size 15024
diff --git a/runs/l2r10-baseline/checkpoint-720/scheduler.pt b/runs/l2r10-baseline/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..53133f8d1ca0990636972b84579aec1212febb2a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea248f5cdc3b9f2d6793617acdaa11d93bab34c0a87ea94ea6aaabc148225da6
+size 1064
diff --git a/runs/l2r10-baseline/checkpoint-720/tokenizer.json b/runs/l2r10-baseline/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-720/tokenizer_config.json b/runs/l2r10-baseline/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/l2r10-baseline/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/l2r10-baseline/checkpoint-720/trainer_state.json b/runs/l2r10-baseline/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5798d4da3fb5f4c9b93031ba2bbdea6d1ed9c36d
--- /dev/null
+++ b/runs/l2r10-baseline/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.013973799126637555,
+ "grad_norm": 0.16939280927181244,
+ "learning_rate": 0.0,
+ "loss": 12.014293670654297,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.1689794808626175,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.011884689331055,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.17057856917381287,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.971100807189941,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.1635846644639969,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.889028549194336,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14945648610591888,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.790000915527344,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.14080868661403656,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.675863265991211,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.13115181028842926,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.564214706420898,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.11957838386297226,
+ "learning_rate": 4.2e-05,
+ "loss": 11.47226333618164,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11370602250099182,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.385078430175781,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.11084301769733429,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.308448791503906,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10820021480321884,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.249441146850586,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10767664760351181,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.196192741394043,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10682950913906097,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.149166107177734,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.1061958596110344,
+ "learning_rate": 7.8e-05,
+ "loss": 11.10533332824707,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10613254457712173,
+ "learning_rate": 8.4e-05,
+ "loss": 11.05894660949707,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10601025819778442,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.00792121887207,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10643810033798218,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.94999885559082,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10584263503551483,
+ "learning_rate": 0.000102,
+ "loss": 10.892518997192383,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10593365132808685,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.82381534576416,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10611860454082489,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.754169464111328,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10455004870891571,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.687955856323242,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10475102066993713,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.602567672729492,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10508202761411667,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.522037506103516,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.10464787483215332,
+ "learning_rate": 0.000138,
+ "loss": 10.435646057128906,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.10429824888706207,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.347254753112793,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.1052173301577568,
+ "learning_rate": 0.00015,
+ "loss": 10.248311996459961,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10353758186101913,
+ "learning_rate": 0.000156,
+ "loss": 10.1670560836792,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10544759035110474,
+ "learning_rate": 0.000162,
+ "loss": 10.056628227233887,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10363110154867172,
+ "learning_rate": 0.000168,
+ "loss": 9.971037864685059,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.1041565015912056,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.85534954071045,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10288733243942261,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.768380165100098,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10279753804206848,
+ "learning_rate": 0.000186,
+ "loss": 9.660215377807617,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10199664533138275,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.549317359924316,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10209082067012787,
+ "learning_rate": 0.000198,
+ "loss": 9.44286060333252,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.09975459426641464,
+ "learning_rate": 0.000204,
+ "loss": 9.354618072509766,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09911829978227615,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.237918853759766,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.09908150881528854,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.125675201416016,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.09829899668693542,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 9.020368576049805,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09817089140415192,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.911052703857422,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09597740322351456,
+ "learning_rate": 0.000234,
+ "loss": 8.825894355773926,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09402810782194138,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.731557846069336,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.09326355904340744,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.626323699951172,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.09196856617927551,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.515364646911621,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.09280195087194443,
+ "learning_rate": 0.000258,
+ "loss": 8.45710563659668,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.09051582217216492,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.368074417114258,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.08710423856973648,
+ "learning_rate": 0.00027,
+ "loss": 8.273736953735352,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07760550826787949,
+ "learning_rate": 0.000276,
+ "loss": 8.167853355407715,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07523223012685776,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.079591751098633,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06945621967315674,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.018312454223633,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0642472505569458,
+ "learning_rate": 0.000294,
+ "loss": 7.954980850219727,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.057725660502910614,
+ "learning_rate": 0.0003,
+ "loss": 7.910121917724609,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.051784075796604156,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.862764358520508,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.04727954417467117,
+ "learning_rate": 0.000312,
+ "loss": 7.796990394592285,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.04044721648097038,
+ "learning_rate": 0.000318,
+ "loss": 7.778268814086914,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.035945117473602295,
+ "learning_rate": 0.000324,
+ "loss": 7.738887310028076,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.029356349259614944,
+ "learning_rate": 0.00033,
+ "loss": 7.705080509185791,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.025182845070958138,
+ "learning_rate": 0.000336,
+ "loss": 7.70461368560791,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022148484364151955,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.682494640350342,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.019383767619729042,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.659065246582031,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.020497111603617668,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.652453422546387,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.017548775300383568,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.614285945892334,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.01506449468433857,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.632669448852539,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.019905347377061844,
+ "learning_rate": 0.000372,
+ "loss": 7.623589038848877,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.01602909155189991,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.605233192443848,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.016232438385486603,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.617011547088623,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.018799472600221634,
+ "learning_rate": 0.00039,
+ "loss": 7.606324672698975,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.013583578169345856,
+ "learning_rate": 0.000396,
+ "loss": 7.588067054748535,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.013544822111725807,
+ "learning_rate": 0.000402,
+ "loss": 7.559695243835449,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.019777188077569008,
+ "learning_rate": 0.000408,
+ "loss": 7.563127517700195,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.047450434416532516,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.542616844177246,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.09029629826545715,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.593542575836182,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.05660276859998703,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.573848724365234,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.56652307510376,
+ "eval_runtime": 57.6244,
+ "eval_samples_per_second": 42.378,
+ "eval_steps_per_second": 1.336,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.0332195870578289,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.54709005355835,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.027711283415555954,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.553095817565918,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.019791916012763977,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.512618064880371,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.030353831127285957,
+ "learning_rate": 0.00045,
+ "loss": 7.527751445770264,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.05391010642051697,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.500336647033691,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.06111494451761246,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.492385387420654,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.024051956832408905,
+ "learning_rate": 0.000468,
+ "loss": 7.513902187347412,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.054153941571712494,
+ "learning_rate": 0.000474,
+ "loss": 7.507436275482178,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.042623452842235565,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.494444847106934,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.032563984394073486,
+ "learning_rate": 0.000486,
+ "loss": 7.463954925537109,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.044906239956617355,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.450617790222168,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.024598168209195137,
+ "learning_rate": 0.000498,
+ "loss": 7.40939998626709,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.06177826598286629,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.412616729736328,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.030745405703783035,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.403825759887695,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.041674401611089706,
+ "learning_rate": 0.000516,
+ "loss": 7.399560451507568,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.08235874027013779,
+ "learning_rate": 0.000522,
+ "loss": 7.425554275512695,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.06154279038310051,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.404691219329834,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.05192729830741882,
+ "learning_rate": 0.000534,
+ "loss": 7.413113594055176,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.03150998055934906,
+ "learning_rate": 0.00054,
+ "loss": 7.368255615234375,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.053637128323316574,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.366744041442871,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.04060717672109604,
+ "learning_rate": 0.000552,
+ "loss": 7.3471503257751465,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.02766619622707367,
+ "learning_rate": 0.000558,
+ "loss": 7.2857513427734375,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.037740547209978104,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.30962610244751,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.03623099625110626,
+ "learning_rate": 0.00057,
+ "loss": 7.323042869567871,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.02951877936720848,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.263930320739746,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.03232879936695099,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.275699615478516,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.040636979043483734,
+ "learning_rate": 0.000588,
+ "loss": 7.263900279998779,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.05619044974446297,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.248347282409668,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.10161865502595901,
+ "learning_rate": 0.0006,
+ "loss": 7.263940811157227,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.10660576075315475,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 7.280603885650635,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.017367303371429443,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 7.201124668121338,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.07498829066753387,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 7.2153143882751465,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.02042442001402378,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 7.163347244262695,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.035145096480846405,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 7.14797830581665,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.03295945003628731,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 7.163028240203857,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.04429871216416359,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 7.125891208648682,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.045537661761045456,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 7.10593318939209,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.05842061713337898,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 7.124104022979736,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.07147318869829178,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 7.131901741027832,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.05663377791643143,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 7.113529205322266,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.035875167697668076,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 7.071780681610107,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.04790984094142914,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 7.083632469177246,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.03707868978381157,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 7.032171726226807,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.03472359851002693,
+ "learning_rate": 0.000599973080557108,
+ "loss": 7.053985595703125,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.03433605283498764,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 7.012545585632324,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.028371628373861313,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 6.991869926452637,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.03267744928598404,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 6.983957290649414,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.02788551151752472,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 6.935033798217773,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.027832623571157455,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 6.940976619720459,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.026529869064688683,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 6.95376443862915,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.019930310547351837,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 6.9236860275268555,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.02738822065293789,
+ "learning_rate": 0.000599936710690505,
+ "loss": 6.926836013793945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.020916275680065155,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 6.901493072509766,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.024774231016635895,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 6.913949966430664,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.017353150993585587,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 6.918097972869873,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.021421369165182114,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 6.89768648147583,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.0163370743393898,
+ "learning_rate": 0.00059990620421714,
+ "loss": 6.872840404510498,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.020625010132789612,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 6.870551109313965,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.01452119741588831,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 6.857385158538818,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016764555126428604,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 6.817496299743652,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.1138274222612381,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 6.833353519439697,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.023111972957849503,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 6.831503868103027,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.03241179510951042,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 6.818573474884033,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.045465610921382904,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 6.818340301513672,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.09969473630189896,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 6.849897384643555,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.08556114137172699,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 6.879387855529785,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.037504199892282486,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 6.820858001708984,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.04334859549999237,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 6.823123931884766,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.04440758377313614,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 6.812091827392578,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.03030567802488804,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 6.757697105407715,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.031356554478406906,
+ "learning_rate": 0.000599788973374255,
+ "loss": 6.757023334503174,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.028944754973053932,
+ "learning_rate": 0.000599778806120077,
+ "loss": 6.729866981506348,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7822442054748535,
+ "eval_runtime": 57.653,
+ "eval_samples_per_second": 42.357,
+ "eval_steps_per_second": 1.336,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03311515972018242,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 6.758594512939453,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.025427011772990227,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 6.727891445159912,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.025571655482053757,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 6.7439374923706055,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.022426020354032516,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 6.705943584442139,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.023645929992198944,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 6.736822128295898,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.02747730351984501,
+ "learning_rate": 0.000599712781599403,
+ "loss": 6.715981483459473,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.036495838314294815,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 6.694577217102051,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.05734090507030487,
+ "learning_rate": 0.000599688860879549,
+ "loss": 6.719090461730957,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.0849914699792862,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 6.715731620788574,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.06001165881752968,
+ "learning_rate": 0.000599663984012462,
+ "loss": 6.7173686027526855,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.03470927104353905,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 6.708430290222168,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.030221732333302498,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 6.678277015686035,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027881674468517303,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 6.678990840911865,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.037614643573760986,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 6.65225887298584,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.030036019161343575,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 6.641134262084961,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.025556575506925583,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 6.634317874908447,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.028971470892429352,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 6.612823486328125,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.022547520697116852,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 6.634830951690674,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.02375032752752304,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 6.603442668914795,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.016516869887709618,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 6.5973005294799805,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.020583221688866615,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 6.5954790115356445,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.030211064964532852,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 6.555998802185059,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.0481981560587883,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 6.587268829345703,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.07235565036535263,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 6.590307235717773,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.06826939433813095,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 6.6139068603515625,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.04759284481406212,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 6.534776210784912,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.031471479684114456,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 6.554746627807617,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.05717739835381508,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 6.542821407318115,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.05685894936323166,
+ "learning_rate": 0.000599379982511273,
+ "loss": 6.545600414276123,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.045009758323431015,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 6.541788578033447,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.03678715229034424,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 6.519845485687256,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.014889177866280079,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 6.522175312042236,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.03619693964719772,
+ "learning_rate": 0.000599309205504528,
+ "loss": 6.5044732093811035,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.033052217215299606,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 6.474400997161865,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.03493785113096237,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 6.482213973999023,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.021974876523017883,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 6.471848964691162,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.027319392189383507,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 6.462409973144531,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.027764802798628807,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 6.475799560546875,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.022071927785873413,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 6.477272987365723,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.019541384652256966,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 6.446477890014648,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.020112821832299232,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 6.444390296936035,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.026806922629475594,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 6.419255256652832,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.030369561165571213,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 6.399011611938477,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.04231816157698631,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 6.4365234375,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.041131362318992615,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 6.411873817443848,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.03273502737283707,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 6.4098381996154785,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.02850119024515152,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 6.373113632202148,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.026996608823537827,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 6.374958038330078,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.026717668399214745,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 6.384616374969482,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.025413058698177338,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 6.374739646911621,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.02304934523999691,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 6.377753734588623,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.030449440702795982,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 6.352633476257324,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.03918156027793884,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 6.349611282348633,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.05221329629421234,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 6.302600860595703,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06619217991828918,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 6.376552104949951,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.06099528819322586,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 6.3524250984191895,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.035488441586494446,
+ "learning_rate": 0.000598804365316586,
+ "loss": 6.322604656219482,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.03697587177157402,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 6.338698387145996,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.040467169135808945,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 6.321810722351074,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.05307861790060997,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 6.313395023345947,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.08221501857042313,
+ "learning_rate": 0.000598706872384039,
+ "loss": 6.353503227233887,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.09283167123794556,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 6.370266437530518,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.056156449019908905,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 6.312352180480957,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.06693308800458908,
+ "learning_rate": 0.000598631251036868,
+ "loss": 6.30809211730957,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.052159931510686874,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 6.307844161987305,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.04729791358113289,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 6.316455841064453,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.039596814662218094,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 6.32427978515625,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.03747032955288887,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 6.274253845214844,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.03288811445236206,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 6.268214225769043,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.029782993718981743,
+ "learning_rate": 0.000598473577921366,
+ "loss": 6.26954460144043,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.03552153334021568,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 6.2629008293151855,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.02847929857671261,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 6.282649993896484,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.272336959838867,
+ "eval_runtime": 57.5253,
+ "eval_samples_per_second": 42.451,
+ "eval_steps_per_second": 1.339,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.03252411261200905,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 6.237303256988525,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.02203003130853176,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 6.217246055603027,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.023781482130289078,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 6.228948593139648,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.023571379482746124,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 6.222492218017578,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.025402264669537544,
+ "learning_rate": 0.000598278794687186,
+ "loss": 6.171239852905273,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03077368624508381,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 6.1856689453125,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.04417817294597626,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 6.1976318359375,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.0715862363576889,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 6.207902908325195,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.10277173668146133,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 6.277406692504883,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.11631331592798233,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 6.266728401184082,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.11938593536615372,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 6.31656551361084,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.06863509118556976,
+ "learning_rate": 0.00059807235435179,
+ "loss": 6.244453430175781,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.060272421687841415,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 6.2642083168029785,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.04243976250290871,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 6.239880084991455,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.04330270364880562,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 6.205392837524414,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.034308161586523056,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 6.234275817871094,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.028582513332366943,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 6.1907525062561035,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.02634441666305065,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 6.19689416885376,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.025082800537347794,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 6.187200546264648,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.02320955879986286,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 6.141979694366455,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.023265276104211807,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 6.176003456115723,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.020595140755176544,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 6.139076232910156,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.025210820138454437,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 6.180125713348389,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.018687831237912178,
+ "learning_rate": 0.000597691359743243,
+ "loss": 6.165064811706543,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.02201039530336857,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 6.123998165130615,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.01775851845741272,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 6.119409084320068,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.020611098036170006,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 6.104748725891113,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.019419284537434578,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 6.089399337768555,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.017167124897241592,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 6.114529609680176,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.015521151944994926,
+ "learning_rate": 0.000597488038559129,
+ "loss": 6.078758239746094,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.01624128967523575,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 6.111640930175781,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.016006115823984146,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 6.100400447845459,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.017247524112462997,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 6.097804069519043,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.01911865919828415,
+ "learning_rate": 0.000597347745466109,
+ "loss": 6.085870265960693,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.01712872087955475,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 6.105459213256836,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.01578541472554207,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 6.023981094360352,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.018045881763100624,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 6.002199172973633,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.022794784978032112,
+ "learning_rate": 0.000597203657966319,
+ "loss": 6.0238447189331055,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03416677564382553,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 6.035214900970459,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.04690391570329666,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 6.072941303253174,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.05028005316853523,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 6.040407657623291,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.05194023624062538,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 6.0391011238098145,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.0540371797978878,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 6.039029121398926,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.06588352471590042,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 6.044665336608887,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.08592721074819565,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 6.0540771484375,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.09166648983955383,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 6.065176010131836,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.05314088240265846,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 6.040057182312012,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.06335040181875229,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 6.057855606079102,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.045602817088365555,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 6.040876865386963,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.042664993554353714,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 6.006284713745117,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.03192886337637901,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 6.005218505859375,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.035344451665878296,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 6.029815673828125,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.025248749181628227,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 6.0102667808532715,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.024427805095911026,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 6.000644683837891,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.02439800277352333,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 6.003634452819824,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.02552718110382557,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 5.981138229370117,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.020079001784324646,
+ "learning_rate": 0.000596467483454833,
+ "loss": 5.955819129943848,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.02105797827243805,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 5.943464756011963,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.021415770053863525,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 5.920141220092773,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.020119722932577133,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 5.931648254394531,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.01831582933664322,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 5.935264587402344,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.015109431929886341,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 5.92208194732666,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.01773880049586296,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 5.918130397796631,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.0188734233379364,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 5.893000602722168,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.023319793865084648,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 5.890408515930176,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.0317106693983078,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 5.926784515380859,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.04030710831284523,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 5.9274725914001465,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.04434845596551895,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 5.905020236968994,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.0350300632417202,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 5.890782833099365,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.032112304121255875,
+ "learning_rate": 0.000595914592474791,
+ "loss": 5.884481906890869,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.05959233641624451,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 5.876215934753418,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.07787120342254639,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 5.917278289794922,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.977359771728516,
+ "eval_runtime": 59.751,
+ "eval_samples_per_second": 40.87,
+ "eval_steps_per_second": 1.289,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.06310462951660156,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 5.924779891967773,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.05222249776124954,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 5.907370090484619,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.05228526145219803,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 5.882393836975098,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.05952226370573044,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 5.92864990234375,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.0644012913107872,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 5.882826805114746,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.05985049530863762,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 5.883251667022705,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.04377466440200806,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 5.882746696472168,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.04039430618286133,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 5.8902130126953125,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02859460562467575,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 5.844839096069336,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.030626490712165833,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 5.861215114593506,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.025270724669098854,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 5.840187072753906,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.0264383964240551,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 5.822997093200684,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.02326977252960205,
+ "learning_rate": 0.000595227087813793,
+ "loss": 5.8335185050964355,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.02575071156024933,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 5.84344482421875,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.020269479602575302,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 5.818253040313721,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.02250112220644951,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 5.808218002319336,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.017158091068267822,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 5.776167869567871,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.020156947895884514,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 5.788361072540283,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.02180890552699566,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 5.804419040679932,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.01972644217312336,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 5.746634006500244,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.017672523856163025,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 5.758551120758057,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.01917177438735962,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 5.725025653839111,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.01795552298426628,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 5.732707977294922,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.01642684079706669,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 5.7169647216796875,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.01686570607125759,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 5.751215934753418,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.018361669033765793,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 5.748880386352539,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.02189275622367859,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 5.727536201477051,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.0301577877253294,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 5.750012397766113,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.04345658794045448,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 5.731107234954834,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.05755741149187088,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 5.710306167602539,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.05796733871102333,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 5.742598533630371,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.03629278019070625,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 5.706358432769775,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04551345482468605,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 5.716741561889648,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.0452001579105854,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 5.700150012969971,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.041507937014102936,
+ "learning_rate": 0.00059412296156686,
+ "loss": 5.745449542999268,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.03662193939089775,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 5.710183143615723,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.04326700046658516,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 5.703763008117676,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.05697176232933998,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 5.725914478302002,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.05428384244441986,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 5.680896759033203,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.0409918874502182,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 5.700793266296387,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03784845024347305,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 5.695786476135254,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.032680656760931015,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 5.671225070953369,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.02770831808447838,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 5.686822891235352,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.024889929220080376,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 5.657403945922852,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.025659115985035896,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 5.656820774078369,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.022058837115764618,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 5.642063617706299,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.020802810788154602,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 5.627434253692627,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.020650988444685936,
+ "learning_rate": 0.000593417134927994,
+ "loss": 5.64917516708374,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.02250380627810955,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 5.62632942199707,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.02718665823340416,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 5.608112812042236,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.0405290387570858,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 5.638577461242676,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.05361616984009743,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 5.663537979125977,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.04884069412946701,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 5.614504814147949,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.049565576016902924,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 5.645444869995117,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.039836108684539795,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 5.636891841888428,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.03470839560031891,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 5.633453369140625,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03503080829977989,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 5.60794734954834,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.034655991941690445,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 5.612897872924805,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.033956848084926605,
+ "learning_rate": 0.000592789007481325,
+ "loss": 5.618565559387207,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.04088686779141426,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 5.581335067749023,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.049946825951337814,
+ "learning_rate": 0.000592671765466188,
+ "loss": 5.613199234008789,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.05174131691455841,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 5.599015235900879,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.04790641739964485,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 5.625578880310059,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.05599642172455788,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 5.609958648681641,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.03979048877954483,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 5.591450214385986,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.040508050471544266,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 5.577034950256348,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.05463095381855965,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 5.560127258300781,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.061191100627183914,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 5.606317520141602,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03960065916180611,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 5.572936058044434,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.03209720551967621,
+ "learning_rate": 0.000592132629452205,
+ "loss": 5.579288005828857,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.029921352863311768,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 5.528594017028809,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.02589472196996212,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 5.560395240783691,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.597759246826172,
+ "eval_runtime": 57.1815,
+ "eval_samples_per_second": 42.706,
+ "eval_steps_per_second": 1.347,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.02826438844203949,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 5.513363838195801,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.02511240728199482,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 5.509766578674316,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.029536563903093338,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 5.511611461639404,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.0198600422590971,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 5.498024940490723,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.02048918977379799,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 5.511862754821777,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.02127828262746334,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 5.518065452575684,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.01836043782532215,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 5.483658313751221,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.019946064800024033,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 5.470014572143555,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.027127746492624283,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 5.469433784484863,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.033834945410490036,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 5.470457553863525,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.054205093532800674,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 5.48756742477417,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.07604862004518509,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 5.493595600128174,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.05396232008934021,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 5.5033345222473145,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.06685696542263031,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 5.525893211364746,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.06980906426906586,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 5.513422966003418,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.05778757110238075,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 5.517332077026367,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.041596364229917526,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 5.476945877075195,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04081438481807709,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 5.475988388061523,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.03977372497320175,
+ "learning_rate": 0.000590801330015633,
+ "loss": 5.495187759399414,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.0383940115571022,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 5.471659183502197,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.02879350259900093,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 5.483172416687012,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.02885558269917965,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 5.441219806671143,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.0246745515614748,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 5.4427595138549805,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.023952394723892212,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 5.457101821899414,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.02268376015126705,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 5.465570449829102,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.02060086280107498,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 5.454710006713867,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.01900693029165268,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 5.4002861976623535,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.019794875755906105,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 5.394018173217773,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.019448015838861465,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 5.403833389282227,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.020465951412916183,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 5.400178909301758,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.02420046553015709,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 5.403946876525879,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.023516790941357613,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 5.396392345428467,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.024496562778949738,
+ "learning_rate": 0.000589856958339686,
+ "loss": 5.36966609954834,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.021445438265800476,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 5.382747650146484,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.02081931009888649,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 5.371137619018555,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.024836579337716103,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 5.354109287261963,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.02180260419845581,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 5.296867847442627,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.020413978025317192,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 5.368736743927002,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.030642099678516388,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 5.403658866882324,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.046347059309482574,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 5.385849952697754,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05722153186798096,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 5.365973472595215,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.039314642548561096,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 5.329785346984863,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.057355064898729324,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 5.368321418762207,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.058440275490283966,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 5.384307384490967,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.045037515461444855,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 5.36732292175293,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03828507289290428,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 5.365476131439209,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.040041591972112656,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 5.330377578735352,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.04080924391746521,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 5.366915702819824,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.03767762333154678,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 5.366228103637695,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.03141848370432854,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 5.324586868286133,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.03439728915691376,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 5.327112197875977,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.03727911040186882,
+ "learning_rate": 0.0005885028868537,
+ "loss": 5.354257583618164,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.03603903949260712,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 5.31140661239624,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.030102072283625603,
+ "learning_rate": 0.000588355515561353,
+ "loss": 5.332977771759033,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.030943863093852997,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 5.323139190673828,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.03186749666929245,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 5.337890625,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.024906795471906662,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 5.276106357574463,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02376122586429119,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 5.272951602935791,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02758411504328251,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 5.300112724304199,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.0393415167927742,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 5.275881767272949,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.044086042791604996,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 5.350006103515625,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031715720891952515,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 5.300647258758545,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.0331319235265255,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 5.280962944030762,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.03244836628437042,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 5.267055511474609,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.04761066287755966,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 5.268462181091309,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.061071038246154785,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 5.261179447174072,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.05104151368141174,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 5.329161643981934,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03721247985959053,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 5.300492763519287,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.02851012535393238,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 5.267887592315674,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.024867895990610123,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 5.269293308258057,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.02154983952641487,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 5.249560832977295,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.023272952064871788,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 5.224930286407471,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.310047626495361,
+ "eval_runtime": 60.8933,
+ "eval_samples_per_second": 40.103,
+ "eval_steps_per_second": 1.265,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.022553009912371635,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 5.222945213317871,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.028823422268033028,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 5.221416473388672,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.035859424620866776,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 5.227246284484863,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.04309387505054474,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 5.239279270172119,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.03826172649860382,
+ "learning_rate": 0.000586594769789753,
+ "loss": 5.207918167114258,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.035397641360759735,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 5.214866638183594,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.031247004866600037,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 5.171514987945557,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.02830067276954651,
+ "learning_rate": 0.000586356179990052,
+ "loss": 5.1806488037109375,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.03749576583504677,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 5.197831630706787,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.037444885820150375,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 5.190027236938477,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.0345783457159996,
+ "learning_rate": 0.000586115535536849,
+ "loss": 5.173994064331055,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.02918100170791149,
+ "learning_rate": 0.000586034864430614,
+ "loss": 5.183417320251465,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.02462315373122692,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 5.172940254211426,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.025494568049907684,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 5.1550397872924805,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.023740602657198906,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 5.159588813781738,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.02475913055241108,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 5.172396183013916,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.030085386708378792,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 5.180233001708984,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.038502175360918045,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 5.156414031982422,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.03982133790850639,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 5.137145042419434,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.03617396205663681,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 5.195856094360352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.03199728578329086,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 5.130428314208984,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.03554220870137215,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 5.132184028625488,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.03866572678089142,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 5.164266586303711,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.04047713428735733,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 5.118744850158691,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.03995301574468613,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 5.1123833656311035,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.03227057307958603,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 5.160057544708252,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02617066726088524,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 5.112975120544434,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.025976914912462234,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 5.120814800262451,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.029119741171598434,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 5.102809429168701,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.028338635340332985,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 5.072803497314453,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.03173472359776497,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 5.104717254638672,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03216958045959473,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 5.068914413452148,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.03184053674340248,
+ "learning_rate": 0.000584288196583439,
+ "loss": 5.072265625,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.029716843739151955,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 5.0641350746154785,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.032511208206415176,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 5.075901985168457,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.03531403839588165,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 5.08006477355957,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.040257133543491364,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 5.057189464569092,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.044483017176389694,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 5.107929706573486,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.046819787472486496,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 5.092216491699219,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.05162622407078743,
+ "learning_rate": 0.000583683733328402,
+ "loss": 5.105806827545166,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.041583117097616196,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 5.062453269958496,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.038166992366313934,
+ "learning_rate": 0.000583508993216961,
+ "loss": 5.108365058898926,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.04116740822792053,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 5.082266807556152,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.042900606989860535,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 5.0675458908081055,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.03636984899640083,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 5.070341110229492,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.034614600241184235,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 5.06610107421875,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.0408182330429554,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 5.077226161956787,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.03844398260116577,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 5.034544467926025,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.036266524344682693,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 5.044034957885742,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03405449911952019,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 5.06501579284668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.025895079597830772,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 5.0416741371154785,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028933729976415634,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 5.032918453216553,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.02942408062517643,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 5.055118560791016,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.031975146383047104,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 5.054993629455566,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.0331435352563858,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 5.033871650695801,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.031748153269290924,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 5.019181251525879,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.027954477816820145,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 4.987234115600586,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.03440054878592491,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 5.02681827545166,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.03676527366042137,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 5.0494489669799805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.028647759929299355,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 5.008423805236816,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.027439456433057785,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 5.021002769470215,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.024738073348999023,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 5.025774955749512,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.021080488339066505,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 4.9833903312683105,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.028492974117398262,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 5.01200532913208,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.035628288984298706,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 5.002058029174805,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03803318738937378,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 4.996207237243652,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.026153797283768654,
+ "learning_rate": 0.00058124865204371,
+ "loss": 4.947446346282959,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.02850230410695076,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 4.977481365203857,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.030370142310857773,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 4.981168746948242,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.03361203148961067,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 5.02360200881958,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.03481097146868706,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 4.933270454406738,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.035565607249736786,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 4.984894275665283,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.051154136657715,
+ "eval_runtime": 58.725,
+ "eval_samples_per_second": 41.584,
+ "eval_steps_per_second": 1.311,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.036808080971241,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 4.921116352081299,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.038808587938547134,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 4.949336528778076,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.029681086540222168,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 4.933819770812988,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.028857620432972908,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 4.933703422546387,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.028331780806183815,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 4.910059928894043,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.0268936138600111,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 4.864995002746582,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.02545749396085739,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 4.960551738739014,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.02807292342185974,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 4.909934997558594,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.03357388451695442,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 4.9408159255981445,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.034354403614997864,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 4.907442092895508,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.03262178972363472,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 4.934192180633545,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.03188426047563553,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 4.883420944213867,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.03242485597729683,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 4.896482944488525,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.03807986527681351,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 4.888898849487305,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.0350739024579525,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 4.903046607971191,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.029226329177618027,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 4.904903411865234,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.03446635976433754,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 4.906789302825928,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03515530377626419,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 4.87411642074585,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.038424789905548096,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 4.900415420532227,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.04088793322443962,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 4.8630452156066895,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.033518437296152115,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 4.84604549407959,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.03614092245697975,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 4.888566970825195,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.04136974737048149,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 4.887632369995117,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.0354558564722538,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 4.876537322998047,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.03471304476261139,
+ "learning_rate": 0.000578351407086301,
+ "loss": 4.879094123840332,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.0377364456653595,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 4.857626914978027,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.04176871106028557,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 4.846138000488281,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.04202483221888542,
+ "learning_rate": 0.000578050665972623,
+ "loss": 4.850091457366943,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.044156212359666824,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 4.882889747619629,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.04076290503144264,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 4.856540679931641,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.039616942405700684,
+ "learning_rate": 0.000577747930429834,
+ "loss": 4.877146244049072,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.04269967973232269,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 4.829023838043213,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.04344005137681961,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 4.878040313720703,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.049099572002887726,
+ "learning_rate": 0.00057744320265311,
+ "loss": 4.854983329772949,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.04050144553184509,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 4.881022930145264,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.03727944567799568,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 4.829127311706543,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.03591383993625641,
+ "learning_rate": 0.000577136484852073,
+ "loss": 4.822484970092773,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.03259141743183136,
+ "learning_rate": 0.000577033803741424,
+ "loss": 4.819305896759033,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.02751915343105793,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 4.810853958129883,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.02948799915611744,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 4.832298278808594,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.028179828077554703,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 4.804821968078613,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.02437538467347622,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 4.797219753265381,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.02049514278769493,
+ "learning_rate": 0.00057651708808768,
+ "loss": 4.796623706817627,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.020243225619196892,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 4.7856035232543945,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.022025328129529953,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 4.807431221008301,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023922136053442955,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 4.795766353607178,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.027473175898194313,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 4.80001163482666,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.026217147707939148,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 4.766932964324951,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.024445613846182823,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 4.792788505554199,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.022952212020754814,
+ "learning_rate": 0.000575784433093151,
+ "loss": 4.742424964904785,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.023161116987466812,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 4.762951374053955,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.02481772191822529,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 4.7322282791137695,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.02680748887360096,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 4.742586612701416,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.02877075783908367,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 4.726243019104004,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.02893141470849514,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 4.719518661499023,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.03177998214960098,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 4.786722660064697,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.030072709545493126,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 4.71427583694458,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.03134000301361084,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 4.727959156036377,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.034259505569934845,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 4.731040000915527,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04208291321992874,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 4.765854835510254,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.046083852648735046,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 4.733974456787109,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.03798793628811836,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 4.744926452636719,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.042716801166534424,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 4.778853416442871,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.03902550786733627,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 4.727714538574219,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.03751138597726822,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 4.716233730316162,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.04464419558644295,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 4.744549751281738,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.04752455651760101,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 4.719829082489014,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.04655766114592552,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 4.750851154327393,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.03340431675314903,
+ "learning_rate": 0.000573741597999996,
+ "loss": 4.728209495544434,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.03621559590101242,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 4.735179424285889,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.033419493585824966,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 4.731079578399658,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.03403861075639725,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 4.69713020324707,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.8165717124938965,
+ "eval_runtime": 58.7969,
+ "eval_samples_per_second": 41.533,
+ "eval_steps_per_second": 1.31,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.038644395768642426,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 4.690901756286621,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.04282056912779808,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 4.6650166511535645,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03406282141804695,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 4.701326370239258,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03851177915930748,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 4.678501605987549,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03576253354549408,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 4.669190883636475,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.03317258879542351,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 4.636436462402344,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.032904475927352905,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 4.671771049499512,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.028983382508158684,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 4.652067184448242,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.02498173527419567,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 4.635769844055176,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.02106611058115959,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 4.61383056640625,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.02215501479804516,
+ "learning_rate": 0.000572185929672906,
+ "loss": 4.630355358123779,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.024876799434423447,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 4.643525123596191,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.02592845819890499,
+ "learning_rate": 0.000571960215520345,
+ "loss": 4.608984470367432,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.030233709141612053,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 4.640349388122559,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03057374618947506,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 4.619306564331055,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.028249243274331093,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 4.632239818572998,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.0282985121011734,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 4.598719120025635,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.026384741067886353,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 4.610317230224609,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.029447361826896667,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 4.623867988586426,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03151905909180641,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 4.571068286895752,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.024847067892551422,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 4.611245155334473,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.02483377978205681,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 4.613006591796875,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.021146176382899284,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 4.61630916595459,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.020965659990906715,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 4.543951034545898,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.019155951216816902,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 4.60008430480957,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.02236168459057808,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 4.565536022186279,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.021050531417131424,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 4.566590309143066,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.02455449476838112,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 4.576371192932129,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.026402179151773453,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 4.547298431396484,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.02574433572590351,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 4.587402820587158,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.025824986398220062,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 4.615017890930176,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.023699723184108734,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 4.545788764953613,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.02240796759724617,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 4.590651512145996,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.021567195653915405,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 4.533974647521973,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02304847538471222,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 4.511133193969727,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.02551485039293766,
+ "learning_rate": 0.000569302387925215,
+ "loss": 4.520111083984375,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.029010748490691185,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 4.529956817626953,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.03247302025556564,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 4.582473278045654,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.025823267176747322,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 4.510374069213867,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.027523411437869072,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 4.512943744659424,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.03379064425826073,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 4.528302192687988,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.039280276745557785,
+ "learning_rate": 0.000568590328960903,
+ "loss": 4.549263954162598,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.03821641951799393,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 4.558696746826172,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.034167204052209854,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 4.528382301330566,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.027049321681261063,
+ "learning_rate": 0.000568231409438027,
+ "loss": 4.5402631759643555,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.025600260123610497,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 4.53133487701416,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.027398178353905678,
+ "learning_rate": 0.000567991061134677,
+ "loss": 4.518585205078125,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.031058043241500854,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 4.545266151428223,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.03248242288827896,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 4.531325340270996,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.03345576301217079,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 4.517128944396973,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03551362082362175,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 4.5152788162231445,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.03194054216146469,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 4.497405052185059,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.029784616082906723,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 4.542085647583008,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.029260514304041862,
+ "learning_rate": 0.000567143121979179,
+ "loss": 4.524536609649658,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.029064515605568886,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 4.485040664672852,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.02949320338666439,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 4.493743896484375,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.027027061209082603,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 4.481634140014648,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.029191650450229645,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 4.510678768157959,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.02635498158633709,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 4.498911380767822,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.023828955367207527,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 4.4910688400268555,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.022214006632566452,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 4.509055137634277,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.021081900224089622,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 4.474025726318359,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.020441781729459763,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 4.466583251953125,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.019765067845582962,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 4.476926803588867,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.019961310550570488,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 4.475429534912109,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.022596362978219986,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 4.473841667175293,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.022395683452486992,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 4.466297149658203,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.02252970077097416,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 4.477351665496826,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.020528528839349747,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 4.495284557342529,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.02134316973388195,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 4.430205345153809,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.021451499313116074,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 4.467044353485107,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.02124403603374958,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 4.425307273864746,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.572251319885254,
+ "eval_runtime": 62.454,
+ "eval_samples_per_second": 39.101,
+ "eval_steps_per_second": 1.233,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.0226284246891737,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 4.400814533233643,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.026591695845127106,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 4.456070899963379,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.02922544814646244,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 4.414248466491699,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.030050145462155342,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 4.408487319946289,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.031983982771635056,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 4.370880126953125,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.03715051710605621,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 4.414765357971191,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.041064850986003876,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 4.434318542480469,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03333209827542305,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 4.381409645080566,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.0333305187523365,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 4.435637950897217,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.03315478563308716,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 4.399721145629883,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.03367670997977257,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 4.397682189941406,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03310665860772133,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 4.418949604034424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.029880840331315994,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 4.411454677581787,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.02918803133070469,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 4.414917945861816,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.031086686998605728,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 4.366695880889893,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03571411594748497,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 4.427538871765137,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03156435489654541,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 4.373699188232422,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.03328791260719299,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 4.409143447875977,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.03853810578584671,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 4.335013389587402,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.03350946307182312,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 4.365746974945068,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.030956322327256203,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 4.391022682189941,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.026204867288470268,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 4.347990989685059,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.02310560829937458,
+ "learning_rate": 0.000561968326197397,
+ "loss": 4.371516227722168,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02432999387383461,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 4.362637519836426,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.022718189284205437,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 4.350003242492676,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.020693425089120865,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 4.367232322692871,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.01935485377907753,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 4.39171838760376,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.021613135933876038,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 4.343223571777344,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.020088229328393936,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 4.358605861663818,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.019434276968240738,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 4.359467506408691,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.017417795956134796,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 4.364531517028809,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.016802439466118813,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 4.347384452819824,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.017459021881222725,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 4.3828325271606445,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.015029300935566425,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 4.351339817047119,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.014543228782713413,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 4.293898105621338,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015842825174331665,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 4.3344316482543945,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.016569413244724274,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 4.340357780456543,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.018127860501408577,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 4.383440971374512,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.02050839364528656,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 4.3468756675720215,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.01941276527941227,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 4.378046035766602,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01915912516415119,
+ "learning_rate": 0.000559585254906272,
+ "loss": 4.339892864227295,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.01984960399568081,
+ "learning_rate": 0.000559450892376025,
+ "loss": 4.375583648681641,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.0215043593198061,
+ "learning_rate": 0.000559316323227926,
+ "loss": 4.341712951660156,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.023908471688628197,
+ "learning_rate": 0.000559181547570395,
+ "loss": 4.319978713989258,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.02502625808119774,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 4.3548784255981445,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.026118701323866844,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 4.307016849517822,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.025594858452677727,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 4.321723937988281,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025326378643512726,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 4.312587261199951,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.02489379420876503,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 4.326308250427246,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.02913104183971882,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 4.333891868591309,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.033257439732551575,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 4.310227394104004,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.02685360051691532,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 4.317220687866211,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.02389182709157467,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 4.320409774780273,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.024259068071842194,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 4.322770118713379,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.025119217112660408,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 4.302832126617432,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.0271355789154768,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 4.293128490447998,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02790464647114277,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 4.299054145812988,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.025028046220541,
+ "learning_rate": 0.000557273065985207,
+ "loss": 4.2762298583984375,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.025913100689649582,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 4.340912342071533,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.027922101318836212,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 4.261480331420898,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.023029496893286705,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 4.303918361663818,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.02163294143974781,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 4.320018768310547,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.021747373044490814,
+ "learning_rate": 0.000556581718698499,
+ "loss": 4.300640106201172,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.022078612819314003,
+ "learning_rate": 0.000556442835876097,
+ "loss": 4.319561958312988,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.02168973721563816,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 4.305286407470703,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.01982191763818264,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 4.297852516174316,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.020057711750268936,
+ "learning_rate": 0.000556024962691404,
+ "loss": 4.264549255371094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.01944241300225258,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 4.320290565490723,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.01774202659726143,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 4.313161373138428,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.017423678189516068,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 4.302545547485352,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.019707703962922096,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 4.303189277648926,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.0206614937633276,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 4.265277862548828,
+ "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.069613361332224e+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/l2r10-baseline/checkpoint-720/training_args.bin b/runs/l2r10-baseline/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..98861bc13eb6a8f83484ac175612bbaca1c8df3a
--- /dev/null
+++ b/runs/l2r10-baseline/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82c4b811f48d65ddea572ede81ac6f742afd3ae0e2fa85c543bfbad2caf89c91
+size 4856